|
@@ -57,6 +57,11 @@
|
|
|
<el-table-column label="企业别称" align="center" prop="anotherName">
|
|
|
<template #default="scope">{{ formatName(scope.row.enterprise.anotherName) }}</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="权益" align="center" prop="status">
|
|
|
+ <template #default="scope">
|
|
|
+ <span :style="{'color': scope.row.status === '1' ? '#f56c6c' : '#67c23a' }">{{ scope.row.status === '1' ? '已禁用' : '已开启' }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center">
|
|
|
<template #default="scope">
|
|
|
<el-button v-if="scope.row.status === '1'" link type="primary" @click="handleEnableRights(formatName(scope.row.enterprise.anotherName || scope.row.enterprise.name), scope.row.id)">
|