repository.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <template>
  2. <view class="categoryOne">
  3. <view class="filter" @click="filterClick" v-if="entrance == 'view'">
  4. <text class="newicon newicon-shaixuan"></text>
  5. </view>
  6. <view class="body" v-if="dataInfo.list.length" :class="entrance == 'view' ? 'mar-t40' : ''">
  7. <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
  8. <view @click="toCategoryTwo(data)">
  9. <view class="title">{{data.title}}</view>
  10. <view class="content">
  11. <view v-html="data.content"></view>
  12. </view>
  13. <view class="sign">
  14. <view>引入次数:{{data.introduceCount || 0}}</view>
  15. <view>{{formatDate(data.createTime, 'yyyy-MM-dd HH:mm:ss')}}</view>
  16. </view>
  17. </view>
  18. <view class="btn-style">
  19. <button v-if="entrance!='view'" @click.stop="importData(data)" type="default" class="primaryButton btn">引入</button>
  20. </view>
  21. </view>
  22. <view class="back-style" @click="goBack">
  23. <text class="newicon newicon-fanhui1"></text>
  24. </view>
  25. </view>
  26. <view class="zanwu" v-else>
  27. <text class="newicon newicon-zanwu"></text>
  28. </view>
  29. <view class="back-style" @click="goBack" v-if="entrance == 'view'">
  30. <text class="newicon newicon-fanhui1"></text>
  31. </view>
  32. <view v-if="dataInfo.list.length==0 && entrance!='view'" class="foot_common_btns">
  33. <button @click="goBack" type="default" class="primaryButton btn">返回</button>
  34. </view>
  35. <repositoryFilter v-if="isFilter" @cancelEmit="cancelFilter"
  36. @confirmEmit="conformFilter" :evt="evtFilter" :viewType="entranceType"></repositoryFilter>
  37. </view>
  38. </template>
  39. <script setup>
  40. import { ref, reactive} from 'vue'
  41. import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
  42. import { api_getSolution,api_getDictionary } from "@/http/api.js"
  43. import { useSetTitle } from '@/share/useSetTitle.js'
  44. import { useGoBack } from '@/share/useGoBack.js'
  45. import { useHandlerStore } from '@/stores/handler'
  46. import repositoryFilter from '@/components/repositoryFilter.vue';
  47. import { useLoginUserStore } from '@/stores/loginUser'
  48. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  49. useSetTitle();
  50. const { formatDate } = filterFormatDate();
  51. const loginUserStore = useLoginUserStore();
  52. const handlerStore = useHandlerStore();
  53. const { goBack } = useGoBack();
  54. // 操作类型
  55. // const operateType = ref(null)
  56. // 关联故障分类的知识库数量
  57. const introduceCount = ref(0)
  58. // 入口类型
  59. const entrance = ref(null)
  60. const entranceType = ref(null)
  61. // 筛选数据
  62. const evtFilter = ref({})
  63. // 筛选状态
  64. const isFilter = ref(null)
  65. // 字典
  66. const dicData = ref(null)
  67. // 数据
  68. const dataInfo = reactive({
  69. list: [],//工单列表
  70. idx: 0,//页码
  71. hasMore: true,//是否有更多数据
  72. incidentId: undefined,//事件ID
  73. })
  74. // 跳转知识库详情
  75. function toCategoryTwo(data){
  76. uni.navigateTo({
  77. url: `/pages/repositoryDetails/repositoryDetails?incidentId=${dataInfo.incidentId}
  78. &solutionnumber=${data.solutionNumber}&editType=${entrance.value}&entranceType=${entranceType.value}`
  79. })
  80. }
  81. // 引入
  82. function importData(data){
  83. let url = null
  84. let type = handlerStore.handler.data.operateType
  85. let storeInfo = handlerStore.handler.data
  86. storeInfo.introduceCount = introduceCount.value
  87. storeInfo.handleDescription = '引用知识库解决,知识库编号' + data.solutionNumber
  88. storeInfo.solutionId = data.id
  89. storeInfo.type = 'rep'
  90. storeInfo.isSummaryNext = 1
  91. handlerStore.setHandlerData(storeInfo,'assign', 'assign')
  92. if(type=='malfunction'){ //故障处理
  93. url = '/pages/handler/handler'
  94. }else if(type=='reissue'){ //补单
  95. url = '/pages/assign/assign'
  96. }
  97. uni.navigateTo({
  98. url: url
  99. })
  100. }
  101. // 点击筛选
  102. function filterClick(){
  103. isFilter.value = true;
  104. }
  105. // 确认筛选
  106. function conformFilter(evtFilter){
  107. evtFilter.value = evtFilter;
  108. isFilter.value = false;
  109. getList(evtFilter);
  110. }
  111. // 关闭筛选
  112. function cancelFilter(){
  113. isFilter.value = false;
  114. }
  115. // 获取列表信息
  116. function getList(data){
  117. uni.showLoading({
  118. title: "加载中",
  119. mask: true,
  120. });
  121. if(dataInfo.idx === 0){
  122. dataInfo.list = [];
  123. }
  124. let categoryId = entrance.value=='view' ? data && data.category : handlerStore.handler.data.category.id
  125. let postData = {
  126. idx: 0,
  127. sum: 9999,
  128. solution: {
  129. deleteFlag:0,
  130. hosId: loginUserStore.loginUser.user.currentHospital.id,
  131. // category:{
  132. // id:'',
  133. // },
  134. categoryId:null,
  135. title:'',
  136. status:{id:dicData.value.id},
  137. }
  138. }
  139. if(entranceType.value=='repairs'){
  140. delete postData.solution.hosId
  141. }
  142. if(typeof(categoryId)=='number' || typeof(categoryId)=='string'){
  143. postData.solution.categoryId = categoryId
  144. }else{
  145. delete postData.solution.categoryId
  146. }
  147. if(data && data.title){
  148. postData.solution.title = data.title
  149. }else{
  150. delete postData.solution.title
  151. }
  152. if(loginUserStore.loginUser.user.duty){
  153. postData.solution.dutyId = loginUserStore.loginUser.user.duty.id;
  154. }else if(loginUserStore.loginUser.user.branch){
  155. postData.solution.branch = loginUserStore.loginUser.user.branch.id;
  156. }
  157. api_getSolution(postData).then(res => {
  158. uni.hideLoading();
  159. if(res.status == 200){
  160. let list = res.list || [];
  161. introduceCount.value = res.totalNum
  162. dataInfo.list = list
  163. if(entranceType.value=='repairs'){
  164. dataInfo.list = list.filter(i=>i.repairVisible==1)
  165. }else{
  166. dataInfo.list = list
  167. }
  168. }else{
  169. uni.showToast({
  170. icon: 'none',
  171. title: res.msg || '请求数据失败!'
  172. });
  173. }
  174. })
  175. }
  176. // 获取字典
  177. function getDic(){
  178. let postData = {
  179. "key": 'solution_status',
  180. "type": "list",
  181. };
  182. api_getDictionary(postData).then(res => {
  183. dicData.value = res.find(v => v.value == '3');
  184. getList();
  185. })
  186. }
  187. onLoad((option) => {
  188. dataInfo.incidentId = option.incidentId;
  189. entrance.value = option.type
  190. entranceType.value = option.entranceType
  191. getDic()
  192. })
  193. onPullDownRefresh(() => {
  194. // getList(0)
  195. })
  196. onReachBottom(() => {
  197. // dataInfo.idx += 1;
  198. // if (dataInfo.hasMore) {
  199. // getList(); // 当触底时加载更多数据
  200. // }
  201. })
  202. </script>
  203. <style lang="scss" scoped>
  204. .categoryOne{
  205. display: flex;
  206. flex-direction: column;
  207. justify-content: space-between;
  208. .filter{
  209. width: 100%;
  210. display: flex;
  211. justify-content: flex-end;
  212. align-items: center;
  213. position: fixed;
  214. height: 80rpx;
  215. background: #fff;
  216. border-bottom: 0.25rem solid #DEDEDE;
  217. .newicon-shaixuan{
  218. margin-right: 40rpx;
  219. font-size: 36rpx;
  220. color: #2C2C2C;
  221. }
  222. }
  223. .mar-t40{
  224. margin-top: 80rpx;
  225. }
  226. .head{
  227. height: 88rpx;
  228. display: flex;
  229. align-items: center;
  230. padding: 0 24rpx;
  231. position: fixed;
  232. z-index: 99;
  233. width: 100%;
  234. box-sizing: border-box;
  235. background: #fff;
  236. font-size: 26rpx;
  237. color: $uni-primary;
  238. }
  239. .body{
  240. font-size: 30rpx;
  241. .body_item{
  242. border-bottom: 8rpx solid #DEDEDE;
  243. .title{
  244. font-weight: 600;
  245. padding: 24rpx;
  246. border-bottom: 1rpx solid #DEDEDE;
  247. }
  248. .content{
  249. color: #6A6A6A;
  250. font-size: 24rpx;
  251. padding: 24rpx;
  252. border-bottom: 1rpx solid #DEDEDE;
  253. view{
  254. display: -webkit-box;
  255. overflow: hidden;
  256. -webkit-box-orient: vertical;
  257. -webkit-line-clamp: 3;
  258. text-overflow: ellipsis;
  259. white-space: initial;
  260. }
  261. }
  262. .sign{
  263. display: flex;
  264. justify-content: space-between;
  265. padding: 24rpx 24rpx 0 24rpx;
  266. font-size: 26rpx;
  267. }
  268. .btn-style{
  269. padding: 24rpx;
  270. }
  271. }
  272. }
  273. .zanwu{
  274. margin-bottom: 140rpx;
  275. margin-top: 88rpx;
  276. display: flex;
  277. justify-content: center;
  278. .newicon-zanwu{
  279. font-size: 256rpx;
  280. color: #D6D6D6;
  281. margin-top: 140rpx;
  282. }
  283. }
  284. .foot_common_btns{
  285. position: fixed;
  286. left: 0;
  287. bottom: 0;
  288. background-color: #fff;
  289. }
  290. .back-style{
  291. background: #D6D6D6;
  292. width: 100rpx;
  293. height: 100rpx;
  294. border-radius: 50%;
  295. display: flex;
  296. justify-content: center;
  297. align-items: center;
  298. position: fixed;
  299. right: 30rpx;
  300. bottom: 30rpx;
  301. text{
  302. font-size: 50rpx;
  303. color: #fff;
  304. }
  305. }
  306. }
  307. </style>