pull/16/head
xk_chenlianjie 1 year ago
parent 4b2fd19811
commit 0a0dab83e8
  1. 10
      src/views/product/productList/index.vue

@ -69,14 +69,14 @@
empty-text="暂无数据" empty-text="暂无数据"
> >
<el-table-column type="selection" width="60" :reserve-selection="true"> </el-table-column> <el-table-column type="selection" width="60" :reserve-selection="true"> </el-table-column>
<el-table-column label="编号"> <el-table-column label="编号" min-width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.id }}</span> <span>{{ scope.row.id }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="商品类型"> <el-table-column label="商品类型" min-width="70">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.productType ? '平台' : '店铺' }}</span> <span>{{ scope.row.productType == '1' ? '平台' : '店铺' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column label="商品图" min-width="90"> <!-- <el-table-column label="商品图" min-width="90">
@ -86,7 +86,7 @@
</div> </div>
</template> </template>
</el-table-column> --> </el-table-column> -->
<el-table-column label="商品名称" min-width="200" align="center"> <el-table-column label="商品名称" min-width="180" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.productName }}</span> <span>{{ scope.row.productName }}</span>
</template> </template>
@ -97,7 +97,7 @@
<span>货号{{ scope.row.productNum }}</span> <span>货号{{ scope.row.productNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="标签" min-width="100"> <el-table-column label="标签" min-width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
上架 上架

Loading…
Cancel
Save