Merge branch 'demo'
This commit is contained in:
38
src/api/vehicleMent/add.js
Normal file
38
src/api/vehicleMent/add.js
Normal file
@ -0,0 +1,38 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 车辆列表
|
||||
export function vehicleList(params) {
|
||||
return request({
|
||||
url: '/business/hxCarLocation/list',
|
||||
params,
|
||||
})
|
||||
}
|
||||
// 车辆 添加
|
||||
export function vehicleAdd(data) {
|
||||
return request({
|
||||
url: '/business/hxCarLocation',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 车辆 获取详情
|
||||
export function vehicleDetail(id) {
|
||||
return request({
|
||||
url: '/business/hxCarLocation/' + id,
|
||||
})
|
||||
}
|
||||
// 车辆 修改
|
||||
export function vehicleEdit(data) {
|
||||
return request({
|
||||
url: '/business/hxCarLocation',
|
||||
method: 'put',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 车辆 批量删除
|
||||
export function vehicleDelete(id) {
|
||||
return request({
|
||||
url: '/business/hxCarLocation/' + id,
|
||||
method: 'delete',
|
||||
})
|
||||
}
|
22
src/api/vehicleMent/journal.js
Normal file
22
src/api/vehicleMent/journal.js
Normal file
@ -0,0 +1,22 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 获取大图数据
|
||||
export function bigPicList() {
|
||||
return request({
|
||||
url: '/business/hxCarLocationLog/bigPic',
|
||||
})
|
||||
}
|
||||
// 日志列表
|
||||
export function journalList(params) {
|
||||
return request({
|
||||
url: '/business/hxCarLocationLog/list',
|
||||
params,
|
||||
})
|
||||
}
|
||||
// 日志 批量删除
|
||||
export function journalDelete(ids) {
|
||||
return request({
|
||||
url: '/business/hxCarLocationLog/' + ids,
|
||||
method: 'delete',
|
||||
})
|
||||
}
|
17
src/api/vehicleMent/map.js
Normal file
17
src/api/vehicleMent/map.js
Normal file
@ -0,0 +1,17 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 大图列表
|
||||
export function mapList(params) {
|
||||
return request({
|
||||
url: '/business/hxCarLocationMap/list',
|
||||
params,
|
||||
})
|
||||
}
|
||||
// 修改大图
|
||||
export function mapEdit(data) {
|
||||
return request({
|
||||
url: '/business/hxCarLocationMap',
|
||||
method: 'put',
|
||||
data,
|
||||
})
|
||||
}
|
38
src/api/vehicleMent/reader.js
Normal file
38
src/api/vehicleMent/reader.js
Normal file
@ -0,0 +1,38 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 读卡器列表
|
||||
export function readerCardList(params) {
|
||||
return request({
|
||||
url: '/business/hxReaderInfo/list',
|
||||
params,
|
||||
})
|
||||
}
|
||||
// 读卡器 添加
|
||||
export function readerCardAdd(data) {
|
||||
return request({
|
||||
url: '/business/hxReaderInfo',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 读卡器 获取详情
|
||||
export function readerCardDetail(id) {
|
||||
return request({
|
||||
url: '/business/hxReaderInfo/' + id,
|
||||
})
|
||||
}
|
||||
// 读卡器 修改
|
||||
export function readerCardEdit(data) {
|
||||
return request({
|
||||
url: '/business/hxReaderInfo',
|
||||
method: 'put',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 读卡器 批量删除
|
||||
export function readerCardDelete(id) {
|
||||
return request({
|
||||
url: '/business/hxReaderInfo/' + id,
|
||||
method: 'delete',
|
||||
})
|
||||
}
|
1
src/assets/icons/svg/reader.svg
Normal file
1
src/assets/icons/svg/reader.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1642384668305" class="icon" viewBox="0 0 1369 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1516" width="42.78125" height="32" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"></style></defs><path d="M684.840764 1024L1369.681529 0H0z" p-id="1517" fill="#f4ea2a" data-spm-anchor-id="a313x.7781069.0.i0" class="selected"></path></svg>
|
After Width: | Height: | Size: 513 B |
327
src/views/vehicleMent/add.vue
Normal file
327
src/views/vehicleMent/add.vue
Normal file
@ -0,0 +1,327 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="90px"
|
||||
>
|
||||
<el-form-item label="驾驶人姓名" prop="driverName">
|
||||
<el-input
|
||||
v-model="queryParams.driverName"
|
||||
placeholder="请输入驾驶人姓名"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌号" prop="carId">
|
||||
<el-input
|
||||
v-model="queryParams.carId"
|
||||
placeholder="请输入车牌号"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</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="['business:hxCarLocation:add']"
|
||||
>新增</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="['business:hxCarLocation:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="postList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="数据编号" align="center" prop="id" />
|
||||
<el-table-column label="车牌号" align="center" prop="carId" />
|
||||
<el-table-column label="车辆型号" align="center" prop="carModel" />
|
||||
<el-table-column label="车辆图片" align="center" prop="carPic">
|
||||
<template slot-scope="scope">
|
||||
<el-image
|
||||
style="width: 100px; height: 100px"
|
||||
:src="scope.row.carPic"
|
||||
fit="contain"
|
||||
></el-image>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="驾驶人姓名" align="center" prop="driverName" />
|
||||
<el-table-column label="驾驶人手机号" align="center" prop="driverPhone" />
|
||||
<el-table-column
|
||||
label="车辆定位卡ID"
|
||||
align="center"
|
||||
prop="locationCardNum"
|
||||
/>
|
||||
<el-table-column label="创建时间" align="center" prop="createTime" />
|
||||
<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="['business:hxCarLocation:edit']"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['business:hxCarLocation: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="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||
<el-form-item label="车牌号" prop="carId">
|
||||
<el-input v-model="form.carId" placeholder="请输入车牌号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆型号" prop="carModel">
|
||||
<el-input v-model="form.carModel" placeholder="请输入车辆型号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="驾驶人姓名" prop="driverName">
|
||||
<el-input v-model="form.driverName" placeholder="请输入驾驶人姓名" />
|
||||
</el-form-item>
|
||||
<el-form-item label="驾驶人手机号" prop="driverPhone">
|
||||
<el-input
|
||||
v-model="form.driverPhone"
|
||||
placeholder="请输入驾驶人手机号"
|
||||
maxlength="11"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆定位卡ID" prop="locationCardNum">
|
||||
<el-input
|
||||
v-model="form.locationCardNum"
|
||||
placeholder="请输入车辆定位卡ID"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆图片" prop="carPic">
|
||||
<ImageUpload v-model="form.carPic" :isShowTip="false" :limit="1" />
|
||||
</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 {
|
||||
vehicleList,
|
||||
vehicleAdd,
|
||||
vehicleDetail,
|
||||
vehicleEdit,
|
||||
vehicleDelete,
|
||||
} from "@/api/vehicleMent/add";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 岗位表格数据
|
||||
postList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
carId: undefined,
|
||||
driverName: undefined,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
carId: [{ required: true, message: "车牌号不能为空", trigger: "blur" }],
|
||||
carModel: [
|
||||
{ required: true, message: "车辆型号不能为空", trigger: "blur" },
|
||||
],
|
||||
driverName: [
|
||||
{ required: true, message: "驾驶人姓名不能为空", trigger: "blur" },
|
||||
],
|
||||
driverPhone: [
|
||||
{ required: true, message: "驾驶人手机号不能为空", trigger: "blur" },
|
||||
{
|
||||
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
||||
message: "请输入正确的手机号码",
|
||||
trigger: "blur",
|
||||
},
|
||||
],
|
||||
locationCardNum: [
|
||||
{ required: true, message: "车辆定位卡ID不能为空", trigger: "blur" },
|
||||
],
|
||||
carPic: [
|
||||
{ required: true, message: "请上传车辆图片", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询岗位列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
vehicleList(this.queryParams).then((response) => {
|
||||
this.postList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: undefined,
|
||||
carId: undefined,
|
||||
carModel: undefined,
|
||||
driverName: undefined,
|
||||
driverPhone: undefined,
|
||||
locationCardNum: undefined,
|
||||
carPic: undefined,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.id);
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加车辆信息";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
this.form = Object.assign({}, row);
|
||||
this.open = true;
|
||||
this.title = "修改车辆信息";
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm: function () {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.form.id != undefined) {
|
||||
vehicleEdit(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
vehicleAdd(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const rowId = row.id || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除数据编号为"' + rowId + '"的数据项?')
|
||||
.then(function () {
|
||||
return vehicleDelete(rowId);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
BIN
src/views/vehicleMent/icon.png
Normal file
BIN
src/views/vehicleMent/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
336
src/views/vehicleMent/journal.vue
Normal file
336
src/views/vehicleMent/journal.vue
Normal file
@ -0,0 +1,336 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="90px"
|
||||
>
|
||||
<el-form-item label="驾驶人姓名" prop="driverName">
|
||||
<el-input
|
||||
v-model="queryParams.driverName"
|
||||
placeholder="请输入驾驶人姓名"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌号" prop="carId">
|
||||
<el-input
|
||||
v-model="queryParams.carId"
|
||||
placeholder="请输入车牌号"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="记录时间" prop="carId">
|
||||
<el-date-picker
|
||||
v-model="dateRange"
|
||||
size="small"
|
||||
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="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['business:hxCarLocationLog:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="postList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="数据编号" align="center" prop="id" />
|
||||
<el-table-column label="车牌号" align="center" prop="carId" />
|
||||
<el-table-column label="驾驶人姓名" align="center" prop="driverName" />
|
||||
<el-table-column label="驾驶人手机号" align="center" prop="driverPhone" />
|
||||
<el-table-column label="卡片编号" align="center" prop="cardNumber" />
|
||||
<el-table-column label="汽车横坐标" align="center" prop="carAbscissa" />
|
||||
<el-table-column label="汽车纵坐标" align="center" prop="carOrdinate" />
|
||||
<el-table-column label="低电压" align="center" prop="lowVoltage">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.lowVoltage == 1 ? "是" : "否" }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="与正北夹角"
|
||||
align="center"
|
||||
prop="northAngle"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="距离"
|
||||
align="center"
|
||||
prop="distance"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="记录时间"
|
||||
align="center"
|
||||
width="100"
|
||||
prop="createTime"
|
||||
/>
|
||||
<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:post:edit']"
|
||||
>修改</el-button
|
||||
> -->
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['business:hxCarLocationLog: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="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||
<el-form-item label="车牌号" prop="carId">
|
||||
<el-input v-model="form.carId" placeholder="请输入车牌号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆型号" prop="carModel">
|
||||
<el-input v-model="form.carModel" placeholder="请输入车辆型号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="驾驶人姓名" prop="driverName">
|
||||
<el-input v-model="form.driverName" placeholder="请输入驾驶人姓名" />
|
||||
</el-form-item>
|
||||
<el-form-item label="驾驶人手机号" prop="driverPhone">
|
||||
<el-input
|
||||
v-model="form.driverPhone"
|
||||
placeholder="请输入驾驶人手机号"
|
||||
maxlength="11"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆定位卡ID" prop="locationCardNum">
|
||||
<el-input
|
||||
v-model.number="form.locationCardNum"
|
||||
placeholder="请输入车辆定位卡ID"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车辆图片" prop="carPic">
|
||||
<ImageUpload v-model="form.carPic" :isShowTip="false" :limit="1" />
|
||||
</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 {
|
||||
journalList,
|
||||
vehicleAdd,
|
||||
vehicleDetail,
|
||||
vehicleEdit,
|
||||
journalDelete,
|
||||
} from "@/api/vehicleMent/journal";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 日期范围
|
||||
dateRange: [],
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 岗位表格数据
|
||||
postList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
carId: undefined,
|
||||
driverName: undefined,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
carId: [{ required: true, message: "车牌号不能为空", trigger: "blur" }],
|
||||
carModel: [
|
||||
{ required: true, message: "车辆型号不能为空", trigger: "blur" },
|
||||
],
|
||||
driverName: [
|
||||
{ required: true, message: "驾驶人姓名不能为空", trigger: "blur" },
|
||||
],
|
||||
driverPhone: [
|
||||
{ required: true, message: "驾驶人手机号不能为空", trigger: "blur" },
|
||||
{
|
||||
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
||||
message: "请输入正确的手机号码",
|
||||
trigger: "blur",
|
||||
},
|
||||
],
|
||||
locationCardNum: [
|
||||
{ required: true, message: "车辆定位卡ID不能为空", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
carPic: [
|
||||
{ required: true, message: "请上传车辆图片", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询岗位列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
journalList(this.addDateRange(this.queryParams, this.dateRange)).then(
|
||||
(response) => {
|
||||
this.postList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
}
|
||||
);
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: undefined,
|
||||
carId: undefined,
|
||||
carModel: undefined,
|
||||
driverName: undefined,
|
||||
driverPhone: undefined,
|
||||
locationCardNum: undefined,
|
||||
carPic: undefined,
|
||||
};
|
||||
this.dateRange = [];
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.id);
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
this.form = Object.assign({}, row);
|
||||
this.open = true;
|
||||
this.title = "修改读卡器";
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm: function () {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.form.id != undefined) {
|
||||
vehicleEdit(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
vehicleAdd(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const rowId = row.id || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除数据编号为"' + rowId + '"的数据项?')
|
||||
.then(function () {
|
||||
return journalDelete(rowId);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
94
src/views/vehicleMent/map.vue
Normal file
94
src/views/vehicleMent/map.vue
Normal file
@ -0,0 +1,94 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-card>
|
||||
<el-form
|
||||
style="width: 20%"
|
||||
:model="dataInfo"
|
||||
:rules="rules"
|
||||
ref="form"
|
||||
label-width="100px"
|
||||
>
|
||||
<el-form-item label="比例尺:" prop="scale">
|
||||
<el-input v-model.number="dataInfo.scale"></el-input>
|
||||
<span style="color: #818895">px/m</span>
|
||||
</el-form-item>
|
||||
<el-form-item label="横轴像素:" prop="xpixel">
|
||||
<el-input v-model.number="dataInfo.xpixel"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="纵轴像素:" prop="ypixel">
|
||||
<el-input v-model.number="dataInfo.ypixel"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="图片:" prop="pic">
|
||||
<ImageUpload v-model="dataInfo.pic" :isShowTip="false" :limit="1" />
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
@click="submitForm"
|
||||
v-hasPermi="['business:hxCarLocationMap:edit']"
|
||||
>更新</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapList, mapAdd, mapEdit } from "@/api/vehicleMent/map";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
dataInfo: {},
|
||||
rules: {
|
||||
pic: [{ required: true, message: "请上传图片", trigger: "blur" }],
|
||||
scale: [
|
||||
{ required: true, message: "请输入比例尺", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
xpixel: [
|
||||
{ required: true, message: "请输入横轴像素", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
ypixel: [
|
||||
{ required: true, message: "请输入纵轴像素", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询岗位列表 */
|
||||
getList() {
|
||||
mapList().then((response) => {
|
||||
this.dataInfo = response.rows[0] || {};
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
// if (this.dataInfo.id != undefined) {
|
||||
mapEdit(this.dataInfo).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
// }
|
||||
// else {
|
||||
// mapAdd(this.dataInfo).then((response) => {
|
||||
// this.$modal.msgSuccess("新增成功");
|
||||
// this.open = false;
|
||||
// this.getList();
|
||||
// });
|
||||
// }
|
||||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
183
src/views/vehicleMent/overview.vue
Normal file
183
src/views/vehicleMent/overview.vue
Normal file
@ -0,0 +1,183 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<!-- <scalseBox> -->
|
||||
<div
|
||||
class="content"
|
||||
:style="{ width: dataInfo.xpixel + 'px', height: dataInfo.ypixel + 'px' }"
|
||||
v-loading="loading"
|
||||
>
|
||||
<img :src="dataInfo.pic" alt="" class="bg_img" />
|
||||
<div
|
||||
class="bg_box"
|
||||
:style="{
|
||||
top: 100 - item.carOrdinate + '%',
|
||||
left: item.carAbscissa + '%',
|
||||
}"
|
||||
v-for="item in vehicleList"
|
||||
:key="item.id"
|
||||
>
|
||||
<img src="./icon.png" alt="" />
|
||||
</div>
|
||||
<div
|
||||
class="bg_box2"
|
||||
:style="{
|
||||
top: 100 - item.ordinate + '%',
|
||||
left: item.abscissa + '%',
|
||||
}"
|
||||
v-for="item in cardList"
|
||||
:key="item.id"
|
||||
>
|
||||
<svg-icon
|
||||
slot="prefix"
|
||||
icon-class="reader"
|
||||
class="el-input__icon input-icon"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<!-- </scalseBox> -->
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { mapList } from "@/api/vehicleMent/map";
|
||||
import { bigPicList } from "@/api/vehicleMent/journal";
|
||||
import { readerCardList } from "@/api/vehicleMent/reader";
|
||||
// import scalseBox from "../bigScreen/components/scaleBox.vue";
|
||||
export default {
|
||||
components: {
|
||||
// scalseBox,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
loading: true,
|
||||
socket: "",
|
||||
path: "",
|
||||
dataInfo: {},
|
||||
vehicleList: [],
|
||||
cardList: [],
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
getUrl() {
|
||||
this.request({
|
||||
url: "/getSocketUrl",
|
||||
method: "get",
|
||||
}).then((res) => {
|
||||
if (200 == res.code) {
|
||||
this.path = res.msg;
|
||||
this.init();
|
||||
}
|
||||
});
|
||||
},
|
||||
init: function () {
|
||||
if (typeof WebSocket === "undefined") {
|
||||
alert("您的浏览器不支持socket");
|
||||
} else {
|
||||
// 实例化socket
|
||||
this.socket = new WebSocket(this.path);
|
||||
console.log(this.socket);
|
||||
// 监听socket连接
|
||||
this.socket.onopen = this.open;
|
||||
// 监听socket错误信息
|
||||
this.socket.onerror = this.error;
|
||||
// 监听socket消息
|
||||
this.socket.onmessage = this.getMessage;
|
||||
}
|
||||
},
|
||||
open() {
|
||||
console.log("socket连接成功");
|
||||
},
|
||||
error: function () {
|
||||
console.log("连接错误");
|
||||
},
|
||||
getMessage(msg) {
|
||||
const data = JSON.parse(msg.data);
|
||||
if (data.isLocationUpdate) {
|
||||
console.log(data.isLocationUpdate);
|
||||
this.changeAdjustState(data.isLocationUpdate);
|
||||
}
|
||||
},
|
||||
close: function () {
|
||||
console.log("socket已经关闭");
|
||||
},
|
||||
changeAdjustState(obj) {
|
||||
if (this.vehicleList.length > 0) {
|
||||
var res = this.findElem(this.vehicleList, "cardNumber", obj.cardNumber);
|
||||
if (res != "-1") {
|
||||
this.vehicleList.splice(res, 1, obj); // 替换值,如果数组有这个id存在,再次修改的时候覆盖原来的值
|
||||
} else {
|
||||
this.vehicleList.push(obj);
|
||||
}
|
||||
} else {
|
||||
this.vehicleList.push(obj);
|
||||
}
|
||||
},
|
||||
// 判断数组对象中是否有某个值
|
||||
findElem(arrayToSearch, attr, val) {
|
||||
for (var i = 0; i < arrayToSearch.length; i++) {
|
||||
if (arrayToSearch[i][attr] == val) {
|
||||
return i; // 返回当前索引值
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
},
|
||||
},
|
||||
destroyed() {
|
||||
console.log("out");
|
||||
// 销毁监听
|
||||
this.socket.onclose = this.close;
|
||||
},
|
||||
created() {
|
||||
this.loading = true;
|
||||
mapList({
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
type: "3",
|
||||
}).then((res) => {
|
||||
this.dataInfo = res.rows[0] || {};
|
||||
bigPicList().then((response) => {
|
||||
this.vehicleList = response.data;
|
||||
readerCardList().then((response) => {
|
||||
this.loading = false;
|
||||
this.cardList = response.rows;
|
||||
this.getUrl();
|
||||
});
|
||||
});
|
||||
});
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.content {
|
||||
// width: 100%;
|
||||
// height: calc(100vh - 124px);
|
||||
position: relative;
|
||||
// overflow: hidden;
|
||||
.bg_img {
|
||||
vertical-align: bottom;
|
||||
// position: absolute;
|
||||
// top: 0;
|
||||
// left: 0;
|
||||
// z-index: -1;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
// width: 100%;
|
||||
// height: 100%;
|
||||
}
|
||||
.bg_box {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
.bg_box2 {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
width: 30px;
|
||||
height: 50px;
|
||||
svg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
329
src/views/vehicleMent/reader.vue
Normal file
329
src/views/vehicleMent/reader.vue
Normal file
@ -0,0 +1,329 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="90px"
|
||||
>
|
||||
<el-form-item label="读卡器名称" prop="readerName">
|
||||
<el-input
|
||||
v-model="queryParams.readerName"
|
||||
placeholder="请输入读卡器名称"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="读卡器ip" prop="readerIp">
|
||||
<el-input
|
||||
v-model="queryParams.readerIp"
|
||||
placeholder="请输入读卡器ip"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</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="['business:hxReaderInfo:add']"
|
||||
>新增</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="['business:hxReaderInfo:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="postList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="设备地址" align="center" prop="id" />
|
||||
<el-table-column label="读卡器ip" align="center" prop="readerIp" />
|
||||
<el-table-column label="读卡器名称" align="center" prop="readerName" />
|
||||
<el-table-column label="读卡器端口" align="center" prop="readerPort" />
|
||||
<el-table-column label="横坐标" align="center" prop="abscissa" />
|
||||
<el-table-column label="纵坐标" align="center" prop="ordinate" />
|
||||
<el-table-column label="与正北夹角" align="center" prop="northAngle" />
|
||||
<el-table-column label="录入时间" align="center" prop="createTime" />
|
||||
<!-- <el-table-column
|
||||
label="创建时间"
|
||||
align="center"
|
||||
prop="createTime"
|
||||
width="180"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createTime) }}</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="['business:hxReaderInfo:edit']"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['business:hxReaderInfo: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="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||
<el-form-item label="读卡器ip" prop="readerIp">
|
||||
<el-input
|
||||
v-model="form.readerIp"
|
||||
placeholder="请输入读卡器ip"
|
||||
:disabled="form.id ? true : false"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="读卡器名称" prop="readerName">
|
||||
<el-input v-model="form.readerName" placeholder="请输入读卡器名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="读卡器端口" prop="readerPort">
|
||||
<el-input
|
||||
v-model.number="form.readerPort"
|
||||
placeholder="请输入读卡器端口"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="横坐标" prop="abscissa">
|
||||
<el-input v-model.number="form.abscissa" placeholder="请输入横坐标" />
|
||||
</el-form-item>
|
||||
<el-form-item label="纵坐标" prop="ordinate">
|
||||
<el-input v-model.number="form.ordinate" placeholder="请输入纵坐标" />
|
||||
</el-form-item>
|
||||
<el-form-item label="与正北夹角" prop="northAngle">
|
||||
<el-input
|
||||
v-model.number="form.northAngle"
|
||||
placeholder="请输入与正北夹角"
|
||||
/>
|
||||
</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 {
|
||||
readerCardList,
|
||||
readerCardAdd,
|
||||
readerCardDetail,
|
||||
readerCardEdit,
|
||||
readerCardDelete,
|
||||
} from "@/api/vehicleMent/reader";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 岗位表格数据
|
||||
postList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
readerName: undefined,
|
||||
readerIp: undefined,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
readerIp: [
|
||||
{ required: true, message: "读卡器ip不能为空", trigger: "blur" },
|
||||
],
|
||||
readerName: [
|
||||
{ required: true, message: "读卡器名称不能为空", trigger: "blur" },
|
||||
],
|
||||
readerPort: [
|
||||
{ required: true, message: "读卡器端口不能为空", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
abscissa: [
|
||||
{ required: true, message: "横坐标不能为空", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
ordinate: [
|
||||
{ required: true, message: "纵坐标不能为空", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
northAngle: [
|
||||
{ required: true, message: "与正北夹角不能为空", trigger: "blur" },
|
||||
{ type: "number", message: "必须为数字值", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询岗位列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
readerCardList(this.queryParams).then((response) => {
|
||||
this.postList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: undefined,
|
||||
readerIp: undefined,
|
||||
readerName: undefined,
|
||||
readerPort: undefined,
|
||||
abscissa: undefined,
|
||||
ordinate: undefined,
|
||||
northAngle: undefined,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.id);
|
||||
this.multiple = !selection.length;
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加读卡器";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
this.form = Object.assign({}, row);
|
||||
this.open = true;
|
||||
this.title = "修改读卡器";
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm: function () {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
if (this.form.id != undefined) {
|
||||
readerCardEdit(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
readerCardAdd(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const rowId = row.id || this.ids;
|
||||
this.$modal
|
||||
.confirm('是否确认删除设备地址为"' + rowId + '"的数据项?')
|
||||
.then(function () {
|
||||
return readerCardDelete(rowId);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
Reference in New Issue
Block a user