|
@@ -48,6 +48,8 @@
|
|
|
class="marginT-10 order-table"
|
|
|
border
|
|
|
:max-height="vheight">
|
|
|
+ <el-table-column label="农产品名字" prop="product_title" min-width="200" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column label="农产品描述" prop="product_desc" min-width="200" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column label="商品主图" prop="product_img_url" min-width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<el-image
|
|
@@ -79,17 +81,15 @@
|
|
|
</template>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="农产品名字" prop="product_title"></el-table-column>
|
|
|
- <el-table-column label="农产品描述" prop="product_desc" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column label="分类" prop="product_category_name"></el-table-column>
|
|
|
<el-table-column label="商品品牌" prop="product_brand_name"></el-table-column>
|
|
|
<el-table-column label="商品规格" prop="product_spec"></el-table-column>
|
|
|
<el-table-column label="单位" prop="product_unit"></el-table-column>
|
|
|
- <el-table-column label="商品货号" prop="product_code"></el-table-column>
|
|
|
- <el-table-column label="批发价(元)" prop="product_all_price">
|
|
|
+ <el-table-column label="商品货号" prop="product_code" min-width="140"></el-table-column>
|
|
|
+ <el-table-column label="批发价(元)" prop="product_all_price" min-width="100">
|
|
|
<template slot-scope="scope">{{ scope.row.product_all_price | fen2Yuan }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="零售价(元)" prop="product_price">
|
|
|
+ <el-table-column label="零售价(元)" prop="product_price" min-width="100">
|
|
|
<template slot-scope="scope">{{ scope.row.product_price | fen2Yuan }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="库存" prop="product_count"></el-table-column>
|
|
@@ -110,10 +110,10 @@
|
|
|
<el-table-column label="审核状态" prop="product_status">
|
|
|
<template slot-scope="scope">{{ getProductStatusText(scope.row.product_status) }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="申请时间" prop="created_at" min-width="120"></el-table-column>
|
|
|
- <el-table-column label="审核人" prop="product_check_name"></el-table-column>
|
|
|
- <el-table-column label="审核备注" prop="product_check_remark" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column label="审核时间" prop="product_check_at"></el-table-column>
|
|
|
+ <el-table-column label="申请时间" prop="created_at" min-width="160"></el-table-column>
|
|
|
+ <el-table-column label="审核人" prop="product_check_name" min-width="80"></el-table-column>
|
|
|
+ <el-table-column label="审核备注" prop="product_check_remark" min-width="140" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column label="审核时间" prop="product_check_at" min-width="160"></el-table-column>
|
|
|
<el-table-column label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" @click="edit(scope.row)">操作</el-button>
|