|
@@ -691,6 +691,14 @@ export default {
|
|
|
this.addFabricData.push(addrow)
|
|
|
},
|
|
|
|
|
|
+ judageCloumn(){
|
|
|
+ this.addFabricColumns.map(item => {
|
|
|
+ if(item.title == "匹数/Rolls"){
|
|
|
+ item.title = '箱数'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
// -------------------------------------
|
|
|
// 操作 删除
|
|
|
handleDelete(record,index) {
|
|
@@ -827,6 +835,11 @@ export default {
|
|
|
this.defaultMethod = 'add'
|
|
|
this.addFabric = {}
|
|
|
this.addFabricData = []
|
|
|
+ this.addFabricColumns.map(item => {
|
|
|
+ if(item.title == "箱数"){
|
|
|
+ item.title = '匹数/Rolls'
|
|
|
+ }
|
|
|
+ })
|
|
|
this.$refs.form.resetFields()
|
|
|
},
|
|
|
// - father------------------------------------
|