Explorar o código

先屏蔽服务单数量

Huanyi hai 1 mes
pai
achega
79adc436a3
Modificáronse 2 ficheiros con 8 adicións e 8 borrados
  1. 7 7
      src/views/merchant/storeManagement/index.vue
  2. 1 1
      vite.config.ts

+ 7 - 7
src/views/merchant/storeManagement/index.vue

@@ -61,11 +61,11 @@
             <div>{{ scope.row.siteName }}</div>
           </template>
         </el-table-column>
-        <el-table-column label="服务单" align="center" width="150">
-          <template #default="scope">
-            <div>{{ scope.row.serviceOrder }}</div>
-          </template>
-        </el-table-column>
+<!--        <el-table-column label="服务单" align="center" width="150">-->
+<!--          <template #default="scope">-->
+<!--            <div>{{ scope.row.serviceOrder }}</div>-->
+<!--          </template>-->
+<!--        </el-table-column>-->
         <el-table-column label="营业时间" align="center" width="150">
           <template #default="scope">
             <div>{{ formatTime(scope.row.startBusinessTime) }}-{{ formatTime(scope.row.endBusinessTime) }}</div>
@@ -527,7 +527,7 @@ const handleUpdate = async (row?: StoreVO) => {
     if (siteData) {
       const regionId = siteData.parentId;
       form.value.regionId = String(regionId);
-      
+
       const path: any[] = [];
       let currentId = regionId;
       while (currentId && String(currentId) !== '0') {
@@ -540,7 +540,7 @@ const handleUpdate = async (row?: StoreVO) => {
         }
       }
       regionValue.value = path;
-      
+
       siteOptions.value = areaStationList.value
         .filter((item: any) => String(item.type) === '2' && String(item.parentId) === String(regionId))
         .map((item: any) => ({

+ 1 - 1
vite.config.ts

@@ -24,7 +24,7 @@ export default defineConfig(({ mode, command }) => {
       // open: true,
       proxy: {
         [env.VITE_APP_BASE_API]: {
-          target: 'http://192.168.1.118:8080',
+          target: 'http://127.0.0.1:8080',
           changeOrigin: true,
           ws: true,
           rewrite: (path) => path.replace(new RegExp('^' + env.VITE_APP_BASE_API), '')