Commit 223aa631 by javaHeight

Bptopn 测试修改

parent ba90f48a
......@@ -7149,6 +7149,12 @@ const CodeTable = {
invtyp1: [
{ label: "类型1", value: "1" }
],
invtyp2: [
{ label: "商业发票", value: "1" },
{ label: "形式发票", value: "2" },
{ label: "样品发票", value: "3" },
{ label: "海关发票", value: "4" }
],
legfrm: [
{ label: "见索即付保函", value: "DGAR" },
{ label: "备用信用证", value: "STBY" },
......@@ -7491,6 +7497,10 @@ const CodeTable = {
{ label: '01', value: '01' },
{ label: '02', value: '02' },
{ label: '03', value: '03' },
],
jzllgz: [
{ label: '央视基准', value: '0' },
{ label: '市场LPR基准', value: '1' },
]
}
export default CodeTable;
......@@ -497,6 +497,7 @@
v-model="model.bptmod.finmod.dinmod.jzllgz"
style="width: 100%"
placeholder="请选择基准利率规则"
:code="codes.jzllgz"
>
</c-select>
</el-form-item>
......@@ -688,7 +689,7 @@
placeholder="请选择发票类型"
>
<el-option
v-for="item in codes.invtyp"
v-for="item in codes.invtyp2"
:key="item.value"
:label="item.label"
:value="item.value"
......
......@@ -155,7 +155,14 @@ export default {
methods: {
...Event,
},
created: function () {},
// created: function () {},
created: function () {
this.executeRule("cfabpt.cfap").then((res) => {
if (res.respCode == SUCCESS) {
Utils.copyValueFromVO(res.data);
}
});
},
};
</script>
......
......@@ -248,7 +248,14 @@ export default {
return {};
},
methods: { ...Event },
created: function () {},
// created: function () {},
created: function () {
this.executeRule("cfabpt.recp.conp").then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
},
};
</script>
<style>
......
......@@ -232,6 +232,13 @@ export default {
},
methods: { ...Event },
created: function () {},
// created: function () {
// this.executeRule("cfabpt.recp.dclp(1).dclp").then((res) => {
// if (res.respCode == SUCCESS) {
// this.updateModel(res.data);
// }
// });
// },
}
</script>
<style></style>
......@@ -38,7 +38,7 @@
</el-collapse-item>
<!-- v-if="model.cfabpt.cfaflg=='1'" -->
<el-collapse-item title="国内外汇贷款-签约信息" name="conp">
<el-collapse-item title="国内外汇贷款-签约信息" name="conp" v-if="model.cfabpt.cfaflg=='1'">
<m-conp :model="model" :codes="codes" />
</el-collapse-item>
......
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