Commit 185991cf by liaoxing

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs into settle-test-20230110
parents 974f01c2 290982a2
...@@ -156,6 +156,7 @@ export default class Betcan { ...@@ -156,6 +156,7 @@ export default class Betcan {
strinf: '', strinf: '',
bedgrp: { bedgrp: {
rec: { rec: {
inr: "",
predat: '', predat: '',
rcvdat: '', rcvdat: '',
doctypcod: '', doctypcod: '',
......
...@@ -85,7 +85,7 @@ export default { ...@@ -85,7 +85,7 @@ export default {
'letp0.cnftxt': [ 'letp0.cnftxt': [
{ type: 'string', required: false, message: '必输项' }, { type: 'string', required: false, message: '必输项' },
{ max: 40, message: '长度不能超过40' }, { max: 400, message: '长度不能超过40' },
], ],
'letcanf.strinf': [ 'letcanf.strinf': [
{ type: 'string', required: false, message: '必输项' }, { type: 'string', required: false, message: '必输项' },
......
...@@ -99,6 +99,20 @@ export default class Letcan { ...@@ -99,6 +99,20 @@ export default class Letcan {
}, },
rmbrol: '', rmbrol: '',
}, },
async queryGridEtyPromptDialogData(type, ptytyp) {
let params = {
userId: window.sessionStorage.userId || 'ZL',
ptytyp: ptytyp,
extkey: this.model.ledgrp[type.toLowerCase()].pts.extkey,
};
let res = await Api.post('/service/ptspta/list', params);
if (res.respCode == SUCCESS) {
this.root.$refs['etyDialog'].show = true;
this.root.promptData.data = res.data.ptaInfos;
this.root.promptData.type = type;
}
},
setmod: new Pub().data.Setmod, setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut, mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod, trnmod: new Pub().data.Trnmod,
......
...@@ -272,7 +272,7 @@ ...@@ -272,7 +272,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="确认文本" prop="letp0.cnftxt"> <el-form-item label="确认文本" prop="letp0.cnftxt">
<c-input <c-input
v-model="model.letp0.cnftxt" v-model="cnftxt"
maxlength="40" maxlength="40"
placeholder="请输入" placeholder="请输入"
disabled disabled
...@@ -334,6 +334,13 @@ export default { ...@@ -334,6 +334,13 @@ export default {
}, },
methods: {}, methods: {},
created: function () {}, created: function () {},
computed:{
cnftxt(){
this.model.letp0.cnftxt="The L/C was canceled "+new Date()
return this.model.letp0.cnftxt
}
}
} }
</script> </script>
......
...@@ -52,6 +52,7 @@ export default { ...@@ -52,6 +52,7 @@ export default {
let dataObj = { let dataObj = {
rec: { rec: {
objtyp: 'LED', objtyp: 'LED',
objinr: model.ledgrp.rec.objinr,
ownref: model.ledgrp.rec.ownref, ownref: model.ledgrp.rec.ownref,
opndat: model.ledgrp.rec.opndat, opndat: model.ledgrp.rec.opndat,
expdat: model.ledgrp.rec.expdat, expdat: model.ledgrp.rec.expdat,
......
...@@ -288,16 +288,16 @@ let checkObj = { ...@@ -288,16 +288,16 @@ let checkObj = {
], ],
"ledgrp.drw.pts.adrblk": [ "ledgrp.drw.pts.adrblk": [
{ type: "string", required: true, message: "必输项" }, { type: "string", required: true, message: "必输项" },
{ max: 35, message: "长度不能超过35" } { max: 350, message: "长度不能超过35" }
], ],
"ledgrp.drw.dbfadrblkcn": [ "ledgrp.drw.dbfadrblkcn": [
{ type: "string", required: true, message: "必输项" }, { type: "string", required: true, message: "必输项" },
{ max: 35, message: "长度不能超过35" } { max: 350, message: "长度不能超过35" }
], ],
"ledgrp.drw.adrelc": [ "ledgrp.drw.adrelc": [
{ type: "string", required: true, message: "必输项" }, { type: "string", required: true, message: "必输项" },
{ max: 35, message: "长度不能超过35" } { max: 350, message: "长度不能超过35" }
], ],
"ledgrp.rec.shpfro": [ "ledgrp.rec.shpfro": [
......
...@@ -198,7 +198,7 @@ ...@@ -198,7 +198,7 @@
style="width: 100%" style="width: 100%"
placeholder="请选择类型" placeholder="请选择类型"
disabled disabled
:code="codes.lcrtyp" :code="codes.lcrtyp1"
> >
</c-select> </c-select>
</el-form-item> </el-form-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