|
|
@@ -93,11 +93,19 @@
|
|
|
<span v-if="scope.row.status == 2">已拒绝</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <!-- 发布人 -->
|
|
|
+ <el-table-column label="发布人" width="160" v-if="creatNews_user_type == 10000">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="(scope.row.is_collector == 0 || scope.row.is_collector == null) && scope.row.user">
|
|
|
+ {{ scope.row.user.nickname || '' }}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="c_show_time" label="C端展示时间" width=""
|
|
|
v-if="creatNews_user_type != 10000"></el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="400" header-align="center"
|
|
|
v-if="creatNews_user_type == 10000">
|
|
|
- <template slot-scope="scope">
|
|
|
+ <template slot-scope="scope">
|
|
|
<div class="listBtnBox">
|
|
|
<div class="listLinkBtn" @click="selectRow(scope.row.cat_arr_id, scope.row)">
|
|
|
<i class="el-icon-full-screen"></i>网站权限
|