Browse Source

添加数量字段

master
马远东 1 year ago
parent
commit
7302489d73
  1. 9
      src/views/aftersales/VueTemp.vue
  2. 22
      src/views/distribution/checkInventoryTask/createTask.vue

9
src/views/aftersales/VueTemp.vue

@ -1449,7 +1449,7 @@ const ConfirmForm = () => {
typesOf: 1, typesOf: 1,
}; };
processorEntityList.push(ResponsibleParty); processorEntityList.push(ResponsibleParty);
Indexform.value.processorEntityList = processorEntityList; DataSubmit.processorEntityList = processorEntityList;
let DataSubmit = { ...Indexform.value }; let DataSubmit = { ...Indexform.value };
delete DataSubmit.duty, // delete DataSubmit.duty, //
delete DataSubmit.processor; // delete DataSubmit.processor; //
@ -1659,12 +1659,15 @@ const selectionChange = list => {
}; };
/** 页码改变执行的回调 */ /** 页码改变执行的回调 */
const currentChange = () => { const currentChange = (val) => {
console.log('2'); page.value.currentPage=val
IndexTable();
}; };
// //
const sizeChange=(val)=>{ const sizeChange=(val)=>{
console.log(val); console.log(val);
page.value.pageSize=val
IndexTable();
} }
const changeProcessingResults = val => { const changeProcessingResults = val => {
// //

22
src/views/distribution/checkInventoryTask/createTask.vue

@ -838,6 +838,17 @@ const menuData = ref([
search: false, search: false,
head: true, head: true,
}, },
{
prop: 'stockNum',
label: '数量',
type: 5,
values: '',
width: '260',
checkarr: [],
fixed: false,
search: true,
head: true,
},
{ {
prop: 'questType', prop: 'questType',
label: '类型', label: '类型',
@ -972,6 +983,17 @@ const InventoryDetails = ref([
search: true, search: true,
head: true, head: true,
}, },
{
prop: 'stockNum',
label: '数量',
type: 5,
values: '',
width: '260',
checkarr: [],
fixed: false,
search: true,
head: true,
},
{ {
prop: 'trayCode', prop: 'trayCode',
label: '托盘码', label: '托盘码',

Loading…
Cancel
Save