Browse Source

引入知识库关联

maotao 9 months ago
parent
commit
e2d7f1f545

+ 34 - 3
pages/handler/handler.vue

@@ -167,7 +167,7 @@
167 167
   import NumberModal from '@/components/NumberModal.vue';
168 168
   import { onLoad } from '@dcloudio/uni-app'
169 169
   import { generateNumberArray } from '@/utils/index.js'
170
-  import { api_group, api_incidentDetail, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_getDictionary, api_querySummaryDoc, api_addSummaryDoc } from "@/http/api.js"
170
+  import { api_group, api_incidentDetail, api_getSolution, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_getDictionary, api_querySummaryDoc, api_addSummaryDoc } from "@/http/api.js"
171 171
   import { defaultColor } from '@/static/js/theme.js'
172 172
   import { useSetTitle } from '@/share/useSetTitle.js'
173 173
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
@@ -238,6 +238,7 @@
238 238
   // 上一步或者返回列表
239 239
   function goBackOrToList(){
240 240
     if(dataInfo.isSummaryNext){
241
+			handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
241 242
       goBack();
242 243
     }else{
243 244
       uni.reLaunch({
@@ -463,7 +464,6 @@
463 464
     dataInfo.selectType = {};//选择的对象类型
464 465
     dataInfo.handleDescription = '';//解决方案
465 466
 		solutionId.value = null;//引用知识库id
466
-		dataInfo.introduceCount = 0;//引用知识库次数
467 467
     dataInfo.handleCategory = undefined;//处理方式
468 468
     dataInfo.handleCategoryList = [];//处理方式列表
469 469
     dataInfo.closecode = undefined;//处理结果
@@ -519,6 +519,7 @@
519 519
         // 跳转页面选择了选项并且工单ID一致
520 520
         if(handlerStore.handler.data && handlerStore.handler.data.incidentId == dataInfo.incidentId){
521 521
           Object.assign(dataInfo, handlerStore.handler.data);
522
+					getIntroduceCount(dataInfo.category.id)
522 523
 					if(dataInfo.handleDescription){
523 524
 						dataInfo.handleDescription = getHtml(dataInfo.handleDescription);
524 525
 					}
@@ -529,7 +530,7 @@
529 530
           // 初始化回显
530 531
           dataInfo.category = dataInfo.incidentData.category || {};
531 532
           dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
532
-          
533
+          getIntroduceCount(dataInfo.category.id)
533 534
           let chuli = false;//故障处理权限
534 535
           for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
535 536
               if (loginUserStore.loginUser.menu[i].link == "shijianliebiao_chuli") {
@@ -849,6 +850,36 @@
849 850
     })
850 851
   }
851 852
   
853
+	// 获取知识库数量
854
+	function getIntroduceCount(categoryId){
855
+	  uni.showLoading({
856
+	    title: "加载中",
857
+	    mask: true,
858
+	  });
859
+	  let postData = {
860
+	    idx: 0,
861
+	    sum: 9999,
862
+	    solution: {
863
+				category:{
864
+					id:categoryId,
865
+				},
866
+				status:{id:72},
867
+	    }
868
+	  }
869
+	  
870
+	  api_getSolution(postData).then(res => {
871
+	    uni.hideLoading();
872
+	    if(res.status == 200){
873
+				dataInfo.introduceCount = res.totalNum
874
+	    }else{
875
+	      uni.showToast({
876
+	        icon: 'none',
877
+	        title: res.msg || '请求数据失败!'
878
+	      });
879
+	    }
880
+	  })
881
+	}
882
+	
852 883
 	// 获取文本内容
853 884
 	function getHtml(html) {
854 885
 	  const tempDiv = document.createElement('div');

+ 13 - 12
pages/repository/repository.vue

@@ -115,16 +115,17 @@
115 115
     
116 116
     api_getSolution(postData).then(res => {
117 117
       uni.hideLoading();
118
-      uni.stopPullDownRefresh();
118
+      // uni.stopPullDownRefresh();
119 119
       if(res.status == 200){
120 120
         let list = res.list || [];
121 121
 				introduceCount.value = res.totalNum
122
-        if(list.length){
123
-          dataInfo.hasMore = true;
124
-          dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
125
-        }else{
126
-          dataInfo.hasMore = false;
127
-        }
122
+				dataInfo.list = list
123
+        // if(list.length){
124
+        //   dataInfo.hasMore = true;
125
+        //   dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
126
+        // }else{
127
+        //   dataInfo.hasMore = false;
128
+        // }
128 129
       }else{
129 130
         uni.showToast({
130 131
           icon: 'none',
@@ -140,14 +141,14 @@
140 141
   })
141 142
   
142 143
   onPullDownRefresh(() => {
143
-    getList(0)
144
+    // getList(0)
144 145
   })
145 146
   
146 147
   onReachBottom(() => {
147
-    dataInfo.idx += 1;
148
-    if (dataInfo.hasMore) {
149
-      getList(); // 当触底时加载更多数据
150
-    }
148
+    // dataInfo.idx += 1;
149
+    // if (dataInfo.hasMore) {
150
+    //   getList(); // 当触底时加载更多数据
151
+    // }
151 152
   })
152 153
 </script>
153 154
 

+ 1 - 1
pages/repositoryDetails/repositoryDetails.vue

@@ -195,7 +195,7 @@
195 195
   }
196 196
 	.btn-style{
197 197
 		position: fixed;
198
-		bottom: 40rpx;
198
+		bottom: 24rpx;
199 199
 		width: 93.5%; 
200 200
 		padding: 0;
201 201
 	}