|
|
|
@ -61,15 +61,15 @@ export default { |
|
|
|
methods: { |
|
|
|
// 开始配置 |
|
|
|
onStartConfig() { |
|
|
|
this.$emit("startConfig", this.innerRow) |
|
|
|
this.$emit("startConfig", this.innerRow,this.rowIndex) |
|
|
|
}, |
|
|
|
// 配置完成 |
|
|
|
onConfigComplete() { |
|
|
|
this.$emit("configComplete", this.innerRow) |
|
|
|
this.$emit("configComplete", this.innerRow,this.rowIndex) |
|
|
|
}, |
|
|
|
// 打印标签 |
|
|
|
onPrintLabel() { |
|
|
|
this.$emit("printLabel", this.innerRow) |
|
|
|
this.$emit("printLabel", this.innerRow,this.rowIndex) |
|
|
|
}, |
|
|
|
// 分装 |
|
|
|
onSubPackage() { |
|
|
|
@ -97,7 +97,7 @@ export default { |
|
|
|
resourceList: null, |
|
|
|
} |
|
|
|
EventBus.$emit('onModifyRecord', params); |
|
|
|
this.$emit("subPackageSubmit", {fzsj:data,rowData:this.innerRow}); |
|
|
|
this.$emit("subPackageSubmit", {fzsj:data,rowData:this.innerRow,headerSelectFields:this.columns.headerSelectFields}); |
|
|
|
} |
|
|
|
}, |
|
|
|
// 删除行 |
|
|
|
|