newRepository.vue 8.4 KB

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