chenlianjie #16

Merged
chenlianjie merged 5 commits from chenlianjie into master 2024-02-02 16:02:48 +08:00
Showing only changes of commit 0a0dab83e8 - Show all commits

View File

@@ -69,14 +69,14 @@
empty-text="暂无数据"
>
<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">
<span>{{ scope.row.id }}</span>
</template>
</el-table-column>
<el-table-column label="商品类型">
<el-table-column label="商品类型" min-width="70">
<template slot-scope="scope">
<span>{{ scope.row.productType ? '平台' : '店铺' }}</span>
<span>{{ scope.row.productType == '1' ? '平台' : '店铺' }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="商品图" min-width="90">
@@ -86,7 +86,7 @@
</div>
</template>
</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">
<span>{{ scope.row.productName }}</span>
</template>
@@ -97,7 +97,7 @@
<span>货号{{ scope.row.productNum }}</span>
</template>
</el-table-column>
<el-table-column label="标签" min-width="100">
<el-table-column label="标签" min-width="120">
<template slot-scope="scope">
<div>
上架