| | |
| | | </el-table-column> |
| | | <el-table-column prop="customerName" label="客户名称" width="180"/> |
| | | <el-table-column prop="productName" label="产品名称" width="200"/> |
| | | <el-table-column prop="specification" label="规格型号" width="120"/> |
| | | <el-table-column prop="specification" label="尺寸" width="120"/> |
| | | <el-table-column prop="basePrice" label="基础价格" width="100"> |
| | | <template #default="scope"> |
| | | ¥{{ scope.row.basePrice }}/吨 |
| | |
| | | </el-table-column> |
| | | <el-table-column label="操作" width="200" fixed="right" align="center"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="handleViewPriceStrategy(scope.row)">查看</el-button> |
| | | <el-button link type="primary" @click="handleViewPriceStrategy(scope.row)" style="color: #67C23A">查看</el-button> |
| | | <el-button link type="primary" @click="handleEditPriceStrategy(scope.row)">编辑</el-button> |
| | | <el-button link type="danger" @click="handleDeletePriceStrategy(scope.row)">删除</el-button> |
| | | </template> |
| | |
| | | </el-table-column> |
| | | <el-table-column label="操作" width="120" fixed="right" align="center"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="handleViewContract(scope.row)">查看详情</el-button> |
| | | <el-button link type="primary" @click="handleViewContract(scope.row)" style="color: #67C23A">查看详情</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="规格型号" prop="specification"> |
| | | <el-input v-model="priceStrategyForm.specification" placeholder="请输入规格型号" :disabled="priceStrategyDialogMode === 'view'" /> |
| | | <el-form-item label="尺寸" prop="specification"> |
| | | <el-input v-model="priceStrategyForm.specification" placeholder="请输入尺寸" :disabled="priceStrategyDialogMode === 'view'" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |