Commit b9a14041 by LiRui

cptadv交易缺陷解决

parent 65de3c33
......@@ -304,7 +304,7 @@
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Brtset/Event"
import Event from "~/model/Cptadv/Event"
export default {
inject: ['root'],
......@@ -319,7 +319,7 @@ export default {
created: function () {
this.executeRule("bopmod.dbdp.basp").then((res) => {
if (res.respCode == SUCCESS) {
this.copyValueFromVO(res.data);
this.updateModel(res.data);
}
});
}
......
......@@ -322,7 +322,7 @@
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Brtset/Event"
import Event from "~/model/Cptadv/Event"
export default {
inject: ['root'],
......@@ -337,7 +337,7 @@ export default {
created: function () {
this.executeRule("bopmod.dbap.basp").then((res) => {
if (res.respCode == SUCCESS) {
this.copyValueFromVO(res.data);
this.updateModel(res.data);
}
});
}
......
......@@ -902,7 +902,13 @@ export default {
},
methods: { ...Event },
created: function () {},
created: function () {
this.executeRule("trnmod.cipmod.cips").then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
},
};
</script>
<style>
......
......@@ -293,7 +293,11 @@ export default {
},
methods:{...Event},
created:function(){
this.executeRule("trnmod.cipmod.cips3").then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
}
}
</script>
......
......@@ -27,7 +27,7 @@
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptopn/Event";
import Event from "~/model/Cptadv/Event";
import Cnyp1 from "./Cnyp1";
......
......@@ -148,7 +148,7 @@
v-model="model.cpdgrp.orc.pts.adrblk"
show-word-limit
placeholder="请输入地址信息"
:disabled="model.cpdgrp.rec.swftyp == ''"
disabled
></c-input>
</el-form-item>
</c-col>
......
......@@ -356,7 +356,13 @@ export default {
return {};
},
methods: { ...Event },
created: function () {},
created: function () {
this.executeRule("cnybop.incp").then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
},
};
</script>
<style>
......
......@@ -381,7 +381,13 @@ export default {
return {};
},
methods: { ...Event },
created: function () {},
created: function () {
this.executeRule("trnmod.cipmod.cips").then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
},
};
</script>
<style>
......
......@@ -75,7 +75,7 @@
</c-col>
<c-col :span="11">
<el-form-item label="" label-width="5px">
<el-form-item label="" label-width="5px" prop="bopmod.outchargeamt">
<c-input-currency v-model="model.bopmod.outchargeamt"
style="text-align: right;"
placeholder="请输入国外银行扣费(涉外收入申报专用)"
......@@ -153,7 +153,11 @@ export default {
}
},
created:function(){
this.executeRule("bopmod.wg").then((res) => {
if (res.respCode == SUCCESS) {
this.updateModel(res.data);
}
});
}
}
</script>
......
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