Showing
1 changed file
with
5 additions
and
0 deletions
| ... | @@ -257,6 +257,11 @@ const currentStatusIndex = computed(() => { | ... | @@ -257,6 +257,11 @@ const currentStatusIndex = computed(() => { |
| 257 | return statusColumns.findIndex(item => item.value === selectedStatus.value) | 257 | return statusColumns.findIndex(item => item.value === selectedStatus.value) |
| 258 | }) | 258 | }) |
| 259 | 259 | ||
| 260 | +onMounted(() => { | ||
| 261 | + // 初始化加载订单列表 | ||
| 262 | + onLoad() | ||
| 263 | +}) | ||
| 264 | + | ||
| 260 | // 状态选择确认 | 265 | // 状态选择确认 |
| 261 | const onStatusConfirm = ({ selectedValues, selectedOptions }) => { | 266 | const onStatusConfirm = ({ selectedValues, selectedOptions }) => { |
| 262 | selectedStatus.value = selectedValues[0] | 267 | selectedStatus.value = selectedValues[0] | ... | ... |
-
Please register or login to post a comment