Browse Source

引入知识库关联

maotao 9 months ago
parent
commit
e2d7f1f545

+ 34 - 3
pages/handler/handler.vue

@@ -167,7 +167,7 @@
167
   import NumberModal from '@/components/NumberModal.vue';
167
   import NumberModal from '@/components/NumberModal.vue';
168
   import { onLoad } from '@dcloudio/uni-app'
168
   import { onLoad } from '@dcloudio/uni-app'
169
   import { generateNumberArray } from '@/utils/index.js'
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
   import { defaultColor } from '@/static/js/theme.js'
171
   import { defaultColor } from '@/static/js/theme.js'
172
   import { useSetTitle } from '@/share/useSetTitle.js'
172
   import { useSetTitle } from '@/share/useSetTitle.js'
173
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
173
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
@@ -238,6 +238,7 @@
238
   // 上一步或者返回列表
238
   // 上一步或者返回列表
239
   function goBackOrToList(){
239
   function goBackOrToList(){
240
     if(dataInfo.isSummaryNext){
240
     if(dataInfo.isSummaryNext){
241
+			handlerStore.setHandlerData(dataInfo, 'assign', 'assign');
241
       goBack();
242
       goBack();
242
     }else{
243
     }else{
243
       uni.reLaunch({
244
       uni.reLaunch({
@@ -463,7 +464,6 @@
463
     dataInfo.selectType = {};//选择的对象类型
464
     dataInfo.selectType = {};//选择的对象类型
464
     dataInfo.handleDescription = '';//解决方案
465
     dataInfo.handleDescription = '';//解决方案
465
 		solutionId.value = null;//引用知识库id
466
 		solutionId.value = null;//引用知识库id
466
-		dataInfo.introduceCount = 0;//引用知识库次数
467
     dataInfo.handleCategory = undefined;//处理方式
467
     dataInfo.handleCategory = undefined;//处理方式
468
     dataInfo.handleCategoryList = [];//处理方式列表
468
     dataInfo.handleCategoryList = [];//处理方式列表
469
     dataInfo.closecode = undefined;//处理结果
469
     dataInfo.closecode = undefined;//处理结果
@@ -519,6 +519,7 @@
519
         // 跳转页面选择了选项并且工单ID一致
519
         // 跳转页面选择了选项并且工单ID一致
520
         if(handlerStore.handler.data && handlerStore.handler.data.incidentId == dataInfo.incidentId){
520
         if(handlerStore.handler.data && handlerStore.handler.data.incidentId == dataInfo.incidentId){
521
           Object.assign(dataInfo, handlerStore.handler.data);
521
           Object.assign(dataInfo, handlerStore.handler.data);
522
+					getIntroduceCount(dataInfo.category.id)
522
 					if(dataInfo.handleDescription){
523
 					if(dataInfo.handleDescription){
523
 						dataInfo.handleDescription = getHtml(dataInfo.handleDescription);
524
 						dataInfo.handleDescription = getHtml(dataInfo.handleDescription);
524
 					}
525
 					}
@@ -529,7 +530,7 @@
529
           // 初始化回显
530
           // 初始化回显
530
           dataInfo.category = dataInfo.incidentData.category || {};
531
           dataInfo.category = dataInfo.incidentData.category || {};
531
           dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
532
           dataInfo.synergetic = dataInfo.incidentData.synergetic || [];
532
-          
533
+          getIntroduceCount(dataInfo.category.id)
533
           let chuli = false;//故障处理权限
534
           let chuli = false;//故障处理权限
534
           for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
535
           for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
535
               if (loginUserStore.loginUser.menu[i].link == "shijianliebiao_chuli") {
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
 	function getHtml(html) {
884
 	function getHtml(html) {
854
 	  const tempDiv = document.createElement('div');
885
 	  const tempDiv = document.createElement('div');

+ 13 - 12
pages/repository/repository.vue

@@ -115,16 +115,17 @@
115
     
115
     
116
     api_getSolution(postData).then(res => {
116
     api_getSolution(postData).then(res => {
117
       uni.hideLoading();
117
       uni.hideLoading();
118
-      uni.stopPullDownRefresh();
118
+      // uni.stopPullDownRefresh();
119
       if(res.status == 200){
119
       if(res.status == 200){
120
         let list = res.list || [];
120
         let list = res.list || [];
121
 				introduceCount.value = res.totalNum
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
       }else{
129
       }else{
129
         uni.showToast({
130
         uni.showToast({
130
           icon: 'none',
131
           icon: 'none',
@@ -140,14 +141,14 @@
140
   })
141
   })
141
   
142
   
142
   onPullDownRefresh(() => {
143
   onPullDownRefresh(() => {
143
-    getList(0)
144
+    // getList(0)
144
   })
145
   })
145
   
146
   
146
   onReachBottom(() => {
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
 </script>
153
 </script>
153
 
154
 

+ 1 - 1
pages/repositoryDetails/repositoryDetails.vue

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