|
@@ -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');
|