feat(物料管理): 同步小型刀具库数据
This commit is contained in:
parent
cf8ef55f8f
commit
2a5cd84833
@ -42,3 +42,11 @@ export function delMdItem(itemId) {
|
|||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 同步小型刀具库数据
|
||||||
|
export function asyncSmallKnifeData() {
|
||||||
|
return request({
|
||||||
|
url: '/mes/md/mditem/asyncSmallKnife',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -89,6 +89,16 @@
|
|||||||
>删除
|
>删除
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="el-icon-edit"
|
||||||
|
size="mini"
|
||||||
|
@click="asyncSmallKnifeData"
|
||||||
|
>同步小型刀具库
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
<!-- <el-col :span="1.5">-->
|
<!-- <el-col :span="1.5">-->
|
||||||
<!-- <el-button-->
|
<!-- <el-button-->
|
||||||
<!-- type="info"-->
|
<!-- type="info"-->
|
||||||
@ -453,7 +463,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {addMdItem, delMdItem, getMdItem, listMdItem, updateMdItem} from "@/api/mes/md/mdItem";
|
import {addMdItem, asyncSmallKnifeData, delMdItem, getMdItem, listMdItem, updateMdItem} from "@/api/mes/md/mdItem";
|
||||||
|
|
||||||
import ItemBom from "./components/itembom.vue";
|
import ItemBom from "./components/itembom.vue";
|
||||||
import SOPTab from "./components/sop.vue"
|
import SOPTab from "./components/sop.vue"
|
||||||
@ -717,6 +727,13 @@ export default {
|
|||||||
this.getBarcodeUrl();
|
this.getBarcodeUrl();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
asyncSmallKnifeData() {
|
||||||
|
asyncSmallKnifeData().then(res => {
|
||||||
|
console.log(res);
|
||||||
|
this.$message.success(`同步成功,新增数据 ${res.data} 条`);
|
||||||
|
this.getList();
|
||||||
|
})
|
||||||
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
||||||
submitForm: function () {
|
submitForm: function () {
|
||||||
this.$refs["form"].validate(valid => {
|
this.$refs["form"].validate(valid => {
|
||||||
|
Loading…
Reference in New Issue
Block a user