Commit 14e000ef authored by Junling Bu's avatar Junling Bu
Browse files

fix[litemall-admin]: 广告活动的启用属性是enabled。

parent 3f97fa11
...@@ -34,9 +34,9 @@ ...@@ -34,9 +34,9 @@
<el-table-column align="center" min-width="200px" label="活动链接" prop="link"> <el-table-column align="center" min-width="200px" label="活动链接" prop="link">
</el-table-column> </el-table-column>
<el-table-column align="center" min-width="100px" label="是否启用" prop="enable"> <el-table-column align="center" min-width="100px" label="是否启用" prop="enabled">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="scope.row.enable ? 'success' : 'error' ">{{ scope.row.enable ? '启用' : '不启用' }}</el-tag> <el-tag :type="scope.row.enabled ? 'success' : 'error' ">{{ scope.row.enabled ? '启用' : '不启用' }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment