浏览代码

change: 代码逻辑优化.

peter 4 月之前
父节点
当前提交
d662e9b14c

+ 1 - 10
src/pages/indent-manage/indent/components/calcPrice/index.vue

@@ -491,16 +491,7 @@
   </div>
 </template>
 <script lang="ts" setup>
-import {
-  defineComponent,
-  ref,
-  watch,
-  computed,
-  nextTick,
-  useTemplateRef,
-  ShallowRef,
-  inject,
-} from 'vue'
+import { defineComponent, ref, watch, computed, nextTick, inject } from 'vue'
 import {
   ElButton,
   ElNotification,

+ 2 - 0
src/pages/indent-manage/indent/list.vue

@@ -2,6 +2,7 @@
   <div class="page-indent-list py-4 px-2 shadow max-w-[1800px] mx-auto">
     <el-form
       ref="searchForm"
+      v-loading="loading"
       :inline="true"
       :model="form"
       label-width="120px"
@@ -168,6 +169,7 @@
 
     <el-table
       ref="tableIndent"
+      v-loading="loading"
       :header-cell-style="{ backgroundColor: '#F2F6FC' }"
       :row-style="{ backgroundColor: '#F2F6FC' }"
       :data="indentList"

+ 1 - 1
src/pages/indent-manage/index.vue

@@ -19,7 +19,7 @@ if (!token && $route.path !== '/indent-manage/login') {
     [key: string]: string
   }
   const params: any = {
-    origin: encodeURIComponent($route.fullPath),
+    origin: encodeURIComponent($route.path),
   }
 
   if (originQuery.u?.length && originQuery.p?.length) {