gks 1 gadu atpakaļ
vecāks
revīzija
c193a42dc4

+ 218 - 0
src/components/DataAcquisition/index.vue

@@ -0,0 +1,218 @@
+<template>
+  <div>
+    <el-tabs v-model="activeName" type="border-card">
+      <div>
+        <el-tab-pane
+          v-for="(item, index) in tabList"
+          :key="index + 'tabs'"
+          :label="item.normName"
+          :name="item.normName"
+        >
+          <el-row :gutter="10">
+            <template v-for="listItem in taskList.feeLists">
+              <el-form
+                v-if="listItem.normId == item.normId"
+                :model="listItem"
+                :ref="'form' + listItem.normfeeId"
+                :key="listItem.normfeeId"
+              >
+                <el-col :span="12">
+                  <el-form-item
+                    prop="collCalue"
+                    :label="
+                      listItem.normfeeName +
+                      '(' +
+                      listItem.funit_dictText +
+                      ')'
+                    "
+                  >
+                    <el-input
+                      :disabled="!edit"
+                      v-model="listItem.collCalue"
+                      :placeholder="'请输入' + listItem.normfeeName"
+                    ></el-input>
+                  </el-form-item>
+                </el-col>
+              </el-form>
+            </template>
+          </el-row>
+        </el-tab-pane>
+      </div>
+
+      <div>
+        <el-tab-pane label="审批记录" name="审批记录">
+          <el-timeline>
+            <el-timeline-item
+              v-for="(item, index) in taskList.taskVoList"
+              :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>
+      </div>
+    </el-tabs>
+    <div class="remark" v-if="form.remark != null">
+      <div class="remark_title">驳回理由:</div>
+      <div class="remark_text">{{ taskList.remark }}</div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  props: {
+    taskList: {
+      type: Object,
+      default() {
+        return {};
+      },
+    },
+  },
+  components: {},
+  data() {
+    return {
+      tabList: [],
+      check: false,
+      title: "",
+      openDetail: false,
+      form: {},
+      edit: false,
+    };
+  },
+  computed: {},
+  methods: {
+    handleClose() {
+      this.check = false;
+    },
+    submitForm(type) {
+      let p = [];
+      p = this.form.feeLists.map((item, index) => {
+        return new Promise((resolve, reject) => {
+          this.$refs["form" + item.normfeeId][0].validate((valid) => {
+            // this.$refs["form" + index].validate((valid) => {
+            if (valid) {
+              resolve(); //完成态
+            } else {
+              reject(); //已失败
+            }
+          });
+        });
+      });
+      Promise.all(p)
+        .then(() => {
+          if (type == "add") {
+            addGATHER(this.form).then((response) => {
+              if (response.code == 200) {
+                this.$modal.msgSuccess("录入成功");
+                this.getList();
+                this.open = false;
+                compute(this.form).then((response) => {});
+              }
+            });
+          } else if (type == "edit") {
+            updateGATHER(this.form).then((response) => {
+              this.$modal.msgSuccess("修改成功");
+              this.getList();
+              this.openDetail = false;
+              compute(this.form).then((response) => {});
+            });
+          }
+        })
+        .catch((err) => {
+          this.$message.error("请检查是否有必填项未输入!");
+        });
+    },
+    handleCheck(val, value) {
+      let data = {
+        gatherId: this.dataId,
+        auditType: 2,
+      };
+      let audit = {
+        gatherId: this.dataId,
+        auditType: 3,
+        remark: value,
+      };
+      if (val == 1) {
+        bsqAudit(data).then((res) => {
+          if (res.code == 200) {
+            this.$modal.msgSuccess("通过审核成功");
+            this.getList();
+            this.openDetail = false;
+          }
+        });
+      } else {
+        bsqAudit(audit).then((res) => {
+          if (res.code == 200) {
+            this.$modal.msgSuccess("驳回成功");
+            this.getList();
+            this.openDetail = false;
+          }
+        });
+      }
+    },
+    // 驳回处理
+    handleReject() {
+      this.$prompt("请输入驳回理由:", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        inputType: "textarea",
+      })
+        .then(({ value }) => {
+          // console.log(666,value);
+          this.handleCheck(2, value);
+          // this.$message({
+          //   type: 'success',
+          //   message: '你的邮箱是: ' + value
+          // });
+        })
+        .catch(() => {
+          // this.$message({
+          //   type: 'info',
+          //   message: '取消输入'
+          // });
+        });
+    },
+    // 取消按钮
+    cancel() {
+      this.check = false;
+      this.open = false;
+      this.openDetail = false;
+      this.openUpload = false;
+      this.reset();
+    },
+  },
+  created() {
+    this.tabList = JSON.parse(JSON.stringify(this.taskList.feeLists));
+    //去重获取tab
+    //遍历如果遇到相同的id则删掉
+    for (var i = 0; i < this.tabList.length - 1; i++) {
+      //设置激活的tab
+      if (i == 0) {
+        this.activeName = this.tabList[0].normName;
+      }
+      for (var j = i + 1; j < this.tabList.length; j++) {
+        if (this.tabList[i].normId == this.tabList[j].normId) {
+          this.tabList.splice(j, 1);
+          //因为数组长度减小1,所以直接 j++ 会漏掉一个元素,所以要 j--
+          j--;
+        }
+      }
+    }
+    console.log(this.tabList);
+  },
+};
+</script>
+<style scoped lang="scss">
+.dialog-footer {
+  display: flex;
+  justify-content: center;
+  margin-top: 20px;
+}
+</style>

+ 1 - 1
src/views/AttendMeeting/index.vue

@@ -139,7 +139,7 @@
             size="mini"
             type="text"
             @click="handleReply(scope.row)"
-            v-if="checkPermi(['business:JOINTCONFERENCE:edit'])"
+            v-if="scope.row.status != 3 &&checkPermi(['business:CONFERENCEREPLY:add'])"
             >会议回复</el-button
           >
         </template>

+ 31 - 11
src/views/GATHER/index.vue

@@ -209,6 +209,7 @@
         width="100"
       >
       </el-table-column>
+
       <el-table-column label="上报状态" align="center" prop="reportStatus">
         <template slot-scope="scope">
           <span v-if="scope.row.reportStatus == 0">未上报</span>
@@ -252,6 +253,23 @@
           }}</span>
         </template>
       </el-table-column>
+
+      <el-table-column
+        label="驳回时间"
+        align="center"
+        prop="collTime"
+        width="100"
+      >
+      </el-table-column>
+
+      <el-table-column
+        label="驳回姓名"
+        align="center"
+        prop="collTime"
+        width="100"
+      >
+      </el-table-column>
+
       <el-table-column
         label="操作"
         align="center"
@@ -294,11 +312,11 @@
             </el-popconfirm>
           </template>
 
-          <template
-            v-if="
-              scope.row.approveStatus == 1 &&
-              checkPermi(['gather:GATHER:check'])
-            "
+          <!-- <template
+          v-if="
+            scope.row.approveStatus == 1 &&
+            checkPermi(['gather:GATHER:check'])
+          "
           >
             <el-button
               @click="handleApprove(scope.row)"
@@ -308,7 +326,7 @@
               slot="reference"
               >审核绩效</el-button
             >
-          </template>
+          </template> -->
 
           <!--              已采集,审核通过,未上报 -->
           <template
@@ -345,7 +363,9 @@
 
           <el-button
             style="margin: 0 2px"
-            v-if="scope.row.collStatus == 1  && (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
+            v-if="
+              scope.row.collStatus == 1 &&
+              (scope.row.approveStatus == 0 || scope.row.approveStatus == 3) &&
               checkPermi(['gather:GATHER:edit']) // 编辑权限
             "
             size="mini"
@@ -790,10 +810,10 @@ export default {
 
   created() {
     this.getList();
-    getInfo().then((res) => {
-      console.log(res);
-      // this.data = res;
-    });
+    // getInfo().then((res) => {
+    //   console.log(res);
+    //   //  this.data = res;
+    // });
   },
   methods: {
     checkPermi,

+ 5 - 2
src/views/JOINTCONFERENCE/callback.vue

@@ -4,9 +4,9 @@
       <div class="title">会议标题:</div>
       <p>{{ form.conference.conferenceTitle }}</p>
     </div>
-    <div class="detail_item">
+    <div class="detail_item content">
       <div class="title">会议内容:</div>
-      <p>{{ form.conference.conferenceContent }}</p>
+      <span v-html="form.conference.conferenceContent"></span>
     </div>
 
     <div class="detail_item">
@@ -181,6 +181,9 @@ export default {
   color: #333333;
   font-size: 16px;
 }
+.content{
+  align-items: center;
+}
 .detail_item .title {
   width: 100px;
 }

+ 3 - 3
src/views/norm/quotaBonded.vue

@@ -408,9 +408,9 @@ export default {
       });
       this.QUOTAFEEList = response.data;
     });
-    listAllBONDED().then((response) => {
-      this.BONDEDList = response.rows;
-    });
+    // listAllBONDED().then((response) => {
+    //   this.BONDEDList = response.rows;
+    // });
     this.getList();
     this.getDeptList();
   },

+ 3 - 0
src/views/task/index.vue

@@ -187,6 +187,8 @@ 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";
+import dataAcquisition from "@/components/DataAcquisition";
+
 
 import {
   listINSTACTIONTASK,
@@ -208,6 +210,7 @@ export default {
     ModifyCompanyUserService,
     questionService,
     articleTask,
+    dataAcquisition,
   },
   data() {
     return {