|
@@ -102,7 +102,6 @@
|
|
|
>
|
|
|
</el-form-item>
|
|
|
<div style="margin-top: 20px">
|
|
|
- <el-button type="primary" @click="handleFallback">回退</el-button>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
@click="handleWasteRecycling"
|
|
@@ -375,7 +374,6 @@ function getLot() {
|
|
|
if (res.code == 200) {
|
|
|
lotList.value = res.rows;
|
|
|
total.value = res.total;
|
|
|
- lotInfo.value = res.rows;
|
|
|
loading.value = false;
|
|
|
}
|
|
|
});
|
|
@@ -408,16 +406,7 @@ function getPassDate() {
|
|
|
dateTemp = myDate.getFullYear() + "-" + (month < 10 ? '0' + month : '' + month) + "-" + day;
|
|
|
queryParams.value.startTime = dateTemp
|
|
|
}
|
|
|
-/**工序切换 */
|
|
|
-function handleProcessChange() {
|
|
|
- console.log(processList.value[processAlias.value].label);
|
|
|
|
|
|
- // 使用 some 方法检查是否存在于 processList 中
|
|
|
- lotList.value = lotInfo.value.filter((item) => {
|
|
|
- // 检查当前对象的 processAlias 是否等于目标值
|
|
|
- return item.processAlias == processList.value[processAlias.value].label;
|
|
|
- });
|
|
|
-}
|
|
|
|
|
|
/**搜索 */
|
|
|
function handleQuerydaywork() {
|