|
@@ -147,34 +147,36 @@
|
|
|
<el-table-column label="ID" prop="id" width="80"></el-table-column>
|
|
|
<el-table-column label="商品名称" prop="product_name"></el-table-column>
|
|
|
<el-table-column label="商品分类" prop="category_name"></el-table-column>
|
|
|
- <el-table-column label="价格(元)">
|
|
|
+ <el-table-column label="价格(元)" prop="product_price" sortable>
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ scope.row.product_price | fen2Yuan }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="出单位置">
|
|
|
+ <el-table-column label="出单位置" prop="product_place" sortable>
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['', '厨房', '柜台'][scope.row.product_place] }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="存酒">
|
|
|
+ <el-table-column label="存酒" prop="product_is_storage" sortable>
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['不支持', '支持'][scope.row.product_is_storage] }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="是否售罄">
|
|
|
+ <el-table-column label="是否售罄" prop="is_sell_out" sortable>
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['供应中', '售罄'][scope.row.is_sell_out] }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="是否上架" width="100">
|
|
|
+ <el-table-column label="是否上架" prop="product_status" sortable width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['下架', '上架'][scope.row.product_status] }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button v-permission="'business_pms_goods_storage'" :disabled="booLock" type="text" @click="showStoragedialogForm(scope.row)">是否售罄</el-button>
|
|
|
+ <el-button v-permission="'business_pms_goods_storage'" :disabled="booLock" type="text"
|
|
|
+ @click="showStoragedialogForm(scope.row)">是否售罄
|
|
|
+ </el-button>
|
|
|
<el-button type="text" v-permission="'business_pms_goods_edit'" @click="edit(scope.row)">编辑</el-button>
|
|
|
<el-button type="text" v-permission="'business_pms_goods_del'" @click="del(scope.row)">删除</el-button>
|
|
|
</template>
|