|
@@ -17,17 +17,17 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="primary"
|
|
|
- style="margin-left: 5px"
|
|
|
- :disabled="ids.length === 0"
|
|
|
- @click="handleUpdateBatch"
|
|
|
- v-hasPermi="['store:user:enabledUsers']"
|
|
|
- >批量启用</el-button>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
- </el-row>
|
|
|
+<!-- <el-row :gutter="10" class="mb8">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- type="primary"-->
|
|
|
+<!-- style="margin-left: 5px"-->
|
|
|
+<!-- :disabled="ids.length === 0"-->
|
|
|
+<!-- @click="handleUpdateBatch"-->
|
|
|
+<!-- v-hasPermi="['store:user:enabledUsers']"-->
|
|
|
+<!-- >批量启用</el-button>-->
|
|
|
+<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
|
|
|
+<!-- </el-row>-->
|
|
|
|
|
|
<el-table height="500" border v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
@@ -65,17 +65,24 @@
|
|
|
<el-table-column label="完播时间" align="center" prop="completeWatchDate" width="160px"/>
|
|
|
<el-table-column label="标签名称" align="center" prop="tag" />
|
|
|
<el-table-column label="所属销售名称" align="center" prop="companyUserNickName" width="120px"/>
|
|
|
- <el-table-column label="备注" align="center" prop="remark" />
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <el-table-column label="是否重粉" align="center" prop="isRepeatFans" width="120px">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['store:user:darkRoomList']"
|
|
|
- >启用</el-button>
|
|
|
+ <el-tag effect="dark" type="success" v-if="scope.row.isRepeatFans === 0">否</el-tag>
|
|
|
+ <el-tag effect="dark" type="danger" v-else-if="scope.row.isRepeatFans === 1">是</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="备注" align="center" prop="remark" />
|
|
|
+ <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="['store:user:darkRoomList']"-->
|
|
|
+<!-- v-if="scope.row.isRepeatFans !== 1"-->
|
|
|
+<!-- >启用</el-button>-->
|
|
|
+<!-- </template>-->
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
<pagination
|