|
@@ -22,7 +22,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作">
|
|
|
<template #default="{ row }">
|
|
|
- <el-button v-if="row.state != '1'&&row.state!=3" link type="danger" @click="del(row.id)" style="font-size: 20px"
|
|
|
+ <el-button
|
|
|
+ v-if="row.state != '1' && row.state != 3"
|
|
|
+ link
|
|
|
+ type="danger"
|
|
|
+ @click="del(row.id)"
|
|
|
+ style="font-size: 20px"
|
|
|
>删除</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -126,7 +131,7 @@
|
|
|
value-format="YYYY-MM-DD"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
-<!-- <el-form-item
|
|
|
+ <!-- <el-form-item
|
|
|
label="指定检验人"
|
|
|
prop="remark2[user2]"
|
|
|
:rules="{
|
|
@@ -159,7 +164,7 @@ import { addRework, addRework1, getList, getList1, delError } from "@/api/rework
|
|
|
import { useProcessStore } from "@/store/modules/processView";
|
|
|
import { useDictionaryStore } from "@/store/modules/dictionary";
|
|
|
import { getUserTree } from "@/api/user/index";
|
|
|
-import {getunProcessedList} from "@/api/prosteps/index.js";
|
|
|
+import { getunProcessedList } from "@/api/prosteps/index.js";
|
|
|
const dictStroe = useDictionaryStore();
|
|
|
const processStore = useProcessStore();
|
|
|
const ruleForm = ref({
|
|
@@ -177,7 +182,7 @@ const ruleForm1 = ref({
|
|
|
});
|
|
|
const tableData = ref([]);
|
|
|
|
|
|
-const processList=ref([]);
|
|
|
+const processList = ref([]);
|
|
|
const toAdd = () => {
|
|
|
formStatus.value = false;
|
|
|
/*breakReportInfoById(processStore.scanInfo.id).then((res) => {
|
|
@@ -221,6 +226,7 @@ const getPagination1 = async () => {
|
|
|
pageNo: page.value,
|
|
|
pageSize: limit.value,
|
|
|
workOrderCode: processStore.odersData.workOrderCode,
|
|
|
+ operationId: processStore.scanInfo.operationId,
|
|
|
});
|
|
|
tableData.value = data.records;
|
|
|
total.value = data.totalCount;
|