|
@@ -50,16 +50,16 @@ const listData = ref([]);
|
|
|
|
|
|
const listConfig = ref([
|
|
|
{
|
|
|
- label: proxy.t('forward.productName'),
|
|
|
+ label: proxy.t("forward.productName"),
|
|
|
prop: "productName",
|
|
|
},
|
|
|
|
|
|
{
|
|
|
- label: proxy.t('forward.productSN'),
|
|
|
+ label: proxy.t("forward.productSN"),
|
|
|
prop: "productSn",
|
|
|
},
|
|
|
{
|
|
|
- label: proxy.t('forward.currentProcess'),
|
|
|
+ label: proxy.t("forward.currentProcess"),
|
|
|
prop: "productionProcessesName",
|
|
|
},
|
|
|
]);
|
|
@@ -81,8 +81,8 @@ const onClickLeft = () => proxy.$router.push("/main/working");
|
|
|
const toDtl = (row) => {
|
|
|
let type = "";
|
|
|
if (
|
|
|
- row.nextProductionProcessesId === "" ||
|
|
|
- row.nextProductionProcessesId === -1
|
|
|
+ row.nextProductionProcessesId == "" ||
|
|
|
+ row.nextProductionProcessesId == "-1"
|
|
|
) {
|
|
|
type = "20";
|
|
|
} else {
|