2 Commits daa6163939 ... 9181a847e5

Author SHA1 Message Date
  hxy 9181a847e5 11482-【CR】【投资系统】增加审批流程-项目机会申请-申请和暂存页面的渠道可检索 3 weeks ago
  hxy f00454e593 11482-【CR】【投资系统】增加审批流程-可申请的项目信息查询bug 3 weeks ago

+ 1 - 1
ruoyi-ui/src/layout/components/Settings/index.vue

@@ -38,7 +38,7 @@
         <el-divider/>
 
         <h3 class="drawer-title">系统布局配置</h3>
-      
+
         <div class="drawer-item">
           <span>开启 TopNav</span>
           <el-switch v-model="topNav" class="drawer-switch" />

+ 2 - 2
ruoyi-ui/src/views/home.vue

@@ -23,7 +23,7 @@ export default {
       //更改侧边栏参数及title
       // this.$store.commit('SET_SYSTEMTYPE', type)
       this.$store.commit('SET_SYSTEMTITLE', title)
-      //生成侧边栏   
+      //生成侧边栏
       store.dispatch("GenerateRoutes").then((accessRoutes) => {
         // 根据roles权限生成可访问的路由表
         router.addRoutes(accessRoutes); // 动态添加可访问路由表
@@ -32,4 +32,4 @@ export default {
     },
   },
 };
-</script>
+</script>

+ 3 - 1
ruoyi-ui/src/views/project/approval/projectItem.vue

@@ -163,6 +163,7 @@ export default {
       single: true,
       // 非多个禁用
       multiple: true,
+      isWatch:false,
     };
   },
    computed: {
@@ -179,6 +180,7 @@ export default {
       this.projectItemTotal=0;
       // 重新请求接口获取最新数据
       this.getList(isWatch);
+      this.isWatch=isWatch;
     },
     clickRow(row) {
       this.$refs.dataTable.toggleRowSelection(row);
@@ -243,7 +245,7 @@ export default {
     /** 搜索按钮操作 */
     handleQuery() {
       this.projectQueryParams.pageNum = 1;
-      this.getList();
+      this.getList(this.isWatch);
     },
     /** 重置按钮操作 */
     resetQuery() {

+ 3 - 1
ruoyi-ui/src/views/project/decision/projectItem.vue

@@ -163,6 +163,7 @@ export default {
       single: true,
       // 非多个禁用
       multiple: true,
+      isWatch:false,
     };
   },
    computed: {
@@ -179,6 +180,7 @@ export default {
       this.projectItemTotal=0;
       // 重新请求接口获取最新数据
       this.getList(isWatch);
+      this.isWatch=isWatch;
     },
     clickRow(row) {
       this.$refs.dataTable.toggleRowSelection(row);
@@ -243,7 +245,7 @@ export default {
     /** 搜索按钮操作 */
     handleQuery() {
       this.projectQueryParams.pageNum = 1;
-      this.getList();
+      this.getList(this.isWatch);
     },
     /** 重置按钮操作 */
     resetQuery() {

+ 1 - 0
ruoyi-ui/src/views/project/investOpp/apply.vue

@@ -24,6 +24,7 @@
           v-model="form.tProjectChannel.channelName"
           placeholder="请选择"
           clearable
+          filterable
           @change="handleChannel"
         >
           <el-option

+ 1 - 0
ruoyi-ui/src/views/project/investOpp/edit.vue

@@ -24,6 +24,7 @@
           v-model="form.tProjectChannel.channelName"
           placeholder="请选择"
           clearable
+          filterable
           @change="handleChannel"
         >
           <el-option

+ 3 - 1
ruoyi-ui/src/views/project/investigate/projectItem.vue

@@ -163,6 +163,7 @@ export default {
       single: true,
       // 非多个禁用
       multiple: true,
+      isWatch:false,
     };
   },
    computed: {
@@ -179,6 +180,7 @@ export default {
       this.projectItemTotal=0;
       // 重新请求接口获取最新数据
       this.getList(isWatch);
+      this.isWatch=isWatch;
     },
     clickRow(row) {
       this.$refs.dataTable.toggleRowSelection(row);
@@ -243,7 +245,7 @@ export default {
     /** 搜索按钮操作 */
     handleQuery() {
       this.projectQueryParams.pageNum = 1;
-      this.getList();
+      this.getList(this.isWatch);
     },
     /** 重置按钮操作 */
     resetQuery() {

+ 1 - 1
ruoyi-ui/src/views/project/meetingList.vue

@@ -1416,7 +1416,7 @@ export default {
         this.otherFileListTJApply = [];
       }
     },
-    // 获取公司信息
+    // 获取项目信息
     getProjectInfo(info) {
       if (info.length > 0) {
         this.form.projectPoolId = info[0].id;

+ 3 - 1
ruoyi-ui/src/views/project/termination/projectItem.vue

@@ -187,6 +187,7 @@ export default {
       single: true,
       // 非多个禁用
       multiple: true,
+      isWatch:false,
     };
   },
    computed: {
@@ -203,6 +204,7 @@ export default {
       this.projectItemTotal=0;
       // 重新请求接口获取最新数据
       this.getList(isWatch);
+      this.isWatch=isWatch;
     },
     clickRow(row) {
       this.$refs.dataTable.toggleRowSelection(row);
@@ -267,7 +269,7 @@ export default {
     /** 搜索按钮操作 */
     handleQuery() {
       this.projectQueryParams.pageNum = 1;
-      this.getList();
+      this.getList(this.isWatch);
     },
     /** 重置按钮操作 */
     resetQuery() {