chenjj 2 days ago
parent
commit
9ee8266a04

+ 1 - 1
src/views/finance/settlement/useData.js

@@ -65,7 +65,7 @@ export default ({ proxy, jlzj_area_type }) => {
               
             }
             const res = await applyOrderSettlement(parmas);
-            if (up_res.code === 200) {
+            if (res.code === 200) {
                 proxy.$modal.msgSuccess("审核成功");
                 resolve()
             }

+ 1 - 1
src/views/finance/withdrawal/useData.js

@@ -231,7 +231,7 @@ export default ({ proxy, jlzj_area_type }) => {
         getCode,
         tabList: [
             {
-                title: '每日流审核',
+                title: '每日流审核',
                 name: '1'
             },
             {

+ 1 - 1
src/views/order/examine/index.vue

@@ -238,7 +238,7 @@ const submitForm = async (parmas) => {
                 rejectionReason: parmas.rejectionReason,
                 refundAmount: parmas.refundAmount
             })
-            if (up_res.code === 200) {
+            if (res.code === 200) {
                 proxy.$modal.msgSuccess("审核成功");
                 return;
             }

+ 6 - 6
src/views/staff/volunteer/manage/index.vue

@@ -40,16 +40,16 @@ const listPageData = reactive({
             prop: 'businessManagementId',
             type: 'cascader',
             isSearch: true,
-            tableProp: 'projectName',
+            tableProp: 'businessTierName',
             options: options,
             props: { label: 'businessName', value: 'id', checkStrictly: true },
 
 
         },
-        {
-            label: '项目类别',
-            prop: 'projectTypeName',
-        },
+        // {
+        //     label: '项目类别',
+        //     prop: 'projectTypeName',
+        // },
         // {
         //     label: '科目',
         //     prop: 'projectTypeName',
@@ -294,7 +294,7 @@ const submitForm = async (parmas) => {
                 appStatus: parmas.appStatus,
                 rejectReason: parmas.rejectReason
             })
-            if (up_res.code === 200) {
+            if (res.code === 200) {
                 proxy.$modal.msgSuccess("审核成功");
                 return;
             }

+ 2 - 2
vite.config.js

@@ -37,10 +37,10 @@ export default defineConfig(({ mode, command }) => {
         },
         // https://cn.vitejs.dev/config/#server-proxy
         '/dev-api': {
-          // target: 'http://192.168.100.95:9527',
+          target: 'http://192.168.100.95:9527',
           // target: 'https://zybooks.tech/prod-api', 
           // target: 'http://192.168.100.101:9527',
-          target: 'http://192.168.100.122:9527',
+          // target: 'http://192.168.100.122:9527',
           changeOrigin: true,
           rewrite: (p) => p.replace(/^\/dev-api/, '')
         },