Commit 3487b8da by WH

Merge remote-tracking branch 'origin/settle-test-20230110' into settle-test-20230110

parents b782cfdd 822d817a
...@@ -57,6 +57,7 @@ export default { ...@@ -57,6 +57,7 @@ export default {
this.model.ledgrp.rec.inr = ''; this.model.ledgrp.rec.inr = '';
this.model.seagodcod = ''; this.model.seagodcod = '';
this.model.seadocflg = ''; this.model.seadocflg = '';
this.model.seadoctypcod = '';
}, },
// pageSize改变 // pageSize改变
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<c-fullbox> <c-fullbox>
<c-input <c-input
:disabled="this.flag5" :disabled="this.flag5"
v-model="model.lidgrp.avb.pts.extkey" v-model="avbptsextkey"
maxlength="16" maxlength="16"
placeholder="请输入地址编码" placeholder="请输入地址编码"
@keyup.enter.native=" @keyup.enter.native="
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
<c-input <c-input
:disabled="this.flag6" :disabled="this.flag6"
type="textarea" type="textarea"
v-model="model.lidgrp.avb.pts.adrblk" v-model="avbptsadrblk"
maxlength="135" maxlength="135"
:rows="4" :rows="4"
show-word-limit show-word-limit
...@@ -381,7 +381,7 @@ export default { ...@@ -381,7 +381,7 @@ export default {
else if (val == 'S') { else if (val == 'S') {
this.flag4 = true; this.flag4 = true;
this.flag5 = false; this.flag5 = false;
this.flag6 = true; this.flag6 = false;
} }
//Reimbursing Bank 偿付行 //Reimbursing Bank 偿付行
else if (val == 'R') { else if (val == 'R') {
...@@ -429,6 +429,36 @@ export default { ...@@ -429,6 +429,36 @@ export default {
}, },
}, },
}, },
computed: {
avbptsextkey(){
if(this.model.lidgrp.rec.avbwth == 'A'){
return this.model.lidgrp.avb.pts.extkey
}
if(this.model.lidgrp.rec.avbwth == 'I'){
return this.model.lidgrp.avb.pts.extkey
}
if(this.model.lidgrp.rec.avbwth == 'C'){
return this.model.lidgrp.cmb.pts.extkey
}
if(this.model.lidgrp.rec.avbwth == 'R'){
return this.model.lidgrp.rmb.pts.extkey
}
},
avbptsadrblk(){
if(this.model.lidgrp.rec.avbwth == 'A'){
return this.model.lidgrp.avb.pts.adrblk
}
if(this.model.lidgrp.rec.avbwth == 'I'){
return this.model.lidgrp.avb.pts.adrblk
}
if(this.model.lidgrp.rec.avbwth == 'C'){
return this.model.lidgrp.cmb.pts.adrblk
}
if(this.model.lidgrp.rec.avbwth == 'R'){
return this.model.lidgrp.rmb.pts.adrblk
}
}
},
}; };
</script> </script>
<style> <style>
......
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