集团列表删除多余字段

This commit is contained in:
BOOL\25024
2024-02-23 09:49:02 +08:00
parent 67a1b0cb9f
commit 8282e02137

View File

@@ -19,21 +19,8 @@
</template>
</el-table-column>
<el-table-column label="运营商名称" align="center" prop="merchantName" />
<el-table-column label="站点名称" align="center" prop="stationName" />
<el-table-column label="类型" align="center" prop="groupType">
<template slot-scope="scope">
<dict-tag :options="dict.type.group_type" :value="scope.row.groupType" />
</template>
</el-table-column>
<el-table-column label="折扣率" align="center" prop="discount">
<template slot-scope="scope">
<span>{{ scope.row.discount }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
v-hasPermi="['member:memberGroup:edit']">修改</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['member:memberGroup:remove']">删除</el-button>
</template>