scorpio 1 rok temu
rodzic
commit
20376bcc18

+ 1 - 5
src/views/invest/components/years.vue

@@ -29,11 +29,7 @@
               }}</span>
               <el-icon
                 :size="15"
-                v-if="
-                  (i.index === 0 && user.info.viewStage === 1) ||
-                  (i.index === 0 &&
-                    permissions.vaildPermission('edit_plan_amount'))
-                "
+                v-if="i.index === 0"
                 class="ml-10 pointer"
                 @click="edit(i)"
               >

+ 1 - 1
src/views/project/index.vue

@@ -64,7 +64,7 @@
       <!--      其他信息-->
       <info7 v-if="[1, 2, 4, 5].includes(currentStage)" :info="detail" />
       <!--      任务列表-->
-      <info8 v-if="user.info.type === 4" :project-id="projectId" />
+      <!--      <info8 v-if="[1, 2].includes(currentStage)" :project-id="projectId" />-->
     </div>
     <!--    buttom-->
     <div

+ 2 - 2
vite.config.js

@@ -57,9 +57,9 @@ export default defineConfig({
     proxy: {
       '/api': {
         // 正式环境地址
-        target: 'https://dev.wutongresearch.club/api',
+        // target: 'https://dev.wutongresearch.club/api',
         // target: 'https://prod.wutongshucloud.com/api',
-        // target: 'http://192.168.31.181:8110',
+        target: 'http://192.168.31.181:8110',
         changeOrigin: true,
         rewrite: path => path.replace(/^\/api/, '')
       }