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"; ...@@ -18,6 +18,10 @@ import Event from "~/model/Gitopn/Event";
import Cnyp1 from "./Cnyp1"; import Cnyp1 from "./Cnyp1";
import Voup from "./Voup"; import Voup from "./Voup";
const tabNameToRulePathMapping = {
"voup": "cnybop.voup",
}
export default { export default {
components: { components: {
"m-cnyp1": Cnyp1, "m-cnyp1": Cnyp1,
...@@ -31,7 +35,31 @@ export default { ...@@ -31,7 +35,31 @@ export default {
activeNames: ["cnyp1"], 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 () {}, created: function () {},
}; };
</script> </script>
......
...@@ -527,6 +527,12 @@ ...@@ -527,6 +527,12 @@
v-if="model.gitp.swiftflg == 'N'" v-if="model.gitp.swiftflg == 'N'"
class="centerLable" class="centerLable"
> >
<el-form-item
label=""
prop="gidgrp.rec.liaflg"
class="checkbox-left"
label-width="0px"
>
<c-checkbox <c-checkbox
v-model="model.gidgrp.rec.liaflg" v-model="model.gidgrp.rec.liaflg"
:disabled=" :disabled="
...@@ -535,6 +541,7 @@ ...@@ -535,6 +541,7 @@
" "
>我行责任敞口</c-checkbox >我行责任敞口</c-checkbox
> >
</el-form-item>
</c-col> </c-col>
<c-col <c-col
:span="3" :span="3"
...@@ -647,13 +654,13 @@ ...@@ -647,13 +654,13 @@
<c-col :span="12"> <c-col :span="12">
<el-form-item <el-form-item
v-if="model.gitp.swiftflg != 'Y'" v-if="model.gitp.swiftflg != 'Y'"
label="是否显示查询码" label="是否生成查询码"
prop="gidgrp.gidcxm.cxmflg" prop="gidgrp.gidcxm.cxmflg"
> >
<c-select <c-select
v-model="model.gidgrp.gidcxm.cxmflg" v-model="model.gidgrp.gidcxm.cxmflg"
style="width: 100%" style="width: 100%"
placeholder="请选择是否显示查询码" placeholder="请选择是否生成查询码"
> >
<el-option <el-option
v-for="item in codes.cxmflg" v-for="item in codes.cxmflg"
...@@ -1186,8 +1193,7 @@ ...@@ -1186,8 +1193,7 @@
disabled disabled
size="small" size="small"
type="primary" type="primary"
style="margin: 5px 0 0 10px;float: left; style="margin: 5px 0 0 10px;float: left;text-align: center;"
text-align: center;"
@click="onGitpButdifexptxt" @click="onGitpButdifexptxt"
> >
查看系统文本 查看系统文本
...@@ -1319,8 +1325,7 @@ ...@@ -1319,8 +1325,7 @@
disabled disabled
size="small" size="small"
type="primary" type="primary"
style="margin: 5px 0 0 10px;float: left; style="margin: 5px 0 0 10px;float: left;text-align: center;"
text-align: center;"
@click="onGitpButdifliatxtc" @click="onGitpButdifliatxtc"
> >
查看系统文本 查看系统文本
......
...@@ -242,10 +242,9 @@ ...@@ -242,10 +242,9 @@
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search"
@click="onVoucty1Selbut1" @click="onVoucty1Selbut1"
> >
? ?
</c-button> </c-button>
</template> </template>
</c-fullbox> </c-fullbox>
...@@ -277,7 +276,6 @@ ...@@ -277,7 +276,6 @@
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search"
@click="onVoucty2Selbut1" @click="onVoucty2Selbut1"
> >
? ?
...@@ -302,7 +300,6 @@ ...@@ -302,7 +300,6 @@
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search"
@click="onVoucty3Selbut1" @click="onVoucty3Selbut1"
> >
? ?
...@@ -337,7 +334,6 @@ ...@@ -337,7 +334,6 @@
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search"
@click="onVoucty4Selbut1" @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