|
@@ -13,8 +13,8 @@ export struct SwitchingProductDialog{
|
|
|
@State currentOperationId:string = ''
|
|
|
//当前工位
|
|
|
@State currentStationId:string = ''
|
|
|
- //选择的按钮索引
|
|
|
- @State selectedButtonIndex: number = 1
|
|
|
+ //选择的按钮索引(默认加载全部)
|
|
|
+ @State selectedButtonIndex: number = 0
|
|
|
//扫描的流水号/序列/铭牌号
|
|
|
@State scanSeqValue:string = ''
|
|
|
|
|
@@ -51,7 +51,7 @@ export struct SwitchingProductDialog{
|
|
|
}
|
|
|
|
|
|
aboutToAppear(): void {
|
|
|
- this.onQueryTask([2])
|
|
|
+ this.onQueryTask([])
|
|
|
}
|
|
|
|
|
|
@Builder
|