fix:pc页面修改

This commit is contained in:
5g0Wp7Zy 2025-06-09 17:50:46 +08:00
parent 107986c3a6
commit 8987c3a4ae

View File

@ -59,11 +59,12 @@
</a-row>
<a-row>
<a-col :span="24">
<a-form-item label="限制无单时长调度">
<a-radio-group>
<a-radio :value="'1'"></a-radio>
<a-radio :value="'0'"></a-radio>
</a-radio-group>
<a-form-item label="特殊车调度限制">
<a-checkbox-group>
<a-checkbox value="A">超区车</a-checkbox>
<a-checkbox value="A">故障车</a-checkbox>
<a-checkbox value="A">扣押车</a-checkbox>
</a-checkbox-group>
</a-form-item>
</a-col>
</a-row>
@ -73,7 +74,7 @@
<script setup>
import { ref } from 'vue'
const visible = ref(true)
const visible = ref(false)
const value = ref(1)
</script>