Commit aaf7fe37 by wangna

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs into development-202206
parents 416cdfde c89b6b57
......@@ -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,13 +654,13 @@
<c-col :span="12">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="是否显示查询码"
label="是否生成查询码"
prop="gidgrp.gidcxm.cxmflg"
>
<c-select
v-model="model.gidgrp.gidcxm.cxmflg"
style="width: 100%"
placeholder="请选择是否显示查询码"
placeholder="请选择是否生成查询码"
>
<el-option
v-for="item in codes.cxmflg"
......@@ -1186,8 +1193,7 @@
disabled
size="small"
type="primary"
style="margin: 5px 0 0 10px;float: left;
text-align: center;"
style="margin: 5px 0 0 10px;float: left;text-align: center;"
@click="onGitpButdifexptxt"
>
查看系统文本
......@@ -1319,8 +1325,7 @@
disabled
size="small"
type="primary"
style="margin: 5px 0 0 10px;float: left;
text-align: center;"
style="margin: 5px 0 0 10px;float: left;text-align: center;"
@click="onGitpButdifliatxtc"
>
查看系统文本
......
......@@ -242,10 +242,9 @@
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onVoucty1Selbut1"
>
?
?
</c-button>
</template>
</c-fullbox>
......@@ -277,7 +276,6 @@
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onVoucty2Selbut1"
>
?
......@@ -302,7 +300,6 @@
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onVoucty3Selbut1"
>
?
......@@ -337,7 +334,6 @@
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onVoucty4Selbut1"
>
?
......
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