Jelajahi Sumber

专家注册审核

lcmxs 1 tahun lalu
induk
melakukan
2257a3f6e1

+ 1 - 1
src/views/COUNSELINGMESSAGE/task/index.vue

@@ -49,7 +49,7 @@
 <!--            <editor v-model="taskList.formobj.content" :min-height="192" :readOnly="true" />-->
 <!--          </el-form-item>-->
           <el-form-item label="内容" prop="content">
-            <editor v-model="taskList.formobj.content"/>
+            <div v-html="taskList.formobj.content" style="padding: 10px;box-shadow: 0 0px 12px 0 rgba(0, 0, 0, 0.1);border-radius: 10px;"></div>
           </el-form-item>
         </el-form>
 

+ 163 - 0
src/views/REGISTERTASK/index.vue

@@ -0,0 +1,163 @@
+<template>
+  <div>
+    <el-tabs v-model="activeName">
+      <el-tab-pane label="详细信息" name="详细信息">
+        <el-descriptions border>
+          <el-descriptions-item label="活动名称">{{ taskList.acname }}</el-descriptions-item>
+          <el-descriptions-item label="任务启动时间">
+            {{ taskList.beginTime ? taskList.beginTime.substr(0, 10) : '无' }}
+          </el-descriptions-item>
+          <el-descriptions-item label="业务备注">{{ taskList.fromKeyword }}</el-descriptions-item>
+          <el-descriptions-item label="流程名称">{{ taskList.proname }}</el-descriptions-item>
+          <el-descriptions-item label="审核状态">
+            <el-tag v-if="taskList.status == 1" type="success">同意</el-tag>
+            <el-tag v-else-if="taskList.status == 2" type="danger">驳回</el-tag>
+            <el-tag v-else-if="taskList.status == 3" type="info">退回</el-tag>
+            <el-tag v-else-if="taskList.status == 0">待审核</el-tag>
+          </el-descriptions-item>
+          <el-descriptions-item label="审核意见">{{ taskList.comments ? taskList.comments : '无' }}</el-descriptions-item>
+        </el-descriptions>
+        <el-form ref="form" :model="taskList" label-width="80px" style="margin-top: 20px">
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="昵称">{{ taskList.formobj.nickName }}</el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="类型">
+                <span v-if="taskList.formobj.type == 2">专家</span>
+                <span v-else>其它</span>
+              </el-form-item>
+            </el-col>
+          </el-row>
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="用户名">{{ taskList.formobj.userName }}</el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="学历">{{ taskList.formobj.education }}</el-form-item>
+            </el-col>
+          </el-row>
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="民族">{{ taskList.formobj.nation }}</el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="工作经验">{{ taskList.formobj.experience }}</el-form-item>
+            </el-col>
+          </el-row>
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="专业领域">{{ taskList.formobj.field }}</el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="研究方向">{{ taskList.formobj.research }}</el-form-item>
+            </el-col>
+          </el-row>
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="学位证书">
+                <el-image
+                  :fit="'contain'"
+                  style="
+                  width: 30%;
+                  margin-top: 10px;
+                  border-radius: 5px;
+                  margin-bottom: -15px;"
+                  :z-index="50000"
+                  :src="baseUrl + taskList.formobj.diploma"
+                  @click="showImagePreview(taskList.formobj.diploma)"
+                ></el-image>
+              </el-form-item>
+            </el-col>
+            <el-col :span="12">
+              <el-form-item label="资格证书">
+                <el-image
+                  :fit="'contain'"
+                  style="
+                width: 20%;
+                margin-top: 10px;
+                border-radius: 5px;
+                margin-bottom: -15px;
+              "
+                  :z-index="50000"
+                  :src="baseUrl + taskList.formobj.credentials"
+                  @click="showImagePreview(taskList.formobj.credentials)"
+                ></el-image>
+               </el-form-item>
+            </el-col>
+          </el-row>
+        </el-form>
+        <el-dialog :visible="BigImgVisible" fullscreen append-to-body @close="BigImgVisible = false">
+          <img width="100%" :src="taskList.formobj.fileUrl" alt="" />
+        </el-dialog>
+      </el-tab-pane>
+      <el-tab-pane label="审批记录" name="审批记录">
+        <el-timeline>
+          <el-timeline-item v-for="(item, index) in taskList.taskHisAction" :timestamp="item.createTime" placement="top" :key="index + 'taskHisAction'">
+            <el-card>
+              <p>{{ item.execId }} {{ item.acname }} 于 {{ item.createTime }}</p>
+            </el-card>
+          </el-timeline-item>
+        </el-timeline>
+      </el-tab-pane>
+      <!-- 图片预览弹出框 -->
+      <el-dialog
+        :visible.sync="imagePreviewVisible"
+        width="50%"
+        title="预览图片"
+        :close-on-click-modal="true"
+      >
+        <img
+          :src="previewImageUrl"
+          style="width: 100%; height: auto;"
+          alt="预览图片"
+        />
+      </el-dialog>
+    </el-tabs>
+  </div>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      baseURL: process.env.VUE_APP_BASE_API,
+      activeName: '详细信息',
+      fileList: [],
+      BigImgVisible: false,
+      imagePreviewVisible: false, // 控制图片预览弹出框的显示与隐藏
+      previewImageUrl: '', // 预览图片的URL
+    };
+  },
+  props: ['taskList'],
+  created() {
+    if (this.taskList.formobj.fileUrl) {
+      this.fileList.push({
+        url: this.baseURL + this.taskList.formobj.fileUrl,
+        name: "xxx",
+      });
+    }
+  },
+  watch: {
+    taskList(curVal, oldVal) {
+      if (curVal) {
+        curVal.formobj.content = curVal.formobj.content.replace(new RegExp('/profile/upload/', 'g'), this.baseUrl + '/profile/upload/');
+        this.fileList.pop();
+        this.fileList.push({ url: this.baseUrl + curVal.formobj.fileUrl, name: "xxx", });
+      }
+    },
+  },
+  methods: {
+    handlePictureCardPreview(file) {
+      this.taskList.formobj.fileUrl = file.url;
+      this.BigImgVisible = true;
+    },
+    showImagePreview(url) {
+      this.previewImageUrl = this.baseURL + url;
+      this.imagePreviewVisible = true;
+    },
+  }
+};
+</script>
+
+<style></style>

+ 10 - 1
src/views/task/index.vue

@@ -83,7 +83,12 @@
         class-name="small-padding fixed-width"
       >
         <template slot-scope="scope">
-          <el-button v-if="scope.row.status == '0'" size="mini" type="text" @click="handleExamine(scope.row)" v-hasPermi="['business:INSTACTIONTASK:task']">详情</el-button>
+          <el-button
+            v-if="scope.row.status == '0'"
+            size="mini" type="text"
+            @click="handleExamine(scope.row)"
+            v-hasPermi="['business:INSTACTIONTASK:task']"
+          >详情</el-button>
 
           <el-button
             v-if="scope.row.status == '0'"
@@ -178,6 +183,7 @@
 //导入审核页面的组件
 import newsTask from "@/views/news/task/index.vue";
 import couTask from "@/views/COUNSELINGMESSAGE/task/index.vue";
+import ModifyCompanyUserService from "@/views/REGISTERTASK/index.vue";
 import questionService from "@/views/QUESTION/questionService.vue";
 import articleTask from "@/views/ARTICLE/task/index.vue";
 
@@ -198,6 +204,7 @@ export default {
   components: {
     newsTask,
     couTask,
+    ModifyCompanyUserService,
     questionService,
     articleTask,
   },
@@ -403,6 +410,7 @@ export default {
     handleExamine(row) {
       // this.taskList = []
       getINSTACTIONTASK(row.id).then((res) => {
+        console.log('111111',res);
         this.taskList = res.data;
         this.componentUrl = res.data.infoUrl;
         this.dialogVisible = true;
@@ -411,6 +419,7 @@ export default {
     //点击查看详细
     handleDetail(row) {
       getINSTACTIONTASK(row.id).then((res) => {
+        console.log('666',res);
         this.taskList = res.data;
         this.componentUrl = res.data.infoUrl;
         downloadpic(this.taskList.formobj.picture).then((res) => {