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">
|
||||
<span style="font-family:仿宋; font-size:12pt">辅导员(签名):
|
||||
<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 style="margin-left: 40px;">年</span>
|
||||
<span style="margin-left: 20px;">月</span>
|
||||
@@ -431,8 +432,10 @@
|
||||
style="font-family:仿宋; font-size:12pt"> </span></p>
|
||||
<p
|
||||
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"> </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>
|
||||
<span>
|
||||
<span style="margin-left: 40px;">年</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
|
||||
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 style="margin-left: 40px;">年</span>
|
||||
<span style="margin-left: 20px;">月</span>
|
||||
|
||||
@@ -66,6 +66,16 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-button v-print="printContent">打印</el-button>
|
||||
@@ -182,12 +192,23 @@ export default {
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
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) {
|
||||
if (!path) return '';
|
||||
return path.split('/').pop();
|
||||
|
||||
@@ -66,6 +66,15 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-button v-print="printContent">打印</el-button>
|
||||
@@ -181,12 +190,23 @@ export default {
|
||||
}
|
||||
},
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
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) {
|
||||
if (!path) return '';
|
||||
return path.split('/').pop();
|
||||
|
||||
@@ -64,6 +64,15 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-button v-print="printContent">打印</el-button>
|
||||
@@ -179,12 +188,22 @@ export default {
|
||||
}
|
||||
},
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
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) {
|
||||
if (!path) return '';
|
||||
return path.split('/').pop();
|
||||
|
||||
@@ -409,7 +409,8 @@
|
||||
<br />
|
||||
<el-checkbox :checked="formData.applyReason == '2.城乡低保家庭学生;'" :disabled="true">2.城乡低保家庭学生;</el-checkbox>
|
||||
<br />
|
||||
<el-checkbox :checked="formData.applyReason == '3.特困救助供养家庭学生;'" :disabled="true">3.特困救助供养家庭学生;</el-checkbox>
|
||||
<el-checkbox :checked="formData.applyReason == '3.特困救助供养家庭学生;'"
|
||||
:disabled="true">3.特困救助供养家庭学生;</el-checkbox>
|
||||
<br />
|
||||
<el-checkbox :checked="formData.applyReason == '4.孤儿(含事实无人抚养儿童);'"
|
||||
:disabled="true">4.孤儿(含事实无人抚养儿童);</el-checkbox>
|
||||
@@ -417,13 +418,15 @@
|
||||
<el-checkbox :checked="formData.applyReason == '5.脱贫家庭学生(原建档立卡学生);'"
|
||||
:disabled="true">5.脱贫家庭学生(原建档立卡学生);</el-checkbox>
|
||||
<br />
|
||||
<el-checkbox :checked="formData.applyReason == '6.家庭经济困难残疾学生;'" :disabled="true">6.家庭经济困难残疾学生;</el-checkbox>
|
||||
<el-checkbox :checked="formData.applyReason == '6.家庭经济困难残疾学生;'"
|
||||
:disabled="true">6.家庭经济困难残疾学生;</el-checkbox>
|
||||
<br />
|
||||
<el-checkbox :checked="formData.applyReason == '7.因重大自然灾害、重大事故和重大疾病等导致家庭经济困难的学生;'" :disabled="true">
|
||||
7.因重大自然灾害、重大事故和重大疾病等导致家庭经济困难的学生;
|
||||
</el-checkbox>
|
||||
<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 style="line-height:18pt; margin:0pt; orphans:0; text-align:justify; widows:0"><span
|
||||
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">
|
||||
<span style="font-family:仿宋; font-size:12pt">申请人签名:
|
||||
<img v-if="formData.applySign" :src="baseurl + formData.applySign" width="200px" height="50px"
|
||||
class="avatar">
|
||||
class="avatar" />
|
||||
</span>
|
||||
</p>
|
||||
<p style="line-height:26pt; margin:0pt 24pt 0pt 0pt; orphans:0; text-align:right; widows:0">
|
||||
@@ -468,7 +471,9 @@
|
||||
</p>
|
||||
<p
|
||||
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 style="font-size:12pt; line-height:150%; margin:0pt; orphans:0; text-align:right; widows:0">
|
||||
<span>
|
||||
@@ -503,8 +508,10 @@
|
||||
</p>
|
||||
<p
|
||||
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
|
||||
style="font-family:仿宋; font-size:12pt">负责人: </span>
|
||||
<span style="font-family:仿宋; font-size:12pt">二级学院</span><span style="font-family:仿宋; font-size:12pt">负责人:
|
||||
<img v-if="formData.xwSign" :src="baseurl + formData.xwSign" width="80px" height="30px"
|
||||
class="avatar" />
|
||||
</span>
|
||||
</p>
|
||||
<p
|
||||
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">
|
||||
<span style="font-family:仿宋; font-size:14pt; font-weight:bold">
|
||||
</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 style="line-height:26pt; orphans:0; text-align:right; widows:0">
|
||||
<span>
|
||||
|
||||
@@ -61,6 +61,16 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-form label-width="200px" size="mini" class="lookForm">
|
||||
@@ -294,6 +304,9 @@ export default {
|
||||
|
||||
editForm: {},
|
||||
editV: false,
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@@ -301,6 +314,15 @@ export default {
|
||||
this.getOwnSign();
|
||||
},
|
||||
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) {
|
||||
if (v != "1.监测对象家庭学生(脱贫不稳定家庭学生、边缘易致贫家庭学生、突发严重困难家庭学生):") {
|
||||
this.editForm.applyReason1 = "";
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
<el-dialog @close="getList" title="申请" :visible.sync="applyV" :fullscreen="true" :destroy-on-close="true">
|
||||
<TufaApply v-if="applyV" />
|
||||
</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-col :span="12">
|
||||
<TufaLook id="printDiv" v-if="lookV" :formData="lookForm" />
|
||||
@@ -51,6 +52,16 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-button v-print="printContent">打印</el-button>
|
||||
@@ -354,13 +365,26 @@ export default {
|
||||
boolImg,
|
||||
printContent: { id: 'printDiv', extraCss: "", extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>' },
|
||||
reApplyV: false,
|
||||
reApplyForm: {}
|
||||
reApplyForm: {},
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
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) {
|
||||
this.editForm.diplomaCertificate = response.fileName;
|
||||
this.upload.fileList = [];
|
||||
|
||||
@@ -70,6 +70,14 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-form label-width="200px" size="mini" class="lookForm">
|
||||
@@ -220,6 +228,9 @@ export default {
|
||||
manyCmt: "",
|
||||
manyRes: null,
|
||||
manySign: "",
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@@ -227,6 +238,14 @@ export default {
|
||||
this.getOwnSign();
|
||||
},
|
||||
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) {
|
||||
if (!path) return '';
|
||||
return path.split('/').pop();
|
||||
|
||||
@@ -66,6 +66,15 @@
|
||||
<el-form-item label="中职毕业证">
|
||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadDiploma">下载毕业证
|
||||
</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>
|
||||
<el-form label-width="200px" size="mini" class="lookForm">
|
||||
@@ -216,6 +225,9 @@ export default {
|
||||
manyCmt: "",
|
||||
manyRes: null,
|
||||
manySign: "",
|
||||
|
||||
lookBiyeV: false,
|
||||
lookBiyeUrl: ''
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@@ -223,6 +235,14 @@ export default {
|
||||
this.getOwnSign();
|
||||
},
|
||||
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) {
|
||||
if (!path) return '';
|
||||
return path.split('/').pop();
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<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>
|
||||
<div style="text-align:center">
|
||||
<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>
|
||||
<p
|
||||
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>
|
||||
<span style="margin-left: 40px;">年</span>
|
||||
@@ -317,7 +320,10 @@
|
||||
<p
|
||||
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"> (公章) </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>
|
||||
<span style="margin-left: 40px;">年</span>
|
||||
|
||||
Reference in New Issue
Block a user