7/4新增公安备案底部链接

This commit is contained in:
Zy
2026-07-04 15:40:37 +08:00
parent dff51dd4d4
commit 54d467ede7
16 changed files with 143 additions and 263 deletions

View File

@@ -101,7 +101,6 @@ interface ParkingCostType extends ParkingCostVO {
parkingName?: string;
}
const parkingCostList = ref<ParkingCostType[]>([]);
const buttonLoading = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref<Array<string | number>>([]);
@@ -110,7 +109,6 @@ const multiple = ref(true);
const total = ref(0);
const queryFormRef = ref<ElFormInstance>();
const parkingCostFormRef = ref<ElFormInstance>();
const initFormData: ParkingCostForm = {
id: undefined,
@@ -149,7 +147,7 @@ const data = reactive<PageData<ParkingCostForm, ParkingCostQuery>>({
}
});
const { queryParams, form, rules } = toRefs(data);
const { queryParams } = toRefs(data);
/** 查询停车缴费管理列表 */
const getList = async () => {
loading.value = true;
@@ -191,7 +189,7 @@ const handleAdd = () => {
};
/** 修改按钮操作 */
const handleUpdate = async (row?: ParkingCostVO) => {
const handleUpdate = (row?: ParkingCostVO) => {
const _id = row?.id || ids.value[0];
router.push({
path: '/carArea/editParkingCost',