repository.vue 8.3 KB

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