diff --git a/src/option/waybill/TemporaryStorageList.js b/src/option/waybill/TemporaryStorageList.js index 38d35a4e..f1d16efe 100644 --- a/src/option/waybill/TemporaryStorageList.js +++ b/src/option/waybill/TemporaryStorageList.js @@ -94,6 +94,7 @@ export const columnList = [ checkarr: [], fixed: false, sortable: true, + isshowSummary: true, }, { prop: 'trainNumber', @@ -114,6 +115,7 @@ export const columnList = [ checkarr: [], fixed: false, sortable: true, + isshowSummary: true, }, { prop: 'customerName', diff --git a/src/views/distribution/inventory/CreateOrder.vue b/src/views/distribution/inventory/CreateOrder.vue index 6ea6c014..51ff5a01 100644 --- a/src/views/distribution/inventory/CreateOrder.vue +++ b/src/views/distribution/inventory/CreateOrder.vue @@ -905,7 +905,7 @@ const $router = useRouter(); const $route = useRoute(); // 获取vuex -let useStores = useStore(); +let $store = useStore(); const details = reactive({ /** 页面数据 */ @@ -1951,7 +1951,7 @@ const handleClickAll = e => { /** 返回上一个页面 */ function back() { - useStores.commit('DEL_TAG_CURRENT'); + $store.commit('DEL_TAG_CURRENT'); if (details.pageInfo.backPath) return $router.push(details.pageInfo.backPath); $router.back(); } @@ -2215,6 +2215,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => { } catch (error) { console.log('error :>> ', error); } finally { + $store.commit('EDIT_REFRESHITEM', { title: 'TemporaryStorageList', status: true }); details.loadingObj.submitLoadingBtn = false; } } else { diff --git a/src/views/waybill/TemporaryStorageList.vue b/src/views/waybill/TemporaryStorageList.vue index f841558c..a012aa7b 100644 --- a/src/views/waybill/TemporaryStorageList.vue +++ b/src/views/waybill/TemporaryStorageList.vue @@ -435,7 +435,16 @@