193 lines
6.3 KiB
Vue
193 lines
6.3 KiB
Vue
<template>
|
|
<div class="flex flex-col h-full p-2">
|
|
<Pageheader title="车辆管理"></Pageheader>
|
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
<div v-show="showSearch" class="mb-[10px]">
|
|
<el-card shadow="hover">
|
|
<el-form ref="queryFormRef" :model="queryParams" @submit.prevent="handleQuery" :inline="true">
|
|
<el-form-item label="车牌号" prop="carNum">
|
|
<el-input v-model.trim="queryParams.carNum" placeholder="请输入车牌号" clearable @keyup.enter="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="车辆品牌" prop="carBrand">
|
|
<el-input v-model.trim="queryParams.carBrand" placeholder="请输入车辆品牌" clearable @keyup.enter="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="车身颜色" prop="carColor">
|
|
<el-input v-model.trim="queryParams.carColor" placeholder="请输入车身颜色" clearable @keyup.enter="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="handleQuery">搜索</el-button>
|
|
<el-button @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-card>
|
|
</div>
|
|
</transition>
|
|
|
|
<el-card class="flex-1" shadow="never">
|
|
<template #header>
|
|
<el-row :gutter="10" class="mb8">
|
|
<right-toolbar
|
|
:disable-delete="multiple"
|
|
:disable-edit="single"
|
|
:show-add="checkPermi(['car:car:add'])"
|
|
:show-edit="checkPermi(['car:car:edit'])"
|
|
:show-delete="checkPermi(['car:car:remove'])"
|
|
@update:add="handleAdd"
|
|
@update:edit="handleUpdate()"
|
|
@update:delete="handleDelete()"
|
|
></right-toolbar>
|
|
</el-row>
|
|
</template>
|
|
|
|
<el-table v-loading="loading" border :data="carList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="车牌号" width="155" align="center" prop="carNum" />
|
|
<el-table-column label="车辆品牌" width="155" align="center" prop="carBrand" />
|
|
<el-table-column label="车辆型号" width="155" align="center" prop="carModel" />
|
|
<el-table-column label="车身颜色" width="125" align="center" prop="carColor" />
|
|
<el-table-column label="持有人" width="155" align="center" prop="userName">
|
|
<template #default="scope"> {{ scope.row.userName }} </template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" prop="remark" show-overflow-tooltip />
|
|
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
|
<template #default="scope">
|
|
<el-button link type="primary" @click="handleUpdate(scope.row)" v-has-permi="['car:car:edit']">修改</el-button>
|
|
<el-button link type="primary" @click="handleDelete(scope.row)" v-has-permi="['car:car:remove']">删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="Car" lang="ts">
|
|
import Pageheader from '@/components/Pageheader/index.vue';
|
|
import { listCar, delCar } from '@/api/system/cars/index';
|
|
import { CarVO, CarQuery, CarForm } from '@/api/system/cars/type';
|
|
import { listResident } from '@/api/system/residentReviewProcess/resident';
|
|
import { checkPermi } from '@/utils/permission';
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
const router = useRouter();
|
|
|
|
const carList = ref<CarVO[]>([]);
|
|
const buttonLoading = ref(false);
|
|
const loading = ref(true);
|
|
const showSearch = ref(true);
|
|
const ids = ref<Array<string | number>>([]);
|
|
const single = ref(true);
|
|
const multiple = ref(true);
|
|
const total = ref(0);
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
const carFormRef = ref<ElFormInstance>();
|
|
|
|
const initFormData: CarForm = {
|
|
id: undefined,
|
|
areaId: undefined,
|
|
parkingId: undefined,
|
|
residentId: undefined,
|
|
carNum: undefined,
|
|
carBrand: undefined,
|
|
carModel: undefined,
|
|
carColor: undefined,
|
|
remark: undefined,
|
|
carImageUrl: undefined,
|
|
createBy: undefined,
|
|
createTime: undefined,
|
|
updateBy: undefined,
|
|
updateTime: undefined
|
|
};
|
|
const data = reactive<PageData<CarForm, CarQuery>>({
|
|
form: { ...initFormData },
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
areaId: undefined,
|
|
parkingId: undefined,
|
|
residentId: undefined,
|
|
carNum: undefined,
|
|
carBrand: undefined,
|
|
carModel: undefined,
|
|
carColor: undefined,
|
|
carImageUrl: undefined
|
|
},
|
|
rules: {
|
|
id: [{ required: true, message: '车辆管理表id不能为空', trigger: 'blur' }]
|
|
}
|
|
});
|
|
|
|
const { queryParams } = toRefs(data);
|
|
|
|
/** 查询车辆管理列表 */
|
|
const getList = async () => {
|
|
loading.value = true;
|
|
listCar(queryParams.value)
|
|
.then((res) => {
|
|
carList.value = res.rows;
|
|
total.value = res.total;
|
|
})
|
|
.finally(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
queryParams.value.pageNum = 1;
|
|
getList();
|
|
};
|
|
|
|
/** 重置按钮操作 */
|
|
const resetQuery = () => {
|
|
queryFormRef.value?.resetFields();
|
|
handleQuery();
|
|
};
|
|
|
|
/** 多选框选中数据 */
|
|
const handleSelectionChange = (selection: CarVO[]) => {
|
|
ids.value = selection.map((item) => item.id);
|
|
single.value = selection.length != 1;
|
|
multiple.value = !selection.length;
|
|
};
|
|
|
|
/** 新增按钮操作 */
|
|
const handleAdd = () => {
|
|
router.push({
|
|
path: '/carArea/addCars'
|
|
});
|
|
};
|
|
|
|
/** 修改按钮操作 */
|
|
const handleUpdate = async (row?: CarVO) => {
|
|
const id = row?.id || ids.value[0];
|
|
router.push({
|
|
path: '/carArea/editCars',
|
|
query: {
|
|
id: id
|
|
}
|
|
});
|
|
};
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (row?: CarVO) => {
|
|
const _ids = row?.id || ids.value;
|
|
await proxy?.$modal.confirm('该信息删除后无法恢复,确定要删除吗?').finally(() => (loading.value = false));
|
|
await delCar(_ids);
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
await getList();
|
|
};
|
|
|
|
onMounted(() => {
|
|
getList();
|
|
});
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.el-table {
|
|
height: calc(100% - 80px);
|
|
}
|
|
</style>
|