Commit 075f01b4 by huangxin

保函开立gitopn交易修改

parent 82091c4f
......@@ -18,6 +18,10 @@ import Event from "~/model/Gitopn/Event";
import Cnyp1 from "./Cnyp1";
import Voup from "./Voup";
const tabNameToRulePathMapping = {
"voup": "cnybop.voup",
}
export default {
components: {
"m-cnyp1": Cnyp1,
......@@ -31,7 +35,31 @@ export default {
activeNames: ["cnyp1"],
};
},
methods: { ...Event },
methods: {
...Event,
handleChange(names){
// console.log(names);//激活的(展开的)面板的name数组集合
if (this.isInDisplay) {
return
}
const arr = []
for (let i = 0; i < names.length; i++) {
const n = names[i];
const path = tabNameToRulePathMapping[n]//取出激活/展开面板name对应的rulePath
if (path) {
arr.push(path)
}
}
let rulePath = arr.join(",");//把arr数组加入逗号分割,变成字符串
if (!!rulePath) {//rulePath不为空串
this.executeRule(rulePath).then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
}
},
},
created: function () {},
};
</script>
......
......@@ -527,6 +527,12 @@
v-if="model.gitp.swiftflg == 'N'"
class="centerLable"
>
<el-form-item
label=""
prop="gidgrp.rec.liaflg"
class="checkbox-left"
label-width="0px"
>
<c-checkbox
v-model="model.gidgrp.rec.liaflg"
:disabled="
......@@ -535,6 +541,7 @@
"
>我行责任敞口</c-checkbox
>
</el-form-item>
</c-col>
<c-col
:span="3"
......@@ -647,7 +654,7 @@
<c-col :span="12">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="是否显示查询码"
label="是否生成查询码"
prop="gidgrp.gidcxm.cxmflg"
>
<c-select
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment