Commit b9a14041 by LiRui

cptadv交易缺陷解决

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