|
@@ -20,9 +20,14 @@
|
|
|
<span>{{ `${row.StartDate} - ${row.EndDate}` }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" prop="PermissionName" label="签约套餐" width="200">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag style="margin: 0 10px 5px 0" v-for="item in row.PermissionName.split(',')" :key="item" size="mini">{{ item }}</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" prop="IsAllocation" label="状态" width="90">
|
|
|
<template slot-scope="{ row }">
|
|
|
- <span>{{ row.IsAllocation == 0 ? "未派点" : row.IsAllocation == 1 ? "已派点" : "" }}</span>
|
|
|
+ <span :style="{ color: row.IsAllocation == 0 ? '#FF8A00' : row.IsAllocation == 1 ? '#67C23A' : '' }">{{ row.IsAllocation == 0 ? "未派点" : row.IsAllocation == 1 ? "已派点" : "" }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="ContractCode" label="操作" v-if="!typeLable">
|