forked from angelo/web-retail-admin
feat(emptyOrder、nowdelivery): 空单注册不展示激活字段,默认值为否。立即发货移除追溯相关字段
This commit is contained in:
parent
f9ac26a5b4
commit
5e4befb340
|
@ -267,7 +267,7 @@
|
||||||
:label="'产品数量'"
|
:label="'产品数量'"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<el-table-column align="center" prop="barCode" :label="'追溯编号'" />
|
<!-- <el-table-column align="center" prop="barCode" :label="'追溯编号'" /> -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="orderCode"
|
prop="orderCode"
|
||||||
|
|
|
@ -2009,7 +2009,8 @@ export default {
|
||||||
// contentAbstract: '',
|
// contentAbstract: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
specs: [],
|
specs: [],
|
||||||
autoFlag: ''
|
autoFlag: 1,
|
||||||
|
autoFlagVal: '否'
|
||||||
})
|
})
|
||||||
this.tableData.push(obj)
|
this.tableData.push(obj)
|
||||||
this.getColSpanData('remark', this.tableData)
|
this.getColSpanData('remark', this.tableData)
|
||||||
|
|
|
@ -1703,8 +1703,6 @@ export default {
|
||||||
},
|
},
|
||||||
changeAllData() {
|
changeAllData() {
|
||||||
this.tableData.forEach((item, index) => {
|
this.tableData.forEach((item, index) => {
|
||||||
item.autoFlag = ''
|
|
||||||
item.autoFlagVal = ''
|
|
||||||
if (this.changeData.placeDept != '') {
|
if (this.changeData.placeDept != '') {
|
||||||
item.placeDept = this.changeData.placeDept
|
item.placeDept = this.changeData.placeDept
|
||||||
item.placeDeptVal = this.changeData.placeDeptVal
|
item.placeDeptVal = this.changeData.placeDeptVal
|
||||||
|
@ -2146,7 +2144,9 @@ export default {
|
||||||
// autoFlag: '',
|
// autoFlag: '',
|
||||||
// contentAbstract: '',
|
// contentAbstract: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
specs: []
|
specs: [],
|
||||||
|
autoFlag: 1,
|
||||||
|
autoFlagVal: '否'
|
||||||
})
|
})
|
||||||
this.tableData.push(obj)
|
this.tableData.push(obj)
|
||||||
this.getColSpanData('remark', this.tableData)
|
this.getColSpanData('remark', this.tableData)
|
||||||
|
|
Loading…
Reference in New Issue