Merge branch 'main' of http://47.112.118.149:10082/xgxt_sd/zhxg_pc
This commit is contained in:
@@ -399,7 +399,8 @@
|
|||||||
style="position: absolute;bottom: 0;right:0; line-height:15pt; margin:0pt; orphans:0; text-align:left; widows:0">
|
style="position: absolute;bottom: 0;right:0; line-height:15pt; margin:0pt; orphans:0; text-align:left; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt">辅导员(签名):
|
<span style="font-family:仿宋; font-size:12pt">辅导员(签名):
|
||||||
<img style="display: inline;" v-if="formData.fdySign" :src="baseurl + formData.fdySign"
|
<img style="display: inline;" v-if="formData.fdySign" :src="baseurl + formData.fdySign"
|
||||||
width="70px" height="20px" class="avatar" /></span><br />
|
width="70px" height="20px" class="avatar" />
|
||||||
|
</span><br />
|
||||||
<span>
|
<span>
|
||||||
<span style="margin-left: 40px;">年</span>
|
<span style="margin-left: 40px;">年</span>
|
||||||
<span style="margin-left: 20px;">月</span>
|
<span style="margin-left: 20px;">月</span>
|
||||||
@@ -431,8 +432,10 @@
|
|||||||
style="font-family:仿宋; font-size:12pt"> </span></p>
|
style="font-family:仿宋; font-size:12pt"> </span></p>
|
||||||
<p
|
<p
|
||||||
style="position: absolute;bottom: 0;right:0; line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
style="position: absolute;bottom: 0;right:0; line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt">(公章) </span><span
|
<span style="font-family:仿宋; font-size:12pt">
|
||||||
style="font-family:仿宋; font-size:12pt"> </span>
|
<img style="display: inline;" v-if="formData.xwSign" :src="baseurl + formData.xwSign"
|
||||||
|
width="80px" height="30px" class="avatar" />
|
||||||
|
</span><span style="font-family:仿宋; font-size:12pt"> </span>
|
||||||
<span>
|
<span>
|
||||||
<span style="margin-left: 40px;">年</span>
|
<span style="margin-left: 40px;">年</span>
|
||||||
<span style="margin-left: 20px;">月</span>
|
<span style="margin-left: 20px;">月</span>
|
||||||
@@ -461,7 +464,10 @@
|
|||||||
<p style="line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0"><span
|
<p style="line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0"><span
|
||||||
style="font-family:仿宋; font-size:12pt"> </span><span
|
style="font-family:仿宋; font-size:12pt"> </span><span
|
||||||
style="font-family:仿宋; font-size:12pt"> </span><span
|
style="font-family:仿宋; font-size:12pt"> </span><span
|
||||||
style="font-family:仿宋; font-size:12pt">(公章)</span>
|
style="font-family:仿宋; font-size:12pt">
|
||||||
|
<img style="display: inline;" v-if="formData.xgSign" :src="baseurl + formData.xgSign"
|
||||||
|
width="80px" height="30px" class="avatar" />
|
||||||
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<span style="margin-left: 40px;">年</span>
|
<span style="margin-left: 40px;">年</span>
|
||||||
<span style="margin-left: 20px;">月</span>
|
<span style="margin-left: 20px;">月</span>
|
||||||
|
|||||||
@@ -66,6 +66,16 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-button v-print="printContent">打印</el-button>
|
<el-button v-print="printContent">打印</el-button>
|
||||||
@@ -182,12 +192,23 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
getFileName(path) {
|
getFileName(path) {
|
||||||
if (!path) return '';
|
if (!path) return '';
|
||||||
return path.split('/').pop();
|
return path.split('/').pop();
|
||||||
|
|||||||
@@ -66,6 +66,15 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-button v-print="printContent">打印</el-button>
|
<el-button v-print="printContent">打印</el-button>
|
||||||
@@ -181,12 +190,23 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
getFileName(path) {
|
getFileName(path) {
|
||||||
if (!path) return '';
|
if (!path) return '';
|
||||||
return path.split('/').pop();
|
return path.split('/').pop();
|
||||||
|
|||||||
@@ -64,6 +64,15 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-button v-print="printContent">打印</el-button>
|
<el-button v-print="printContent">打印</el-button>
|
||||||
@@ -179,12 +188,22 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
getFileName(path) {
|
getFileName(path) {
|
||||||
if (!path) return '';
|
if (!path) return '';
|
||||||
return path.split('/').pop();
|
return path.split('/').pop();
|
||||||
|
|||||||
@@ -409,7 +409,8 @@
|
|||||||
<br />
|
<br />
|
||||||
<el-checkbox :checked="formData.applyReason == '2.城乡低保家庭学生;'" :disabled="true">2.城乡低保家庭学生;</el-checkbox>
|
<el-checkbox :checked="formData.applyReason == '2.城乡低保家庭学生;'" :disabled="true">2.城乡低保家庭学生;</el-checkbox>
|
||||||
<br />
|
<br />
|
||||||
<el-checkbox :checked="formData.applyReason == '3.特困救助供养家庭学生;'" :disabled="true">3.特困救助供养家庭学生;</el-checkbox>
|
<el-checkbox :checked="formData.applyReason == '3.特困救助供养家庭学生;'"
|
||||||
|
:disabled="true">3.特困救助供养家庭学生;</el-checkbox>
|
||||||
<br />
|
<br />
|
||||||
<el-checkbox :checked="formData.applyReason == '4.孤儿(含事实无人抚养儿童);'"
|
<el-checkbox :checked="formData.applyReason == '4.孤儿(含事实无人抚养儿童);'"
|
||||||
:disabled="true">4.孤儿(含事实无人抚养儿童);</el-checkbox>
|
:disabled="true">4.孤儿(含事实无人抚养儿童);</el-checkbox>
|
||||||
@@ -417,13 +418,15 @@
|
|||||||
<el-checkbox :checked="formData.applyReason == '5.脱贫家庭学生(原建档立卡学生);'"
|
<el-checkbox :checked="formData.applyReason == '5.脱贫家庭学生(原建档立卡学生);'"
|
||||||
:disabled="true">5.脱贫家庭学生(原建档立卡学生);</el-checkbox>
|
:disabled="true">5.脱贫家庭学生(原建档立卡学生);</el-checkbox>
|
||||||
<br />
|
<br />
|
||||||
<el-checkbox :checked="formData.applyReason == '6.家庭经济困难残疾学生;'" :disabled="true">6.家庭经济困难残疾学生;</el-checkbox>
|
<el-checkbox :checked="formData.applyReason == '6.家庭经济困难残疾学生;'"
|
||||||
|
:disabled="true">6.家庭经济困难残疾学生;</el-checkbox>
|
||||||
<br />
|
<br />
|
||||||
<el-checkbox :checked="formData.applyReason == '7.因重大自然灾害、重大事故和重大疾病等导致家庭经济困难的学生;'" :disabled="true">
|
<el-checkbox :checked="formData.applyReason == '7.因重大自然灾害、重大事故和重大疾病等导致家庭经济困难的学生;'" :disabled="true">
|
||||||
7.因重大自然灾害、重大事故和重大疾病等导致家庭经济困难的学生;
|
7.因重大自然灾害、重大事故和重大疾病等导致家庭经济困难的学生;
|
||||||
</el-checkbox>
|
</el-checkbox>
|
||||||
<br />
|
<br />
|
||||||
<el-checkbox :checked="formData.applyReason == '8.其他家庭经济困难因素.'" :disabled="true">8.其他家庭经济困难因素.</el-checkbox>
|
<el-checkbox :checked="formData.applyReason == '8.其他家庭经济困难因素.'"
|
||||||
|
:disabled="true">8.其他家庭经济困难因素.</el-checkbox>
|
||||||
</p>
|
</p>
|
||||||
<p style="line-height:18pt; margin:0pt; orphans:0; text-align:justify; widows:0"><span
|
<p style="line-height:18pt; margin:0pt; orphans:0; text-align:justify; widows:0"><span
|
||||||
style="font-family:仿宋; font-size:12pt">申请理由补充说明(填写):</span></p>
|
style="font-family:仿宋; font-size:12pt">申请理由补充说明(填写):</span></p>
|
||||||
@@ -435,7 +438,7 @@
|
|||||||
<p style="line-height:26pt; margin:0pt 48pt 0pt 0pt; orphans:0; text-align:right; widows:0">
|
<p style="line-height:26pt; margin:0pt 48pt 0pt 0pt; orphans:0; text-align:right; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt">申请人签名:
|
<span style="font-family:仿宋; font-size:12pt">申请人签名:
|
||||||
<img v-if="formData.applySign" :src="baseurl + formData.applySign" width="200px" height="50px"
|
<img v-if="formData.applySign" :src="baseurl + formData.applySign" width="200px" height="50px"
|
||||||
class="avatar">
|
class="avatar" />
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p style="line-height:26pt; margin:0pt 24pt 0pt 0pt; orphans:0; text-align:right; widows:0">
|
<p style="line-height:26pt; margin:0pt 24pt 0pt 0pt; orphans:0; text-align:right; widows:0">
|
||||||
@@ -468,7 +471,9 @@
|
|||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:justify; text-indent:42pt; widows:0">
|
style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:justify; text-indent:42pt; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt">评议小组组长:</span>
|
<span style="font-family:仿宋; font-size:12pt">评议小组组长:
|
||||||
|
<img v-if="formData.fdySign" :src="baseurl + formData.fdySign" width="80px" height="30px"
|
||||||
|
class="avatar" /></span>
|
||||||
</p>
|
</p>
|
||||||
<p style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:right; widows:0">
|
<p style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:right; widows:0">
|
||||||
<span>
|
<span>
|
||||||
@@ -503,8 +508,10 @@
|
|||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:justify; text-indent:31.5pt; widows:0">
|
style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:justify; text-indent:31.5pt; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt">二级学院</span><span
|
<span style="font-family:仿宋; font-size:12pt">二级学院</span><span style="font-family:仿宋; font-size:12pt">负责人:
|
||||||
style="font-family:仿宋; font-size:12pt">负责人: </span>
|
<img v-if="formData.xwSign" :src="baseurl + formData.xwSign" width="80px" height="30px"
|
||||||
|
class="avatar" />
|
||||||
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:justify; text-indent:63pt; widows:0">
|
style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:justify; text-indent:63pt; widows:0">
|
||||||
@@ -541,7 +548,10 @@
|
|||||||
style="line-height:26pt; margin:0pt 24pt 0pt 0pt; orphans:0; text-align:right; text-indent:21pt; widows:0">
|
style="line-height:26pt; margin:0pt 24pt 0pt 0pt; orphans:0; text-align:right; text-indent:21pt; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:14pt; font-weight:bold">
|
<span style="font-family:仿宋; font-size:14pt; font-weight:bold">
|
||||||
</span><span style="font-family:仿宋; font-size:12pt"> </span><span
|
</span><span style="font-family:仿宋; font-size:12pt"> </span><span
|
||||||
style="font-family:仿宋; font-size:12pt">(公章)</span>
|
style="font-family:仿宋; font-size:12pt">
|
||||||
|
<img v-if="formData.xgSign" :src="baseurl + formData.xgSign" width="80px" height="30px"
|
||||||
|
class="avatar" />
|
||||||
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p style="line-height:26pt; orphans:0; text-align:right; widows:0">
|
<p style="line-height:26pt; orphans:0; text-align:right; widows:0">
|
||||||
<span>
|
<span>
|
||||||
|
|||||||
@@ -61,6 +61,16 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-form label-width="200px" size="mini" class="lookForm">
|
<el-form label-width="200px" size="mini" class="lookForm">
|
||||||
@@ -294,6 +304,9 @@ export default {
|
|||||||
|
|
||||||
editForm: {},
|
editForm: {},
|
||||||
editV: false,
|
editV: false,
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -301,6 +314,15 @@ export default {
|
|||||||
this.getOwnSign();
|
this.getOwnSign();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
|
|
||||||
changeApplyReason(v) {
|
changeApplyReason(v) {
|
||||||
if (v != "1.监测对象家庭学生(脱贫不稳定家庭学生、边缘易致贫家庭学生、突发严重困难家庭学生):") {
|
if (v != "1.监测对象家庭学生(脱贫不稳定家庭学生、边缘易致贫家庭学生、突发严重困难家庭学生):") {
|
||||||
this.editForm.applyReason1 = "";
|
this.editForm.applyReason1 = "";
|
||||||
|
|||||||
@@ -40,7 +40,8 @@
|
|||||||
<el-dialog @close="getList" title="申请" :visible.sync="applyV" :fullscreen="true" :destroy-on-close="true">
|
<el-dialog @close="getList" title="申请" :visible.sync="applyV" :fullscreen="true" :destroy-on-close="true">
|
||||||
<TufaApply v-if="applyV" />
|
<TufaApply v-if="applyV" />
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<el-dialog @close="getList" title="查看" :visible.sync="lookV" :fullscreen="true" :destroy-on-close="true">
|
<el-dialog @close="getList" title="查看" :visible.sync="lookV" :fullscreen="true" :destroy-on-close="true"
|
||||||
|
append-to-body>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<TufaLook id="printDiv" v-if="lookV" :formData="lookForm" />
|
<TufaLook id="printDiv" v-if="lookV" :formData="lookForm" />
|
||||||
@@ -51,6 +52,16 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-button v-print="printContent">打印</el-button>
|
<el-button v-print="printContent">打印</el-button>
|
||||||
@@ -354,13 +365,26 @@ export default {
|
|||||||
boolImg,
|
boolImg,
|
||||||
printContent: { id: 'printDiv', extraCss: "", extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>' },
|
printContent: { id: 'printDiv', extraCss: "", extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>' },
|
||||||
reApplyV: false,
|
reApplyV: false,
|
||||||
reApplyForm: {}
|
reApplyForm: {},
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
|
|
||||||
handleDiplomaSuccess(response, file, fileList) {
|
handleDiplomaSuccess(response, file, fileList) {
|
||||||
this.editForm.diplomaCertificate = response.fileName;
|
this.editForm.diplomaCertificate = response.fileName;
|
||||||
this.upload.fileList = [];
|
this.upload.fileList = [];
|
||||||
|
|||||||
@@ -70,6 +70,14 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-form label-width="200px" size="mini" class="lookForm">
|
<el-form label-width="200px" size="mini" class="lookForm">
|
||||||
@@ -220,6 +228,9 @@ export default {
|
|||||||
manyCmt: "",
|
manyCmt: "",
|
||||||
manyRes: null,
|
manyRes: null,
|
||||||
manySign: "",
|
manySign: "",
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -227,6 +238,14 @@ export default {
|
|||||||
this.getOwnSign();
|
this.getOwnSign();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
getFileName(path) {
|
getFileName(path) {
|
||||||
if (!path) return '';
|
if (!path) return '';
|
||||||
return path.split('/').pop();
|
return path.split('/').pop();
|
||||||
|
|||||||
@@ -66,6 +66,15 @@
|
|||||||
<el-form-item label="中职毕业证">
|
<el-form-item label="中职毕业证">
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
<span slot="title">中职毕业证预览</span>
|
||||||
|
<iframe v-if="lookBiyeUrl" :src="lookBiyeUrl" style="width: 100%; height: 80vh;"
|
||||||
|
frameborder="0"></iframe>
|
||||||
|
</el-dialog>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-form label-width="200px" size="mini" class="lookForm">
|
<el-form label-width="200px" size="mini" class="lookForm">
|
||||||
@@ -216,6 +225,9 @@ export default {
|
|||||||
manyCmt: "",
|
manyCmt: "",
|
||||||
manyRes: null,
|
manyRes: null,
|
||||||
manySign: "",
|
manySign: "",
|
||||||
|
|
||||||
|
lookBiyeV: false,
|
||||||
|
lookBiyeUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -223,6 +235,14 @@ export default {
|
|||||||
this.getOwnSign();
|
this.getOwnSign();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
lookBiye() {
|
||||||
|
const isAbsoluteUrl = this.lookForm.diplomaCertificate.startsWith('http');
|
||||||
|
const pdfUrl = isAbsoluteUrl
|
||||||
|
? this.lookForm.diplomaCertificate
|
||||||
|
: `${this.baseurl}${this.lookForm.diplomaCertificate}`;
|
||||||
|
this.lookBiyeUrl = pdfUrl;
|
||||||
|
this.lookBiyeV = true;
|
||||||
|
},
|
||||||
getFileName(path) {
|
getFileName(path) {
|
||||||
if (!path) return '';
|
if (!path) return '';
|
||||||
return path.split('/').pop();
|
return path.split('/').pop();
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<p style="line-height:33pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
<p style="line-height:33pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
||||||
<span style="font-family:方正小标宋简体; font-size:22pt">{{formData.stuYearName }}自治区人民政府奖学金申请审批表</span>
|
<span style="font-family:方正小标宋简体; font-size:22pt">{{ formData.stuYearName }}自治区人民政府奖学金申请审批表</span>
|
||||||
</p>
|
</p>
|
||||||
<div style="text-align:center">
|
<div style="text-align:center">
|
||||||
<table cellspacing="0" cellpadding="0" style="border-collapse:collapse; margin:0 auto; width:465.05pt">
|
<table cellspacing="0" cellpadding="0" style="border-collapse:collapse; margin:0 auto; width:465.05pt">
|
||||||
@@ -289,7 +289,10 @@
|
|||||||
style="font-family:仿宋; font-size:12pt"> </span></p>
|
style="font-family:仿宋; font-size:12pt"> </span></p>
|
||||||
<p
|
<p
|
||||||
style="position: absolute;bottom: 0;right:0;line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
style="position: absolute;bottom: 0;right:0;line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt">(公章) </span>
|
<span style="font-family:仿宋; font-size:12pt">
|
||||||
|
<img style="display: inline;" v-if="formData.xwSign" :src="baseurl + formData.xwSign"
|
||||||
|
width="80px" height="30px" class="avatar" />
|
||||||
|
</span>
|
||||||
<span style="font-family:仿宋; font-size:12pt">
|
<span style="font-family:仿宋; font-size:12pt">
|
||||||
<span>
|
<span>
|
||||||
<span style="margin-left: 40px;">年</span>
|
<span style="margin-left: 40px;">年</span>
|
||||||
@@ -317,7 +320,10 @@
|
|||||||
<p
|
<p
|
||||||
style="position: absolute;bottom: 0;right:0;line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
style="position: absolute;bottom: 0;right:0;line-height:15pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
||||||
<span style="font-family:仿宋; font-size:12pt"> </span><span
|
<span style="font-family:仿宋; font-size:12pt"> </span><span
|
||||||
style="font-family:仿宋; font-size:12pt"> (公章) </span>
|
style="font-family:仿宋; font-size:12pt">
|
||||||
|
<img style="display: inline;" v-if="formData.xgSign" :src="baseurl + formData.xgSign"
|
||||||
|
width="80px" height="30px" class="avatar" />
|
||||||
|
</span>
|
||||||
<span style="font-family:仿宋; font-size:12pt">
|
<span style="font-family:仿宋; font-size:12pt">
|
||||||
<span>
|
<span>
|
||||||
<span style="margin-left: 40px;">年</span>
|
<span style="margin-left: 40px;">年</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user