| | |
| | | |
| | | |
| | | <!-- 商品表格 --> |
| | | <el-table |
| | | :data="modifiedProducts" |
| | | border |
| | | style="width: 100%" |
| | | > |
| | | <el-table :data="modifiedProducts" border style="width: 100%"> |
| | | |
| | | <el-table-column |
| | | label="商品" |
| | | > |
| | | <el-table-column label="商品"> |
| | | <template slot-scope="{row}"> |
| | | <div class="product-cell"> |
| | | <el-image |
| | | :src="row.image" |
| | | fit="cover" |
| | | style="width: 50px; height: 50px; margin-right: 10px" |
| | | ></el-image> |
| | | <el-image :src="row.image" fit="cover" style="width: 50px; height: 50px; margin-right: 10px"></el-image> |
| | | <span>{{ row.product_name }}</span> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column |
| | | label="规格" |
| | | > |
| | | <el-table-column label="规格" width="120"> |
| | | <template slot-scope="{row}"> |
| | | <div class="product-cell"> |
| | | <span>{{ row.product_sku_name }}</span> |
| | |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column |
| | | label="当前价格" |
| | | > |
| | | <el-table-column label="当前价格" width="100"> |
| | | <template slot-scope="{row}"> |
| | | ¥{{ row.product_price }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="新价格" |
| | | > |
| | | <el-table-column label="活动价格" width="180"> |
| | | <template slot-scope="{row}"> |
| | | <el-input-number |
| | | v-model="row.product_new_price" |
| | | :min="0" |
| | | :precision="2" |
| | | @change="handleConfirm" |
| | | controls-position="right" |
| | | style="width: 150px" |
| | | ></el-input-number> |
| | | <el-input-number v-model="row.product_new_price" :min="0" :precision="2" @change="handleConfirm" |
| | | controls-position="right" style="width: 150px"></el-input-number> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="操作" |
| | | width="80" |
| | | > |
| | | <el-table-column label="操作" width="60"> |
| | | <template slot-scope="{row}"> |
| | | <el-button |
| | | type="text" |
| | | size="small" |
| | | @click="handleDelPrice(row)" |
| | | >删除</el-button> |
| | | <el-button type="text" size="small" @click="handleDelPrice(row)">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |