repositoryDetails.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="box">
  3. <view class="head">{{dataInfo.data.title}}</view>
  4. <view class="sign">
  5. <text>引入次数:{{dataInfo.data.introduceCount?dataInfo.data.introduceCount: 0}}</text>
  6. <text>版本号:{{dataInfo.data.versionNumber}}</text>
  7. <text>{{formatDate(dataInfo.data.createTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
  8. </view>
  9. <!-- <view class="theme" v-if="dataInfo.data.type">{{dataInfo.data.type.name}}</view> -->
  10. <view class="content" v-html="dataInfo.data.content"></view>
  11. <view class="file-list" v-for="item in dataInfo.fileData" :key="item">
  12. <view class="file-item" @click="downloadFile(item)">{{item.name}}</view>
  13. <text class="newicon newicon-xiazai" @click="downloadFile(item)"></text>
  14. </view>
  15. <view class="foot_common_btns btn-style">
  16. <button @click="goBack" type="default" class="cancelButton btn">返回</button>
  17. <button v-if="editType != 'view'" @click="importData" type="default" class="primaryButton btn">引入</button>
  18. </view>
  19. <uni-popup ref="popup" type="center">
  20. <img :src="fileUrl" alt="" class="view-img">
  21. </uni-popup>
  22. </view>
  23. </template>
  24. <script setup>
  25. import { ref, reactive} from 'vue'
  26. import { onLoad } from '@dcloudio/uni-app'
  27. import { api_getSolution, api_listAttachment} from "@/http/api.js"
  28. import { useSetTitle } from '@/share/useSetTitle.js'
  29. import { useGoBack } from '@/share/useGoBack.js'
  30. import { useHandlerStore } from '@/stores/handler'
  31. import { useLoginUserStore } from '@/stores/loginUser'
  32. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  33. useSetTitle();
  34. const { formatDate } = filterFormatDate();
  35. const handlerStore = useHandlerStore();
  36. const loginUserStore = useLoginUserStore();
  37. const { goBack } = useGoBack();
  38. // 故障类型
  39. const mutiCategory = ref(null)
  40. // 关联故障分类的知识库数量
  41. const introduceCount = ref(0)
  42. // tab类型
  43. const tabType = ref('null')
  44. // tab类型
  45. const editType = ref(null)
  46. // 附件图片预览
  47. const fileUrl = ref('null')
  48. // Popup状态
  49. const popup = ref(null)
  50. const entranceType = ref(null)
  51. // 数据
  52. const dataInfo = reactive({
  53. data: [],//数据
  54. incidentId: undefined,//事件ID
  55. solutionnumber:undefined,
  56. fileData:[] //附件数据
  57. })
  58. // 下载附件
  59. function downloadFile(item){
  60. console.log(666,item)
  61. let url = location.origin + "/file" + item.relativeFilePath
  62. fileUrl.value = url
  63. let name = item.name //文件下载后的名称(带后缀)
  64. if(item.suffix=='png' || item.suffix=='jpg' || item.suffix=='gif'){
  65. popup.value.open()
  66. }else{
  67. var oA = document.createElement("a");
  68. oA.download = name;
  69. oA.href = url
  70. document.body.appendChild(oA);
  71. oA.click();
  72. oA.remove();
  73. }
  74. }
  75. // 引入
  76. function importData(){
  77. let url = null
  78. let type = handlerStore.handler.data.operateType
  79. let storeInfo = handlerStore.handler.data
  80. storeInfo.introduceCount = introduceCount.value
  81. storeInfo.handleDescription = '引用知识库解决,知识库编号' + dataInfo.data.solutionNumber
  82. storeInfo.solutionId = dataInfo.data.id
  83. storeInfo.type = 'rep'
  84. storeInfo.isSummaryNext = 1
  85. handlerStore.setHandlerData(storeInfo,'assign', 'assign')
  86. if(type=='malfunction'){ //故障处理
  87. url = '/pages/handler/handler'
  88. }else if(type=='reissue'){ //补单
  89. url = '/pages/assign/assign'
  90. }
  91. uni.navigateTo({
  92. url: url
  93. })
  94. }
  95. // 获取附件
  96. function getHandlerImgs(type,id){
  97. uni.showLoading({
  98. title: "加载中",
  99. mask: true,
  100. });
  101. api_listAttachment(type, id).then(res => {
  102. uni.hideLoading();
  103. dataInfo.fileData = res.data
  104. })
  105. }
  106. // 获取列表信息
  107. function getList(){
  108. uni.showLoading({
  109. title: "加载中",
  110. mask: true,
  111. });
  112. let postData = {
  113. idx: 0,
  114. sum: 999,
  115. solution: {
  116. deleteFlag:0,
  117. hosId: loginUserStore.loginUser.user.currentHospital.id,
  118. operationType: "lookOver",
  119. solutionNumber: dataInfo.solutionnumber,
  120. }
  121. }
  122. if(entranceType.value=='repairs'){
  123. delete postData.solution.hosId
  124. }
  125. api_getSolution(postData).then(res => {
  126. uni.hideLoading();
  127. if(res.status == 200){
  128. let list = res.list || [];
  129. introduceCount.value = res.totalNum
  130. dataInfo.data = list[0]
  131. // mutiCategory.value = list[0].category.mutiCategory
  132. getHandlerImgs('solution',list[0].id)
  133. }else{
  134. uni.showToast({
  135. icon: 'none',
  136. title: res.msg || '请求数据失败!'
  137. });
  138. }
  139. })
  140. }
  141. onLoad((option) => {
  142. dataInfo.incidentId = option.incidentId;
  143. dataInfo.solutionnumber = option.solutionnumber ;
  144. if(option.tabType){
  145. tabType.value = option.tabType;
  146. }
  147. if(option.editType){
  148. editType.value = option.editType
  149. }
  150. if(option.entranceType){
  151. entranceType.value = option.entranceType
  152. }
  153. getList();
  154. })
  155. </script>
  156. <style lang="scss" scoped>
  157. .box{
  158. padding: 24rpx;
  159. .head{
  160. color: #000;
  161. font-size: 32rpx;
  162. font-weight: 600;
  163. }
  164. .sign{
  165. color: #686868;
  166. font-size: 24rpx;
  167. padding: 24rpx 0;
  168. text{
  169. margin-right: 40rpx;
  170. }
  171. }
  172. .theme{
  173. font-size: 26rpx;
  174. color: #49b856;
  175. padding: 0 0 24rpx 0;
  176. }
  177. .content{
  178. padding-bottom: 24rpx;
  179. border-bottom: 1px solid #eee;
  180. // overflow-y: scroll;
  181. }
  182. .file-list{
  183. display: flex;
  184. margin-bottom: 10rpx;
  185. margin-top: 24rpx;
  186. .file-item{
  187. color: #00aaff;
  188. text-decoration: underline;
  189. }
  190. text{
  191. margin-left: 15rpx;
  192. margin-top: 8rpx;
  193. }
  194. }
  195. .btn-style{
  196. position: fixed;
  197. left:0;
  198. bottom: 0;
  199. }
  200. .view-img{
  201. width: 100%;
  202. height: 100%;
  203. }
  204. }
  205. </style>