lanan-system-vue/src/views/partner/userCar.vue
2024-09-01 21:18:38 +08:00

492 lines
17 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="用户id" prop="userId">
<el-input
v-model="queryParams.userId"
placeholder="请输入用户id"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="车牌号码" prop="carNo">
<el-input
v-model="queryParams.carNo"
placeholder="请输入车牌号码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="保养日期">
<el-date-picker
v-model="daterangeMaintenanceDate"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item label="保养里程" prop="maintenanceMileage">
<el-input
v-model="queryParams.maintenanceMileage"
placeholder="请输入保养里程"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="年检日期">
<el-date-picker
v-model="daterangeInspectionDate"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item label="保险日期">
<el-date-picker
v-model="daterangeInsuranceDate"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item label="下次保养日期">
<el-date-picker
v-model="daterangeNextMaintenanceDate"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item label="下次保养里程" prop="nextMaintenanceMileage">
<el-input
v-model="queryParams.nextMaintenanceMileage"
placeholder="请输入下次保养里程"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="下次年检日期">
<el-date-picker
v-model="daterangeNextInspectionDate"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item label="保险到期日期">
<el-date-picker
v-model="daterangeInsuranceExpiryDate"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:userCar:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:userCar:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:userCar:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:userCar:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userCarList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="用户车id" align="center" prop="carId" />
<el-table-column label="用户id" align="center" prop="userId" />
<el-table-column label="车辆型号" align="center" prop="carModel" />
<el-table-column label="车牌号码" align="center" prop="carNo" />
<el-table-column label="保养日期" align="center" prop="maintenanceDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.maintenanceDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="保养里程" align="center" prop="maintenanceMileage" />
<el-table-column label="年检日期" align="center" prop="inspectionDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.inspectionDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="保险日期" align="center" prop="insuranceDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.insuranceDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="下次保养日期" align="center" prop="nextMaintenanceDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.nextMaintenanceDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="下次保养里程" align="center" prop="nextMaintenanceMileage" />
<el-table-column label="下次年检日期" align="center" prop="nextInspectionDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.nextInspectionDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="保险到期日期" align="center" prop="insuranceExpiryDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.insuranceExpiryDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:userCar:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:userCar:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改用户车辆对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-form-item label="用户id" prop="userId">
<el-input v-model="form.userId" placeholder="请输入用户id" />
</el-form-item>
<el-form-item label="车辆型号" prop="carModel">
<el-input v-model="form.carModel" placeholder="请输入车辆型号" />
</el-form-item>
<el-form-item label="车牌号码" prop="carNo">
<el-input v-model="form.carNo" placeholder="请输入车牌号码" />
</el-form-item>
<el-form-item label="保养日期" prop="maintenanceDate">
<el-date-picker clearable
v-model="form.maintenanceDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择保养日期">
</el-date-picker>
</el-form-item>
<el-form-item label="保养里程" prop="maintenanceMileage">
<el-input v-model="form.maintenanceMileage" placeholder="请输入保养里程" />
</el-form-item>
<el-form-item label="年检日期" prop="inspectionDate">
<el-date-picker clearable
v-model="form.inspectionDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择年检日期">
</el-date-picker>
</el-form-item>
<el-form-item label="保险日期" prop="insuranceDate">
<el-date-picker clearable
v-model="form.insuranceDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择保险日期">
</el-date-picker>
</el-form-item>
<el-form-item label="下次保养日期" prop="nextMaintenanceDate">
<el-date-picker clearable
v-model="form.nextMaintenanceDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择下次保养日期">
</el-date-picker>
</el-form-item>
<el-form-item label="下次保养里程" prop="nextMaintenanceMileage">
<el-input v-model="form.nextMaintenanceMileage" placeholder="请输入下次保养里程" />
</el-form-item>
<el-form-item label="下次年检日期" prop="nextInspectionDate">
<el-date-picker clearable
v-model="form.nextInspectionDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择下次年检日期">
</el-date-picker>
</el-form-item>
<el-form-item label="保险到期日期" prop="insuranceExpiryDate">
<el-date-picker clearable
v-model="form.insuranceExpiryDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择保险到期日期">
</el-date-picker>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listUserCar, getUserCar, delUserCar, addUserCar, updateUserCar } from "@/api/system/userCar";
export default {
name: "UserCar",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 用户车辆表格数据
userCarList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 保险到期日期时间范围
daterangeMaintenanceDate: [],
// 保险到期日期时间范围
daterangeInspectionDate: [],
// 保险到期日期时间范围
daterangeInsuranceDate: [],
// 保险到期日期时间范围
daterangeNextMaintenanceDate: [],
// 保险到期日期时间范围
daterangeNextInspectionDate: [],
// 保险到期日期时间范围
daterangeInsuranceExpiryDate: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
userId: null,
carNo: null,
maintenanceDate: null,
maintenanceMileage: null,
inspectionDate: null,
insuranceDate: null,
nextMaintenanceDate: null,
nextMaintenanceMileage: null,
nextInspectionDate: null,
insuranceExpiryDate: null
},
// 表单参数
form: {},
// 表单校验
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询用户车辆列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if (null != this.daterangeMaintenanceDate && '' != this.daterangeMaintenanceDate) {
this.queryParams.params["beginMaintenanceDate"] = this.daterangeMaintenanceDate[0];
this.queryParams.params["endMaintenanceDate"] = this.daterangeMaintenanceDate[1];
}
if (null != this.daterangeInspectionDate && '' != this.daterangeInspectionDate) {
this.queryParams.params["beginInspectionDate"] = this.daterangeInspectionDate[0];
this.queryParams.params["endInspectionDate"] = this.daterangeInspectionDate[1];
}
if (null != this.daterangeInsuranceDate && '' != this.daterangeInsuranceDate) {
this.queryParams.params["beginInsuranceDate"] = this.daterangeInsuranceDate[0];
this.queryParams.params["endInsuranceDate"] = this.daterangeInsuranceDate[1];
}
if (null != this.daterangeNextMaintenanceDate && '' != this.daterangeNextMaintenanceDate) {
this.queryParams.params["beginNextMaintenanceDate"] = this.daterangeNextMaintenanceDate[0];
this.queryParams.params["endNextMaintenanceDate"] = this.daterangeNextMaintenanceDate[1];
}
if (null != this.daterangeNextInspectionDate && '' != this.daterangeNextInspectionDate) {
this.queryParams.params["beginNextInspectionDate"] = this.daterangeNextInspectionDate[0];
this.queryParams.params["endNextInspectionDate"] = this.daterangeNextInspectionDate[1];
}
if (null != this.daterangeInsuranceExpiryDate && '' != this.daterangeInsuranceExpiryDate) {
this.queryParams.params["beginInsuranceExpiryDate"] = this.daterangeInsuranceExpiryDate[0];
this.queryParams.params["endInsuranceExpiryDate"] = this.daterangeInsuranceExpiryDate[1];
}
listUserCar(this.queryParams).then(response => {
this.userCarList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
carId: null,
userId: null,
carModel: null,
carNo: null,
maintenanceDate: null,
maintenanceMileage: null,
inspectionDate: null,
insuranceDate: null,
nextMaintenanceDate: null,
nextMaintenanceMileage: null,
nextInspectionDate: null,
insuranceExpiryDate: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.daterangeMaintenanceDate = [];
this.daterangeInspectionDate = [];
this.daterangeInsuranceDate = [];
this.daterangeNextMaintenanceDate = [];
this.daterangeNextInspectionDate = [];
this.daterangeInsuranceExpiryDate = [];
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.carId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加用户车辆";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const carId = row.carId || this.ids
getUserCar(carId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改用户车辆";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.carId != null) {
updateUserCar(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addUserCar(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const carIds = row.carId || this.ids;
this.$modal.confirm('是否确认删除用户车辆编号为"' + carIds + '"的数据项?').then(function() {
return delUserCar(carIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/userCar/export', {
...this.queryParams
}, `userCar_${new Date().getTime()}.xlsx`)
}
}
};
</script>