Commit ffaf1fce by liuchenxi

update: 企业简称字段添加

parent c2785099
...@@ -30,6 +30,11 @@ ...@@ -30,6 +30,11 @@
{{ scope.row.enterpriseName || '--' }} {{ scope.row.enterpriseName || '--' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="" label="企业简称" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.brandName || '--' }}
</template>
</el-table-column>
<el-table-column prop="" label="关联门店"> <el-table-column prop="" label="关联门店">
<template slot-scope="scope"> <template slot-scope="scope">
<p>{{ scope.row.storeName || '--' }}<el-tag type="danger" v-if="scope.row.mainStoreFlag">主门店</el-tag></p> <p>{{ scope.row.storeName || '--' }}<el-tag type="danger" v-if="scope.row.mainStoreFlag">主门店</el-tag></p>
......
Markdown is supported
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