lrf402788946 4 years ago
parent
commit
90bf0b3672

+ 1 - 1
src/views/adminCenter/adminHaveCert/index.vue

@@ -3,7 +3,7 @@
     <el-row>
       <el-col :span="24" class="main">
         <el-col :span="24" class="down">
-          <data-table :fields="fields" :opera="opera" :data="list" :total="total" @query="search" @cert="toCert"></data-table>
+          <data-table :fields="fields" :opera="opera" :data="list" :total="total" @query="search"></data-table>
         </el-col>
       </el-col>
     </el-row>

+ 1 - 1
src/views/adminCenter/adminMeet/index.vue

@@ -98,7 +98,7 @@ export default {
     ...verifyRecord(['create']),
     // 查询列表
     async search({ skip = 0, limit = 10, ...info } = {}) {
-      const res = await this.query({ skip, limit, ...info }); //, status: '3'
+      const res = await this.query({ skip, limit, ...info, status: '3' });
       if (this.$checkRes(res)) {
         this.$set(this, 'list', res.data);
         this.$set(this, `total`, res.total);