作者 小范

Merge remote-tracking branch 'origin/master'

@@ -809,7 +809,6 @@ @@ -809,7 +809,6 @@
809 { pattern: /^([0-9]+)(\.\d{2})?$/, message: '只允许输入数字与小数,支持到小数点后两位' } 809 { pattern: /^([0-9]+)(\.\d{2})?$/, message: '只允许输入数字与小数,支持到小数点后两位' }
810 ], 810 ],
811 feeweight: [ 811 feeweight: [
812 - { required: true, message: '计费重量为必填项', trigger: 'blur' },  
813 { pattern: /^([0-9]+)(\.\d{2})?$/, message: '只允许输入数字与小数,支持到小数点后两位' } 812 { pattern: /^([0-9]+)(\.\d{2})?$/, message: '只允许输入数字与小数,支持到小数点后两位' }
814 ], 813 ],
815 area: [ 814 area: [
@@ -1338,8 +1337,9 @@ @@ -1338,8 +1337,9 @@
1338 return this.addForm.goodssize; 1337 return this.addForm.goodssize;
1339 }, 1338 },
1340 set:function (value) { 1339 set:function (value) {
1341 - this.addForm.goodssize = value.replaceAll('*','x')  
1342 - this.addForm.goodssize = value.replaceAll('X','x') 1340 + value = value.replaceAll('*','x')
  1341 + value = value.replaceAll('X','x')
  1342 + this.addForm.goodssize = value
1343 // console.log("opebTab监视:value = "+ value); 1343 // console.log("opebTab监视:value = "+ value);
1344 } 1344 }
1345 } 1345 }
1 { 1 {
2 - "nmmsVer": "1.38" 2 + "nmmsVer": "1.40"
3 } 3 }