Parcourir la source

新增门户管理-运营服务页面

Sanmu8 il y a 1 an
Parent
commit
16adbcfb79

+ 25 - 6
src/api/portal/OPSERVICE/OPSERVICE.js

@@ -3,7 +3,7 @@ import request from '@/utils/request'
 // 查询运营服务列表
 export function listOPSERVICE(query) {
   return request({
-    url: '/business/OPSERVICE/list',
+    url: '/OPSERVICE/list',
     method: 'get',
     params: query
   })
@@ -12,7 +12,7 @@ export function listOPSERVICE(query) {
 // 查询运营服务所有列表
 export function listAllOPSERVICE(query) {
   return request({
-    url: '/business/OPSERVICE/listAll',
+    url: '/OPSERVICE/listAll',
     method: 'get',
     params: query
   })
@@ -21,7 +21,7 @@ export function listAllOPSERVICE(query) {
 // 查询运营服务详细
 export function getOPSERVICE(id) {
   return request({
-    url: '/business/OPSERVICE/getInfo/' + id,
+    url: '/OPSERVICE/getInfo/' + id,
     method: 'get'
   })
 }
@@ -29,7 +29,7 @@ export function getOPSERVICE(id) {
 // 新增运营服务
 export function addOPSERVICE(data) {
   return request({
-    url: '/business/OPSERVICE/add',
+    url: '/OPSERVICE/add',
     method: 'post',
     data: data
   })
@@ -38,7 +38,7 @@ export function addOPSERVICE(data) {
 // 修改运营服务
 export function updateOPSERVICE(data) {
   return request({
-    url: '/business/OPSERVICE/edit',
+    url: '/OPSERVICE/edit',
     method: 'post',
     data: data
   })
@@ -47,7 +47,26 @@ export function updateOPSERVICE(data) {
 // 删除运营服务
 export function delOPSERVICE(id) {
   return request({
-    url: '/business/OPSERVICE/remove/' + id,
+    url: '/OPSERVICE/remove/' + id,
     method: 'get'
   })
 }
+
+
+// 上传文件
+export function upload(data) {
+  return request({
+    url: '/common/upload',
+    method: 'post',
+    data:data
+  })
+}
+
+// 下载文件
+export function download(data) {
+  return request({
+    url: '/common/download',
+    method: 'get',
+    data:data
+  })
+}

+ 310 - 196
src/views/CONTACTUS/index.vue

@@ -1,162 +1,240 @@
 <template>
-<!--  <div class="app-container">-->
-<!--    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">-->
-<!--      <el-form-item>-->
-<!--        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>-->
-<!--        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>-->
-<!--      </el-form-item>-->
-<!--    </el-form>-->
+  <div class="app-container">
+    <el-form
+      :model="queryParams"
+      ref="queryForm"
+      size="small"
+      :inline="true"
+      v-show="showSearch"
+      label-width="68px"
+    >
+      <el-form-item label="文件名称" prop="serviceName">
+        <el-input v-model="queryParams.serviceName"></el-input>
+      </el-form-item>
+      <el-form-item label="服务类型" prop="serviceType">
+        <el-select
+          v-model="queryParams.serviceType"
+          placeholder="请选择服务类型"
+          clearable
+          filterable
+        >
+          <el-option
+            v-for="dict in optionList"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item>
+        <el-button
+          type="primary"
+          icon="el-icon-search"
+          size="mini"
+          @click="handleQuery"
+          >搜索</el-button
+        >
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
+          >重置</el-button
+        >
+      </el-form-item>
+    </el-form>
 
-<!--    <el-row :gutter="10" class="mb8">-->
-<!--      <el-col :span="1.5">-->
-<!--        <el-button-->
-<!--          type="primary"-->
-<!--          plain-->
-<!--          icon="el-icon-plus"-->
-<!--          size="mini"-->
-<!--          @click="handleAdd"-->
-<!--          v-hasPermi="['business:CONTACTUS:add']"-->
-<!--        >新增</el-button>-->
-<!--      </el-col>-->
-<!--      <el-col :span="1.5">-->
-<!--        <el-button-->
-<!--          type="success"-->
-<!--          plain-->
-<!--          icon="el-icon-edit"-->
-<!--          size="mini"-->
-<!--          :disabled="single"-->
-<!--          @click="handleUpdate"-->
-<!--          v-hasPermi="['business:CONTACTUS:edit']"-->
-<!--        >修改</el-button>-->
-<!--      </el-col>-->
-<!--      <el-col :span="1.5">-->
-<!--        <el-button-->
-<!--          type="danger"-->
-<!--          plain-->
-<!--          icon="el-icon-delete"-->
-<!--          size="mini"-->
-<!--          :disabled="multiple"-->
-<!--          @click="handleDelete"-->
-<!--          v-hasPermi="['business:CONTACTUS:remove']"-->
-<!--        >删除</el-button>-->
-<!--      </el-col>-->
-<!--      <el-col :span="1.5">-->
-<!--        <el-button-->
-<!--          type="warning"-->
-<!--          plain-->
-<!--          icon="el-icon-download"-->
-<!--          size="mini"-->
-<!--          @click="handleExport"-->
-<!--          v-hasPermi="['business:CONTACTUS:export']"-->
-<!--        >导出</el-button>-->
-<!--      </el-col>-->
-<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
-<!--    </el-row>-->
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['business:OPSERVICE:add']"
+          >新增</el-button
+        >
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['business:OPSERVICE:edit']"
+          >修改</el-button
+        >
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['business:OPSERVICE:remove']"
+          >删除</el-button
+        >
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['business:OPSERVICE:export']"
+          >导出</el-button
+        >
+      </el-col>
+      <right-toolbar
+        :showSearch.sync="showSearch"
+        @queryTable="getList"
+      ></right-toolbar>
+    </el-row>
 
-<!--    <el-table v-loading="loading" :data="CONTACTUSList" @selection-change="handleSelectionChange">-->
-<!--      <el-table-column type="selection" width="55" align="center" />-->
-<!--      <el-table-column label="主键" align="center" prop="id">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="创建时间" align="center" prop="createTime">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="创建人" align="center" prop="createBy">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="更新时间" align="center" prop="updateTime">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="更新人" align="center" prop="updateBy">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="删除标志" align="center" prop="delFlag">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.delFlag"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="部门ID" align="center" prop="deptId">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="单位名称" align="center" prop="depName">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.depName"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="联系电话" align="center" prop="telphone">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.telphone"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="位置" align="center" prop="location">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.location"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="邮箱" align="center" prop="email">-->
-<!--        <template slot-scope="scope">-->
-<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.email"/>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
-<!--        <template slot-scope="scope">-->
-<!--          <el-button-->
-<!--            size="mini"-->
-<!--            type="text"-->
-<!--            icon="el-icon-edit"-->
-<!--            @click="handleUpdate(scope.row)"-->
-<!--            v-hasPermi="['business:CONTACTUS:edit']"-->
-<!--          >修改</el-button>-->
-<!--          <el-button-->
-<!--            size="mini"-->
-<!--            type="text"-->
-<!--            icon="el-icon-delete"-->
-<!--            @click="handleDelete(scope.row)"-->
-<!--            v-hasPermi="['business:CONTACTUS:remove']"-->
-<!--          >删除</el-button>-->
-<!--        </template>-->
-<!--      </el-table-column>-->
-<!--    </el-table>-->
+    <el-table
+      v-loading="loading"
+      :data="OPSERVICEList"
+      @selection-change="handleSelectionChange"
+    >
+      <!-- <el-table-column type="selection" width="55" align="center" /> -->
+      <el-table-column label="文件名称" align="center" prop="serviceName">
+        <template slot-scope="scope">
+          {{ scope.row.serviceName }}
+        </template>
+      </el-table-column>
+      <el-table-column label="服务类型" align="center" prop="serviceType">
+        <template slot-scope="scope">
+          {{ searchType(scope.row.serviceType) }}
+        </template>
+      </el-table-column>
+      <el-table-column label="上传时间" align="center" prop="createTime">
+        <template slot-scope="scope">
+          {{ scope.row.createTime }}
+        </template>
+      </el-table-column>
+      <el-table-column label="上传人" align="center" prop="createBy">
+        <template slot-scope="scope">
+          {{ scope.row.createBy }}
+        </template>
+      </el-table-column>
 
-<!--    <pagination-->
-<!--      v-show="total>0"-->
-<!--      :total="total"-->
-<!--      :page.sync="queryParams.pageNum"-->
-<!--      :limit.sync="queryParams.pageSize"-->
-<!--      @pagination="getList"-->
-<!--    />-->
+      <!-- <el-table-column label="文件附件" align="center" prop="linkUrl">
+        <template slot-scope="scope">
+          {{ scope.row.linkUrl }}
+        </template>
+      </el-table-column> -->
+      <el-table-column label="下载次数" align="center" prop="download">
+        <template slot-scope="scope">
+          {{ scope.row.download?scope.row.download:'暂无下载' }}
+        </template>
+      </el-table-column>
 
-<!--    &lt;!&ndash; 添加或修改联系我们对话框 &ndash;&gt;-->
-<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
-<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
-<!--      </el-form>-->
-<!--      <div slot="footer" class="dialog-footer">-->
-<!--        <el-button type="primary" @click="submitForm">确 定</el-button>-->
-<!--        <el-button @click="cancel">取 消</el-button>-->
-<!--      </div>-->
-<!--    </el-dialog>-->
-<!--  </div>-->
+      <el-table-column
+        label="操作"
+        align="center"
+        class-name="small-padding fixed-width"
+      >
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['business:OPSERVICE:edit']"
+            >修改</el-button
+          >
+          <el-button
+            size="mini"
+            type="text"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['business:OPSERVICE:remove']"
+            >删除</el-button
+          >
+          <el-button
+            size="mini"
+            type="text"
+            @click="handleDownload(scope.row)"
+            v-hasPermi="['business:OPSERVICE:remove']"
+            >下载</el-button
+          >
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total > 0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改运营服务对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="70%" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="文件" prop="linkUrl">
+          <el-upload
+            :http-request="httprequest"
+            :before-upload="uploadFile"
+            :limit="1"
+            class="upload-demo"
+            action="#"
+            :auto-upload="true"
+            :on-change="handleChange"
+            :file-list="fileList"
+          >
+            <el-button size="small" type="primary">点击上传</el-button>
+          </el-upload>
+        </el-form-item>
+        <el-form-item label="服务类型" prop="serviceType">
+          <el-select
+            v-model="form.serviceType"
+            placeholder="请选择服务类型"
+            filterable
+          >
+            <el-option
+              v-for="dict in optionList"
+              :key="dict.value + 'serviceType'"
+              :label="dict.label"
+              :value="dict.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+
+        <el-form-item label="文件名称" prop="serviceName">
+          <el-input v-model="form.serviceName"></el-input>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
 </template>
 
 <script>
-import { listCONTACTUS, getCONTACTUS, delCONTACTUS, addCONTACTUS, updateCONTACTUS } from "@/api/portal/CONTACTUS/CONTACTUS.js";
+import {
+  listOPSERVICE,
+  getOPSERVICE,
+  delOPSERVICE,
+  addOPSERVICE,
+  updateOPSERVICE,
+  upload,
+  download
+} from "@/api/portal/OPSERVICE/OPSERVICE.js";
 
 export default {
-  name: "CONTACTUS",
+  name: "OPSERVICE",
   data() {
     return {
+      fileList: [],
+      //1=招商服务2培训服务
+      optionList: [
+        { label: "招商服务", value: "1" },
+        { label: "培训服务", value: "2" },
+      ],
       // 根路径
       baseURL: process.env.VUE_APP_BASE_API,
       // 遮罩层
@@ -171,8 +249,8 @@ export default {
       showSearch: true,
       // 总条数
       total: 0,
-      // 联系我们表格数据
-      CONTACTUSList: [],
+      // 运营服务表格数据
+      OPSERVICEList: [],
       // 弹出层标题
       title: "",
       // 是否显示弹出层
@@ -188,52 +266,80 @@ export default {
         updateBy: null,
         delFlag: null,
         deptId: null,
-        depName: null,
-        telphone: null,
-        location: null,
-        email: null
+        serviceName: null,
+        linkUrl: null,
+        download: null,
+        serviceType: null,
       },
       // 表单参数
       form: {},
       // 表单校验
       rules: {
-        id: [
-          { required: true, message: "主键不能为空", trigger: "blur" }
-        ],
+        id: [{ required: true, message: "主键id不能为空", trigger: "blur" }],
         delFlag: [
-          { required: true, message: "删除标志不能为空", trigger: "blur" }
+          { required: true, message: "删除状态不能为空", trigger: "blur" },
         ],
         deptId: [
-          { required: true, message: "部门ID不能为空", trigger: "blur" }
+          { required: true, message: "部门id不能为空", trigger: "blur" },
         ],
-        depName: [
-          { required: true, message: "单位名称不能为空", trigger: "blur" }
+        serviceName: [
+          { required: true, message: "文件名称不能为空", trigger: "blur" },
         ],
-        telphone: [
-          { required: true, message: "联系电话不能为空", trigger: "blur" }
+        linkUrl: [
+          { required: true, message: "文件附件不能为空", trigger: "blur" },
         ],
-        location: [
-          { required: true, message: "位置不能为空", trigger: "blur" }
+        download: [
+          { required: true, message: "下载次数不能为空", trigger: "blur" },
         ],
-        email: [
-          { required: true, message: "邮箱不能为空", trigger: "blur" }
-        ]
-      }
+        serviceType: [
+          { required: true, message: "服务类型不能为空", trigger: "change" },
+        ],
+      },
     };
   },
   created() {
     this.getList();
   },
   methods: {
-    /** 查询联系我们列表 */
+    /** 查询运营服务列表 */
     getList() {
       this.loading = true;
-      listCONTACTUS(this.queryParams).then(response => {
-        this.CONTACTUSList = response.rows;
+      listOPSERVICE(this.queryParams).then((response) => {
+        this.OPSERVICEList = response.rows;
         this.total = response.total;
         this.loading = false;
       });
     },
+    handleDownload(row){
+      // let data = {
+      //   cbOpServiceVo:row,
+      //   fileName:row.serviceName
+      // }
+      let formData = new FormData();
+      formData.append("fileName", row.serviceName);
+      download(formData).then(res=>{
+      })
+    },
+    httprequest() {},
+    uploadFile(file) {
+      let formData = new FormData();
+      formData.append("file", file);
+      upload(formData).then((res) => {
+        this.form.linkUrl = res.url;
+        this.$set(this.form, "serviceName", res.originalFilename);
+      });
+    },
+    handleChange(file, fileList) {
+      this.fileList = fileList.slice(-3);
+    },
+    searchType(type) {
+      let fined = this.optionList.find((item) => item.value == type);
+      if (fined.label != undefined) {
+        return fined.label;
+      } else {
+        return "未选择类型!";
+      }
+    },
     // 取消按钮
     cancel() {
       this.open = false;
@@ -245,10 +351,10 @@ export default {
         id: null,
         delFlag: null,
         deptId: null,
-        depName: null,
-        telphone: null,
-        location: null,
-        email: null
+        serviceName: null,
+        linkUrl: null,
+        download: null,
+        serviceType: null,
       };
       this.resetForm("form");
     },
@@ -264,38 +370,38 @@ export default {
     },
     // 多选框选中数据
     handleSelectionChange(selection) {
-      this.ids = selection.map(item => item.id)
-      this.single = selection.length!==1
-      this.multiple = !selection.length
+      this.ids = selection.map((item) => item.id);
+      this.single = selection.length !== 1;
+      this.multiple = !selection.length;
     },
     /** 新增按钮操作 */
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = "添加联系我们";
+      this.title = "添加运营服务";
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
       this.reset();
-      const id = row.id || this.ids
-      getCONTACTUS(id).then(response => {
+      const id = row.id || this.ids;
+      getOPSERVICE(id).then((response) => {
         this.form = response.data;
         this.open = true;
-        this.title = "修改联系我们";
+        this.title = "修改运营服务";
       });
     },
     /** 提交按钮 */
     submitForm() {
-      this.$refs["form"].validate(valid => {
+      this.$refs["form"].validate((valid) => {
         if (valid) {
           if (this.form.id != null) {
-            updateCONTACTUS(this.form).then(response => {
+            updateOPSERVICE(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
             });
           } else {
-            addCONTACTUS(this.form).then(response => {
+            addOPSERVICE(this.form).then((response) => {
               this.$modal.msgSuccess("新增成功");
               this.open = false;
               this.getList();
@@ -307,19 +413,27 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除联系我们编号为"' + ids + '"的数据项?').then(function() {
-        return delCONTACTUS(ids);
-      }).then(() => {
-        this.getList();
-        this.$modal.msgSuccess("删除成功");
-      }).catch(() => {});
+      this.$modal
+        .confirm('是否确认删除运营服务编号为"' + ids + '"的数据项?')
+        .then(function () {
+          return delOPSERVICE(ids);
+        })
+        .then(() => {
+          this.getList();
+          this.$modal.msgSuccess("删除成功");
+        })
+        .catch(() => {});
     },
     /** 导出按钮操作 */
     handleExport() {
-      this.download('business/CONTACTUS/export', {
-        ...this.queryParams
-      }, `CONTACTUS_${new Date().getTime()}.xlsx`)
-    }
-  }
+      this.download(
+        "business/OPSERVICE/export",
+        {
+          ...this.queryParams,
+        },
+        `OPSERVICE_${new Date().getTime()}.xlsx`
+      );
+    },
+  },
 };
 </script>

+ 2 - 1
src/views/news/index.vue

@@ -619,7 +619,7 @@ export default {
       this.$refs["form"].validate((valid) => {
         if (valid) {
           if (this.form.id != null) {
-            // this.form.status = '1'
+            
             updateAndex(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
@@ -627,6 +627,7 @@ export default {
               this.reset();
             });
           } else {
+            this.form.status = '1'
             addNEWS(this.form).then((response) => {
               // let formData = new FormData()
               // formData.append('id',this.form.id)

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

@@ -22,7 +22,7 @@
             <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>审核</el-tag>
+            <el-tag v-else-if="taskList.status == 0">审核</el-tag>
           </el-descriptions-item>
           <el-descriptions-item label="审核意见">{{
             taskList.comments ? taskList.comments : "无"

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

@@ -76,7 +76,7 @@
             >驳回</el-tag
           >
           <el-tag v-else-if="scope.row.status == '3'" type="info">退回</el-tag>
-          <el-tag v-else>审核</el-tag>
+          <el-tag v-else-if="scope.row.status == '0'">审核</el-tag>
         </template>
       </el-table-column>
       <el-table-column label="审核意见" align="center" prop="comments">
@@ -91,7 +91,7 @@
       >
         <template slot-scope="scope">
           <el-button
-            v-if="scope.row.status == null"
+            v-if="scope.row.status == '0'"
             size="mini"
             type="text"
             @click="handleExamine(scope.row)"
@@ -225,7 +225,7 @@ export default {
         execId: null,
         beginTime: null,
         endTime: null,
-        status: null,
+        status: "0",
         comments: null,
       },
       // 表单参数
@@ -275,6 +275,8 @@ export default {
         ],
       },
       statusList: [
+        { value: null, label: "全部" },
+        { value: "0", label: "待审核" },
         { value: "1", label: "同意" },
         { value: "2", label: "驳回" },
         { value: "3", label: "退回" },
@@ -320,6 +322,7 @@ export default {
       this.innerVisible = false;
       // this.dialogFormVisible = false;
     },
+    //点击审核那三个按钮会触发submitBtn函数然后设置这个title
     submitBtn(type) {
       this.subTitle = type;
       this.innerVisible = true;