wl
2022-12-29 d6fb18b49cd61427a343fbe7a2a4f94e4b597bdc
src/views/operate/fivepack/threepack/components/content.vue
@@ -77,6 +77,11 @@
            <span>{{ scope.row.videoPoint.name }}</span>
          </template>
        </el-table-column>
        <el-table-column prop="status" label="状态" min-width="10">
          <template slot-scope="scope">
            <span>{{ scope.row.status==1?'经营':'倒闭' }}</span>
          </template>
        </el-table-column>
        <el-table-column prop="operation" label="操作" min-width="20">
          <template slot-scope="scope">
            <div v-if="!isStorePage()" class="operation">
@@ -208,6 +213,7 @@
      getStoreInfoList({ keyword: this.storeCode, status })
        .then(({ list, pageSize, totalPage }) => {
          this.tableData = list;
          console.log(list);
          this.pageSize = pageSize;
          this.totalNum = totalPage;
        })