|
@@ -435,7 +435,7 @@
|
|
|
</el-row> -->
|
|
|
<el-row style="height: 109px" type="flex" align="middle" justify="center">
|
|
|
<el-button type="primary" plain @click="cancel">取 消</el-button>
|
|
|
- <el-button type="primary" @click="submitForm" v-if="!zfrId"
|
|
|
+ <el-button type="primary" @click="submitForm"
|
|
|
>确 定</el-button
|
|
|
>
|
|
|
</el-row>
|
|
@@ -692,6 +692,10 @@ export default {
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
openDetailBill: false,
|
|
|
+ //人脸验证结果
|
|
|
+ faceResult:"",
|
|
|
+ //人脸识别结果传参
|
|
|
+ authForm:{},
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
@@ -959,7 +963,10 @@ export default {
|
|
|
spinner: "el-icon-loading",
|
|
|
background: "rgba(0, 0, 0, 0.7)",
|
|
|
});
|
|
|
- console.log(this.form, "AAHAHAHAH");
|
|
|
+ listCompanyHandler().then((response) => {
|
|
|
+ var self = this;
|
|
|
+ if (response.data == true) {
|
|
|
+ this.form.zfrId = this.zfrId;
|
|
|
addRecord(this.form)
|
|
|
.then((response) => {
|
|
|
console.log(response);
|
|
@@ -973,8 +980,17 @@ export default {
|
|
|
.catch((response) => {
|
|
|
loading.close();
|
|
|
});
|
|
|
+ } else {
|
|
|
+ self.$message({
|
|
|
+ message: "此操作需经办人权限,请确认您是否是经办人",
|
|
|
+ type: "warning",
|
|
|
+ });
|
|
|
+ loading.close();
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
},
|
|
|
/* 清空 */
|
|
|
clearBoth() {
|
|
@@ -1244,6 +1260,7 @@ export default {
|
|
|
listCompanyHandler().then((response) => {
|
|
|
var self = this;
|
|
|
// self.paiAccno = '3115730025233104147';
|
|
|
+ console.log(response)
|
|
|
if (response.data == true) {
|
|
|
cfcaProjectNo().then((response) => {
|
|
|
if (response.data.scyCfcaAuthNumber == null) {
|
|
@@ -1328,7 +1345,7 @@ export default {
|
|
|
loading.close();
|
|
|
});
|
|
|
} else {
|
|
|
- self.$message({
|
|
|
+ self.$message({
|
|
|
message: "您还没有电子账户,请联系平台开通电子账户",
|
|
|
type: "warning",
|
|
|
});
|
|
@@ -1345,7 +1362,10 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
|
- this.$message.error("此操作需经办人权限,请确认您是否是经办人");
|
|
|
+ this.$message({
|
|
|
+ message: "此操作需经办人权限,请确认您是否是经办人",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
},
|