| | |
| | | const dynamicList = ref([]); |
| | | const generateColumnList = ref([]); |
| | | const open = ref(false); |
| | | const loading = ref(true); |
| | | const loading = ref(false); |
| | | const showSearch = ref(true); |
| | | const single = ref(true); |
| | | const multiple = ref(true); |
| | |
| | | |
| | | /** 修改按钮操作 */ |
| | | function handleUpdate(row) { |
| | | loading.value = true; |
| | | listApsPlateProcessShopStatUpdate().then((response) => { |
| | | // form.value = response.data; |
| | | ElMessage({ |
| | | message: "数据更新成功", |
| | | type: "success", |
| | | }); |
| | | loading.value = false; |
| | | getList(); |
| | | }); |
| | | } |
| | |
| | | |
| | | const aps_plate_process_statList = ref([]); |
| | | const open = ref(false); |
| | | const loading = ref(true); |
| | | const loading = ref(false); |
| | | const showSearch = ref(true); |
| | | const single = ref(true); |
| | | const multiple = ref(true); |
| | |
| | | /** 修改按钮操作 */ |
| | | function handleUpdate(row) { |
| | | reset(); |
| | | loading.value = true; |
| | | updateStat().then(response => { |
| | | form.value = response.data; |
| | | loading.value = false; |
| | | ElMessage({ |
| | | message: '数据更新成功', |
| | | type: 'success', |