问题修改

dev-scheduling
zhangdi 1 week ago
parent 169c333b4f
commit 7b0d69d486
  1. 2
      src/api/basicData/bsPlanAssignSteerModify.js
  2. 20
      src/views/basicData/bsPlanAssignSteerModify/index.vue
  3. 2
      src/views/inboundOutboundManagement/materialIssuing.vue

@ -3,7 +3,7 @@ import request from '@/axios';
// 获取列表数据 // 获取列表数据
export const getList = (current, size, params) => { export const getList = (current, size, params) => {
return request({ return request({
url: '/blade-desk/QA/DispatchConfigApproval/page', url: '/blade-desk/quality/planAssignSteerModify/page',
method: 'get', method: 'get',
params: { params: {
...params, ...params,

@ -14,7 +14,9 @@
@refresh-change="refreshChange" @refresh-change="refreshChange"
@on-load="onLoad" @on-load="onLoad"
> >
<template #menu-left> </template> <template #menu-left>
<el-button type="primary" @click="addFn()">新增</el-button>
</template>
<template #menu-right> </template> <template #menu-right> </template>
<template #menu="{ row }"> <template #menu="{ row }">
<el-button <el-button
@ -29,6 +31,7 @@
</template> </template>
<script> <script>
import { getList } from '@/api/basicData/bsPlanAssignSteerModify';
export default { export default {
components: {}, components: {},
data() { data() {
@ -126,7 +129,10 @@ export default {
}; };
}, },
methods: { methods: {
//
addFn(){
},
rowDel(row) { rowDel(row) {
this.$confirm('确定将选择数据删除?', { this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定', confirmButtonText: '确定',
@ -176,13 +182,13 @@ export default {
}, },
onLoad(page, params = {}) { onLoad(page, params = {}) {
// this.loading = true; this.loading = true;
// getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
// this.data = res.data.data.records; this.data = res.data.data.records;
// this.loading = false; this.loading = false;
// this.page.total = res.data.data.total; this.page.total = res.data.data.total;
// this.selectionClear(); // this.selectionClear();
// }); });
}, },
}, },
mounted() {}, mounted() {},

@ -353,7 +353,7 @@ export default {
crId: row.id, crId: row.id,
currentOutQty: row.currentOutQty, currentOutQty: row.currentOutQty,
rlsId: row.rlsId, rlsId: row.rlsId,
// pickerName:row.pickerName, pickerName:row.pickerName,
picker:row.picker picker:row.picker
}, },
]; ];

Loading…
Cancel
Save