zhiyuan007 1 year ago
parent
commit
a006748a83

+ 2 - 2
src/service/config.js

@@ -1,6 +1,6 @@
 //  export const baseUrl = process.env.NODE_ENV ==='production'?proBaseUrl:devBaseUrl
-export const baseUrl = 'http://10.90.7.241:9443/data-business-prod/'
-//export const baseUrl = 'http://localhost:9250'
+//export const baseUrl = 'http://10.90.7.241:9443/data-business-prod/'
+export const baseUrl = 'http://localhost:9250'
 // export const baseUrl = 'http://10.81.66.9:9250'
 export const baseUrl_Address = 'http://10.81.66.9:9250'
 // export const baseUrl_Address = 'http://10.81.66.9:9252'

+ 1 - 1
src/views/main/c-views/combined-rewards-and-punishments/combined-rewards-and-punishments-case-information/CombinedRewardAndPunishmentsMeasureManage.vue

@@ -8,7 +8,7 @@
      }
    }" :table-header="combinedRewardAndPunishmentsMeasureManageHeader" :get-table-list="getTableData" :filter-form="combinedRewardAndPunishmentsMeasureManage">
       <template #plusBtn>
-        <el-button  type="primary" :icon="Search" @click="openDialog('add','2')">对应关系</el-button>-->
+        <el-button  type="primary" :icon="Search" @click="openDialog('add','2')">对应关系</el-button>
       </template>
       <template #operation="{data}">
         <el-button  type="info" @click="openDialog('detail','1',data)">查看</el-button>

+ 1 - 1
src/views/main/c-views/combined-rewards-and-punishments/rewards-and-punishments-measure-manage/RewardsAndPunishmentsMeasureManage.vue

@@ -8,7 +8,7 @@
      }
    }" :table-header="rewardsAndPunishmentsMeasureManageHeader" :get-table-list="getTableData" :filter-form="rewardsAndPunishmentsMeasureManage">
       <template v-if="store.isManager" #plusBtn>
-        <el-button  type="primary" :icon="Plus" @click="openDialog('add')">新增</el-button>-->
+        <el-button  type="primary" :icon="Plus" @click="openDialog('add')">新增</el-button>
       </template>
       <template #operation="{data}">
         <el-button  type="info" @click="openDialog('detail',data)">查看</el-button>

+ 2 - 2
src/views/main/c-views/policy-and-regulation-manage/memorandum-manage/MemorandumManage.vue

@@ -8,7 +8,7 @@
      }
    }" :table-header="MemorandumManageHeader" :get-table-list="getTableData" :filter-form="MemorandumManage">
       <template v-if="store.isManager"  #plusBtn>
-        <el-button  type="primary" :icon="Plus" @click="openDialog('add')">新增</el-button>-->
+        <el-button  type="primary" :icon="Plus" @click="openDialog('add')">新增</el-button>
       </template>
       <template #operation="{data}">
         <el-button  type="info" @click="getDataFile(data)">查看</el-button>
@@ -76,7 +76,7 @@ export default {
       }
       axios({
         method: "post",
-        url: '/api/XyxxApi/xyptFileDocument', // 请求地址
+        url: 'http://10.90.7.241:9443/data-business-prod/XyxxApi/xyptFileDocument', // 请求地址
         data: obj, // 参数
         responseType: "blob", // 表明返回服务器返回的数据类型
       }).then((res) => {

+ 2 - 2
src/views/main/c-views/policy-and-regulation-manage/policy-regulation-information/PolicyRegulationInformation.vue

@@ -8,7 +8,7 @@
      }
    }" :table-header="policyRegulationInformationHeader" :get-table-list="getTableData" :filter-form="policyRegulationInformation">
       <template v-if="store.isManager" #plusBtn>
-        <el-button   type="primary" :icon="Plus" @click="openDialog('add')">新增</el-button>-->
+        <el-button   type="primary" :icon="Plus" @click="openDialog('add')">新增</el-button>
       </template>
       <template #operation="{data}">
         <el-button  type="info" @click="getDataFile(data)">查看</el-button>
@@ -101,7 +101,7 @@ export default {
       }
       axios({
         method: "post",
-        url: '/api/XyxxApi/xyptFileDocument', // 请求地址
+        url: 'http://10.90.7.241:9443/data-business-prod/XyxxApi/xyptFileDocument', // 请求地址
         data: obj, // 参数
         responseType: "blob", // 表明返回服务器返回的数据类型
       }).then((res) => {

+ 1 - 1
src/views/main/c-views/system-manage/unit-manage/UnitManageHome.vue

@@ -8,7 +8,7 @@
      }
    }" :table-header="unitManageHomeHeader" :get-table-list="getTableData" :filter-form="unitManageHome">
       <template #plusBtn>
-        <el-button  type="primary" :icon="Plus" @click="$emit('changeOperation','add')">新增</el-button>-->
+        <el-button  type="primary" :icon="Plus" @click="$emit('changeOperation','add')">新增</el-button>
       </template>
       <template #operation="{data}">
         <el-button  type="info" @click="$emit('changeOperation','detail',data)">查看</el-button>

+ 0 - 10
vite.config.js

@@ -23,14 +23,4 @@ export default defineConfig({
       '@': fileURLToPath(new URL('./src', import.meta.url))
     }
   },
-
-  server: {
-    proxy: {
-      "/api": {
-        target: "http://10.90.7.241:9443/data-business-prod", // 所要代理的目标地址
-        changeOrigin: true,  //允许跨域
-        rewrite: (path) => path.replace(/^\/api/, ""),  // 重写传过来的path路径
-      },
-    },
-  }
 })