Browse Source

暂存单开单后暂存单页面刷新

dev-xx
qb 1 year ago
parent
commit
35cfb9409c
  1. 2
      src/option/waybill/TemporaryStorageList.js
  2. 5
      src/views/distribution/inventory/CreateOrder.vue
  3. 26
      src/views/waybill/TemporaryStorageList.vue

2
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',

5
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<any>({
/** 页面数据 */
@ -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 {

26
src/views/waybill/TemporaryStorageList.vue

@ -435,7 +435,16 @@
</template>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import {
ref,
reactive,
toRefs,
computed,
onMounted,
nextTick,
onActivated,
onDeactivated,
} from 'vue';
import functions from '@/utils/functions.js';
import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
@ -457,10 +466,14 @@ import print from '@/utils/print';
import { ElMessage } from 'element-plus';
import type { FormInstance, FormRules } from 'element-plus';
import { getToken } from '@/utils/auth';
import { useStore } from 'vuex';
//
const $router = useRouter();
// vuex
const $store = useStore();
//
const ruleFormRef = ref<FormInstance>();
@ -1201,6 +1214,17 @@ const handleOpenAddTagDlog = () => {
handleRefreshAddTag(ruleFormRef.value);
};
onActivated(() => {
console.log('activated');
console.log('this.$store :>> ', $store);
if ($store.state.isRefresh.refreshObj.TemporaryStorageList) {
//
onLoad();
$store.commit('EDIT_REFRESHITEM', { title: 'TemporaryStorageList', status: false });
}
});
</script>
<style scoped lang="scss">

Loading…
Cancel
Save