소스 검색

代码更新

qymljy 2 년 전
부모
커밋
7b26f4dc83
3개의 변경된 파일23개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      src/Form/projectTask/add.vue
  2. 2 2
      src/HDrpManagement/projectTask/index.vue
  3. 20 1
      src/HManagement/clueManage/clue_private/modules/detail.vue

+ 1 - 1
src/Form/projectTask/add.vue

@@ -119,7 +119,7 @@
       </div>
       <div class="fixed__btn__panel">
         <el-button size="small" @click="onClose" class="normal-btn-width">取 消</el-button>
-        <el-button size="small" type="primary" @click="onSubmit" class="normal-btn-width">确 定</el-button>
+        <el-button size="small" type="primary" @click="onSubmit" class="normal-btn-width" :disabled="form.projtaskmag_options.length === 0">确 定</el-button>
       </div>
     </el-drawer>
   </div>

+ 2 - 2
src/HDrpManagement/projectTask/index.vue

@@ -23,7 +23,7 @@
           </div>
           <div v-else>
             <span v-for="item in scope.data.column.data.partiestype" :key="item.index">
-            {{item?item:'--'}},
+            {{item?item + ',':'--'}}
           </span>
           </div>
         </div>
@@ -33,7 +33,7 @@
           </div>
           <div v-else>
             <span v-for="item in scope.data.column.data.stage" :key="item.index">
-            {{item?item:'--'}},
+            {{item?item + ',':'--'}}
           </span>
           </div>
 

+ 20 - 1
src/HManagement/clueManage/clue_private/modules/detail.vue

@@ -222,7 +222,7 @@ export default {
             value:this.mainData.enterprisename
           },
           {
-            label:'状态',
+            label:'跟进状态',
             value:this.mainData.status,
             style:function () {
               let style = {}
@@ -249,6 +249,25 @@ export default {
 
             }
           },
+          {
+            label:'分配状态',
+            value:this.mainData.allocationstatus,
+            style:function () {
+              let style = {}
+              switch (that.mainData.allocationstatus) {
+                case '已分配':
+                  style = {color:'#333333'}
+                  break;
+                case '待分配':
+                  style = {color:'#3874f6'}
+                  break;
+                default:
+                  break;
+              }
+              return style
+            }
+
+          },
         ],
         systemInfo: [
           {label:'创建人',value:this.mainData.createBy},