tmp
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
@@ -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 = "";
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
<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-download" @click="lookBiye">预览毕业证
|
<el-button type="primary" size="mini" icon="el-icon-view" @click="lookBiye">预览毕业证
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
<el-dialog :visible.sync="lookBiyeV" :destroy-on-close="true" append-to-body>
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user