repositoryDetails.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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.visionNumber}}</text>
  7. <text>{{dataInfo.data.createtime}}</text>
  8. </view>
  9. <view class="theme">{{mutiCategory}}</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 @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. useSetTitle();
  32. const handlerStore = useHandlerStore();
  33. const { goBack } = useGoBack();
  34. // 故障类型
  35. const mutiCategory = ref(null)
  36. // 关联故障分类的知识库数量
  37. const introduceCount = ref(0)
  38. // tab类型
  39. const tabType = ref('null')
  40. // 附件图片预览
  41. const fileUrl = ref('null')
  42. // Popup状态
  43. const popup = ref(null)
  44. // 数据
  45. const dataInfo = reactive({
  46. data: [],//数据
  47. incidentId: undefined,//事件ID
  48. solutionnumber:undefined,
  49. fileData:[] //附件数据
  50. })
  51. // 下载附件
  52. function downloadFile(item){
  53. console.log(666,item)
  54. let url = location.origin + "/file" + item.relativeFilePath
  55. fileUrl.value = url
  56. let name = item.name //文件下载后的名称(带后缀)
  57. if(item.suffix=='png' || item.suffix=='jpg' || item.suffix=='gif'){
  58. popup.value.open()
  59. }else{
  60. var oA = document.createElement("a");
  61. oA.download = name;
  62. oA.href = url
  63. document.body.appendChild(oA);
  64. oA.click();
  65. oA.remove();
  66. }
  67. }
  68. // 引入
  69. function importData(){
  70. let url = null
  71. let type = handlerStore.handler.data.operateType
  72. let storeInfo = handlerStore.handler.data
  73. storeInfo.introduceCount = introduceCount.value
  74. storeInfo.handleDescription = dataInfo.data.content
  75. storeInfo.solutionId = dataInfo.data.id
  76. storeInfo.type = 'rep'
  77. storeInfo.isSummaryNext = 1
  78. handlerStore.setHandlerData(storeInfo,'assign', 'assign')
  79. if(type=='malfunction'){ //故障处理
  80. url = '/pages/handler/handler'
  81. }else if(type=='reissue'){ //补单
  82. url = '/pages/assign/assign'
  83. }
  84. uni.navigateTo({
  85. url: url
  86. })
  87. }
  88. // 获取附件
  89. function getHandlerImgs(type,id){
  90. uni.showLoading({
  91. title: "加载中",
  92. mask: true,
  93. });
  94. api_listAttachment(type, id).then(res => {
  95. uni.hideLoading();
  96. dataInfo.fileData = res.data
  97. })
  98. }
  99. // 获取列表信息
  100. function getList(){
  101. uni.showLoading({
  102. title: "加载中",
  103. mask: true,
  104. });
  105. let postData = {
  106. idx: dataInfo.idx,
  107. sum: 20,
  108. solution: {
  109. solutionnumber: dataInfo.solutionnumber,
  110. }
  111. }
  112. api_getSolution(postData).then(res => {
  113. uni.hideLoading();
  114. if(res.status == 200){
  115. let list = res.list || [];
  116. introduceCount.value = res.totalNum
  117. dataInfo.data = list[0]
  118. mutiCategory.value = list[0].category.mutiCategory
  119. getHandlerImgs('knowledge',list[0].id)
  120. }else{
  121. uni.showToast({
  122. icon: 'none',
  123. title: res.msg || '请求数据失败!'
  124. });
  125. }
  126. })
  127. }
  128. onLoad((option) => {
  129. dataInfo.incidentId = option.incidentId;
  130. dataInfo.solutionnumber = option.solutionnumber ;
  131. if(option.tabType){
  132. tabType.value = option.tabType;
  133. }
  134. getList();
  135. })
  136. </script>
  137. <style lang="scss" scoped>
  138. .box{
  139. padding: 24rpx;
  140. .head{
  141. color: #000;
  142. font-size: 32rpx;
  143. font-weight: 600;
  144. }
  145. .sign{
  146. color: #686868;
  147. font-size: 24rpx;
  148. padding: 24rpx 0;
  149. text{
  150. margin-right: 40rpx;
  151. }
  152. }
  153. .theme{
  154. font-size: 26rpx;
  155. color: #49b856;
  156. padding: 0 0 24rpx 0;
  157. }
  158. .content{
  159. padding-bottom: 24rpx;
  160. border-bottom: 1px solid #eee;
  161. // overflow-y: scroll;
  162. }
  163. .file-list{
  164. display: flex;
  165. margin-bottom: 10rpx;
  166. margin-top: 24rpx;
  167. .file-item{
  168. color: #00aaff;
  169. text-decoration: underline;
  170. }
  171. text{
  172. margin-left: 15rpx;
  173. margin-top: 8rpx;
  174. }
  175. }
  176. .btn-style{
  177. position: fixed;
  178. bottom: 24rpx;
  179. width: 93.5%;
  180. padding: 0;
  181. }
  182. .view-img{
  183. width: 100%;
  184. height: 100%;
  185. }
  186. }
  187. </style>