| | |
| | | prop="specificationModel" /> |
| | | <el-table-column label="单位" |
| | | prop="unit" /> |
| | | <el-table-column label="生产状态" |
| | | width="100px" |
| | | align="center"> |
| | | <template #default="scope"> |
| | | <el-tag v-if="scope.row.productionStatus === '已完成'" |
| | | type="success">已完成</el-tag> |
| | | <el-tag v-if="scope.row.productionStatus === '生产中'" |
| | | type="warning">生产中</el-tag> |
| | | <el-tag v-if="scope.row.productionStatus === '未开始'" |
| | | type="danger">未开始</el-tag> |
| | | <el-tag v-if="!scope.row.productionStatus" |
| | | type="info">暂无状态</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <!-- <el-table-column label="生产状态"--> |
| | | <!-- width="100px"--> |
| | | <!-- align="center">--> |
| | | <!-- <template #default="scope">--> |
| | | <!-- <el-tag v-if="scope.row.productionStatus === '已完成'"--> |
| | | <!-- type="success">已完成</el-tag>--> |
| | | <!-- <el-tag v-if="scope.row.productionStatus === '生产中'"--> |
| | | <!-- type="warning">生产中</el-tag>--> |
| | | <!-- <el-tag v-if="scope.row.productionStatus === '未开始'"--> |
| | | <!-- type="danger">未开始</el-tag>--> |
| | | <!-- <el-tag v-if="!scope.row.productionStatus"--> |
| | | <!-- type="info">暂无状态</el-tag>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <el-table-column label="产品状态" |
| | | width="100px" |
| | | align="center"> |
| | |
| | | <el-table-column label="不含税总价(元)" |
| | | prop="taxExclusiveTotalPrice" |
| | | :formatter="formattedNumber" /> |
| | | <el-table-column label="是否质检" |
| | | prop="isChecked" |
| | | width="100" |
| | | align="center"> |
| | | <template #default="scope"> |
| | | <el-tag v-if="scope.row.isChecked === true || scope.row.isChecked === '是'" type="success">是</el-tag> |
| | | <el-tag v-else type="info">否</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <!--操作--> |
| | | <el-table-column Width="60px" |
| | | label="操作" |
| | | align="center"> |
| | | <template #default="scope"> |
| | | <el-button :disabled="scope.row.approveStatus!==1" |
| | | <el-button :disabled="scope.row.approveStatus !=1" |
| | | link |
| | | type="primary" |
| | | size="small" |
| | |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="是否质检:" |
| | | prop="isChecked"> |
| | | <el-radio-group v-model="productForm.isChecked"> |
| | | <el-radio :label="true">是</el-radio> |
| | | <el-radio :label="false">否</el-radio> |
| | | </el-radio-group> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <template #footer> |
| | |
| | | taxInclusiveTotalPrice: "", |
| | | taxExclusiveTotalPrice: "", |
| | | invoiceType: "", |
| | | isChecked: false, |
| | | speculativeTradingName: "", |
| | | }, |
| | | productRules: { |