|
@@ -123,7 +123,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- // 出仓管理列表
|
|
|
+ // 分割加工列表
|
|
|
this.getSegmentationList();
|
|
|
},
|
|
|
methods: {
|
|
@@ -133,7 +133,7 @@ export default {
|
|
|
if (this.isAdd) {
|
|
|
reqAddSegmentation(this.formData)
|
|
|
.then(res => {
|
|
|
- // 出仓管理列表
|
|
|
+ // 分割加工列表
|
|
|
this.getSegmentationList();
|
|
|
this.$message.success("添加成功!");
|
|
|
})
|
|
@@ -144,7 +144,7 @@ export default {
|
|
|
} else {
|
|
|
reqUpdateSegmentation(this.formData)
|
|
|
.then(res => {
|
|
|
- // 出仓管理列表
|
|
|
+ // 分割加工列表
|
|
|
this.getSegmentationList();
|
|
|
this.$message.success("编辑成功!");
|
|
|
})
|
|
@@ -158,7 +158,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- // 出仓管理列表
|
|
|
+ // 分割加工列表
|
|
|
getSegmentationList() {
|
|
|
reqSegmentationList({
|
|
|
searchStr: this.search,
|
|
@@ -186,7 +186,7 @@ export default {
|
|
|
reqDelSegmentation(row.id)
|
|
|
.then(res => {
|
|
|
console.log(res);
|
|
|
- // 出仓管理列表
|
|
|
+ // 分割加工列表
|
|
|
this.getSegmentationList();
|
|
|
this.$message.success("删除成功!");
|
|
|
})
|
|
@@ -198,7 +198,7 @@ export default {
|
|
|
pageChange(p) {
|
|
|
console.log(p);
|
|
|
this.page = p;
|
|
|
- // 出仓管理列表
|
|
|
+ // 分割加工列表
|
|
|
this.getSegmentationList();
|
|
|
}
|
|
|
}
|