Commit 1c542cc3 by liaoxing

betsnd 界面初始化、check、联动 完善

parent c300dd67
...@@ -160,15 +160,15 @@ export default { ...@@ -160,15 +160,15 @@ export default {
{ required: false, message: "输入正确的日期"} { required: false, message: "输入正确的日期"}
], ],
"bedgrp.blk.matper":[ "bedgrp.blk.matper":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 65,message:"长度不能超过65"} {max: 65,message:"长度不能超过65"}
], ],
"bedgrp.blk.intdis":[ "bedgrp.blk.intdis":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 1300,message:"长度不能超过1300"} {max: 1300,message:"长度不能超过1300"}
], ],
"bedgrp.blk.comcon":[ "bedgrp.blk.comcon":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 1300,message:"长度不能超过1300"} {max: 1300,message:"长度不能超过1300"}
], ],
"bedgrp.rec.disdat":[ "bedgrp.rec.disdat":[
...@@ -216,11 +216,11 @@ export default { ...@@ -216,11 +216,11 @@ export default {
{max: 35,message:"长度不能超过35"} {max: 35,message:"长度不能超过35"}
], ],
"bedsnd.usadet":[ "bedsnd.usadet":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 650,message:"长度不能超过650"} {max: 650,message:"长度不能超过650"}
], ],
"bedsnd.addphr":[ "bedsnd.addphr":[
{type: "string", required: true, message: "必输项"}, {type: "string", required: false, message: "必输项"},
{max: 650,message:"长度不能超过650"} {max: 650,message:"长度不能超过650"}
], ],
// "bedsnd.newbenadr":[ // "bedsnd.newbenadr":[
......
...@@ -17,7 +17,7 @@ export default class Betsnd { ...@@ -17,7 +17,7 @@ export default class Betsnd {
cre752flg: '', cre752flg: '',
docgrdm: { docgrdm: {
docdsclab: "", // Label of document description .brtp.docgrdm.docdsclab docdsclab: "", // Label of document description .brtp.docgrdm.docdsclab
docgrd: "", //brtp.docgrdm.docgrd docgrdVos: "", //brtp.docgrdm.docgrd
}, },
}, },
rmbclmlate: '', rmbclmlate: '',
...@@ -97,7 +97,7 @@ export default class Betsnd { ...@@ -97,7 +97,7 @@ export default class Betsnd {
disdat: '', disdat: '',
doctypcod: '', doctypcod: '',
docrolflg: '', docrolflg: '',
lescom: '', lescom: '0.00',
shpdat: '', shpdat: '',
docrol: '', docrol: '',
matdat: '', matdat: '',
......
...@@ -217,7 +217,11 @@ export default { ...@@ -217,7 +217,11 @@ export default {
computed: { computed: {
bedsndIngdsc: { bedsndIngdsc: {
get() { get() {
return this.model.bedsnd.ingdsc != '' if(this.model.bedsnd.ingdsc == ''){
return this.model.bedsnd.ingdsc = 'X'
}else{
return this.model.bedsnd.ingdsc != ''
}
}, },
set(val) { set(val) {
this.model.bedsnd.ingdsc = val ? 'X' : '' this.model.bedsnd.ingdsc = val ? 'X' : ''
......
...@@ -101,6 +101,7 @@ export default { ...@@ -101,6 +101,7 @@ export default {
const params = { const params = {
//根据xx字段 查询处理的数据 //根据xx字段 查询处理的数据
seaownref: row.seaownref, seaownref: row.seaownref,
userId: window.sessionStorage.userId || 'ZL',
}; };
const res = await Api.post('/service/infbed/dealWithByOwnref', params); const res = await Api.post('/service/infbed/dealWithByOwnref', params);
if (res.respCode === SUCCESS) { if (res.respCode === SUCCESS) {
......
...@@ -21,7 +21,7 @@ export default class Letopn { ...@@ -21,7 +21,7 @@ export default class Letopn {
spcrcb: '', spcrcb: '',
}, },
rec: { rec: {
branchinr: '00000047', branchinr: '',
stagod: '', stagod: '',
tenmaxday: '', tenmaxday: '',
nomton: '0', nomton: '0',
......
...@@ -7187,7 +7187,8 @@ const CodeTable = { ...@@ -7187,7 +7187,8 @@ const CodeTable = {
{ label: "航空公司账单", value: "Airway Bills" }, { label: "航空公司账单", value: "Airway Bills" },
{ label: "受益人声明", value: "Beneficiary's Declaration" }, { label: "受益人声明", value: "Beneficiary's Declaration" },
{ label: "提单复印件", value: "Bill of Lading Copies" }, { label: "提单复印件", value: "Bill of Lading Copies" },
{ label: "提单原件", value: "Bill of Lading Originals" }, // { label: "提单原件", value: "Bill of Lading Originals" },
{ label: "提单原件", value: "Original Bills of Lading" },
{ label: "证明书", value: "Certificate" }, { label: "证明书", value: "Certificate" },
{ label: "分析证书", value: "Certificate of Analysis" }, { label: "分析证书", value: "Certificate of Analysis" },
{ label: "原产地证书", value: "Certificate of Origin" }, { label: "原产地证书", value: "Certificate of Origin" },
......
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