index.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <div>
  3. <el-tabs v-model="activeName">
  4. <el-tab-pane label="详细信息" name="详细信息">
  5. <el-descriptions border>
  6. <el-descriptions-item label="活动名称">{{ taskList.acname }}</el-descriptions-item>
  7. <el-descriptions-item label="任务启动时间">
  8. {{ taskList.beginTime ? taskList.beginTime.substr(0, 10) : '无' }}
  9. </el-descriptions-item>
  10. <el-descriptions-item label="业务备注">{{ taskList.fromKeyword }}</el-descriptions-item>
  11. <el-descriptions-item label="流程名称">{{ taskList.proname }}</el-descriptions-item>
  12. <el-descriptions-item label="审核状态">
  13. <el-tag v-if="taskList.status == 1" type="success">同意</el-tag>
  14. <el-tag v-else-if="taskList.status == 2" type="danger">驳回</el-tag>
  15. <el-tag v-else-if="taskList.status == 3" type="info">退回</el-tag>
  16. <el-tag v-else-if="taskList.status == 0">待审核</el-tag>
  17. </el-descriptions-item>
  18. <el-descriptions-item label="审核意见">{{ taskList.comments ? taskList.comments : '无' }}</el-descriptions-item>
  19. </el-descriptions>
  20. <el-form ref="form" :model="taskList" label-width="auto" style="margin-top: 20px">
  21. <el-row>
  22. <el-col :span="12">
  23. <el-col :span="12">
  24. <el-form-item label="姓名:">{{ taskList.formobj.nickName }}</el-form-item>
  25. </el-col>
  26. </el-col>
  27. <el-col :span="12">
  28. <el-form-item label="头像:">
  29. <el-image
  30. :fit="'contain'"
  31. style="
  32. width: 100px;
  33. margin-top: 10px;
  34. border-radius: 5px;
  35. margin-bottom: -15px;"
  36. :z-index="50000"
  37. :src="baseUrl + taskList.formobj.userAvatar"
  38. @click="showImagePreview(taskList.formobj.userAvatar)"
  39. ></el-image>
  40. </el-form-item>
  41. </el-col>
  42. </el-row>
  43. <el-row>
  44. <el-col :span="12">
  45. <el-form-item label="类型:">
  46. <span v-if="taskList.formobj.type == 2">专家</span>
  47. <span v-else>其它</span>
  48. </el-form-item>
  49. </el-col>
  50. <el-col :span="12">
  51. <el-form-item label="民族:">{{ taskList.formobj.nation }}</el-form-item>
  52. </el-col>
  53. </el-row>
  54. <el-row>
  55. <el-col :span="12">
  56. <el-form-item label="用户名:">{{ taskList.formobj.userName }}</el-form-item>
  57. </el-col>
  58. <el-col :span="12">
  59. <el-form-item label="学历:">{{ taskList.formobj.education }}</el-form-item>
  60. </el-col>
  61. </el-row>
  62. <el-row>
  63. <el-col :span="12">
  64. <el-form-item label="服务方向:">{{ taskList.formobj.servicesAvailable }}</el-form-item>
  65. </el-col>
  66. <el-col :span="12">
  67. <el-form-item label="工作经验:">{{ taskList.formobj.experience }}</el-form-item>
  68. </el-col>
  69. </el-row>
  70. <el-row>
  71. <el-col :span="12">
  72. <el-form-item label="专业领域:">{{ taskList.formobj.field }}</el-form-item>
  73. </el-col>
  74. <el-col :span="12">
  75. <el-form-item label="研究方向:">{{ taskList.formobj.research }}</el-form-item>
  76. </el-col>
  77. </el-row>
  78. <el-row>
  79. <el-col :span="12">
  80. <el-form-item label="学位证书:">
  81. <el-image
  82. :fit="'contain'"
  83. style="
  84. width: 30%;
  85. margin-top: 10px;
  86. border-radius: 5px;
  87. margin-bottom: -15px;"
  88. :z-index="50000"
  89. :src="baseUrl + taskList.formobj.diploma"
  90. @click="showImagePreview(taskList.formobj.diploma)"
  91. ></el-image>
  92. </el-form-item>
  93. </el-col>
  94. <el-col :span="12">
  95. <el-form-item label="资格证书:">
  96. <el-image
  97. :fit="'contain'"
  98. style="
  99. width: 20%;
  100. margin-top: 10px;
  101. border-radius: 5px;
  102. margin-bottom: -15px;
  103. "
  104. :z-index="50000"
  105. :src="baseUrl + taskList.formobj.credentials"
  106. @click="showImagePreview(taskList.formobj.credentials)"
  107. ></el-image>
  108. </el-form-item>
  109. </el-col>
  110. </el-row>
  111. </el-form>
  112. <el-dialog :visible="BigImgVisible" fullscreen append-to-body @close="BigImgVisible = false">
  113. <img width="100%" :src="taskList.formobj.fileUrl" alt="" />
  114. </el-dialog>
  115. </el-tab-pane>
  116. <el-tab-pane label="审批记录" name="审批记录">
  117. <el-timeline>
  118. <el-timeline-item v-for="(item, index) in taskList.taskHisAction" :timestamp="item.createTime" placement="top" :key="index + 'taskHisAction'">
  119. <el-card>
  120. <p>{{ item.execId }} {{ item.acname }} 于 {{ item.createTime }}</p>
  121. </el-card>
  122. </el-timeline-item>
  123. </el-timeline>
  124. </el-tab-pane>
  125. <!-- 图片预览弹出框 -->
  126. <el-dialog
  127. :visible.sync="imagePreviewVisible"
  128. width="50%"
  129. title="预览图片"
  130. :close-on-click-modal="true"
  131. >
  132. <img
  133. :src="previewImageUrl"
  134. style="width: 100%; height: auto;"
  135. alt="预览图片"
  136. />
  137. </el-dialog>
  138. </el-tabs>
  139. </div>
  140. </template>
  141. <script>
  142. export default {
  143. data() {
  144. return {
  145. baseURL: process.env.VUE_APP_BASE_API,
  146. activeName: '详细信息',
  147. fileList: [],
  148. BigImgVisible: false,
  149. imagePreviewVisible: false, // 控制图片预览弹出框的显示与隐藏
  150. previewImageUrl: '', // 预览图片的URL
  151. };
  152. },
  153. props: ['taskList'],
  154. created() {
  155. if (this.taskList.formobj.fileUrl) {
  156. this.fileList.push({
  157. url: this.baseURL + this.taskList.formobj.fileUrl,
  158. name: "xxx",
  159. });
  160. }
  161. },
  162. watch: {
  163. taskList(curVal, oldVal) {
  164. if (curVal) {
  165. curVal.formobj.content = curVal.formobj.content.replace(new RegExp('/profile/upload/', 'g'), this.baseUrl + '/profile/upload/');
  166. this.fileList.pop();
  167. this.fileList.push({ url: this.baseUrl + curVal.formobj.fileUrl, name: "xxx", });
  168. }
  169. },
  170. },
  171. methods: {
  172. handlePictureCardPreview(file) {
  173. this.taskList.formobj.fileUrl = file.url;
  174. this.BigImgVisible = true;
  175. },
  176. showImagePreview(url) {
  177. this.previewImageUrl = this.baseURL + url;
  178. this.imagePreviewVisible = true;
  179. },
  180. }
  181. };
  182. </script>
  183. <style></style>