feat():审核模块
parent
ec30d55126
commit
78b3204656
|
@ -5,7 +5,10 @@ export function listFence(query) {
|
|||
return request({
|
||||
url: '/customerBusiness/fence/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
params: query,
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -13,7 +16,10 @@ export function listFence(query) {
|
|||
export function getFence(id) {
|
||||
return request({
|
||||
url: '/customerBusiness/fence/' + id,
|
||||
method: 'get'
|
||||
method: 'get',
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -22,7 +28,10 @@ export function addFence(data) {
|
|||
return request({
|
||||
url: '/customerBusiness/fence',
|
||||
method: 'post',
|
||||
data: data
|
||||
data: data,
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -31,7 +40,10 @@ export function updateFence(data) {
|
|||
return request({
|
||||
url: '/customerBusiness/fence/'+data.id,
|
||||
method: 'put',
|
||||
data: data
|
||||
data: data,
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -42,3 +54,4 @@ export function delFence(id) {
|
|||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,10 @@ export function listVehicle(query) {
|
|||
return request({
|
||||
url: '/customerBusiness/vehicle/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
params: query,
|
||||
// headers: {
|
||||
// 'enterprise-code': 'jiang_0612'
|
||||
// }
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -13,7 +16,10 @@ export function listVehicle(query) {
|
|||
export function getVehicle(id) {
|
||||
return request({
|
||||
url: '/customerBusiness/vehicle/' + id,
|
||||
method: 'get'
|
||||
method: 'get',
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -22,7 +28,10 @@ export function addVehicle(data) {
|
|||
return request({
|
||||
url: '/customerBusiness/vehicle',
|
||||
method: 'post',
|
||||
data: data
|
||||
data: data,
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -31,7 +40,10 @@ export function updateVehicle(data) {
|
|||
return request({
|
||||
url: '/customerBusiness/vehicle/'+data.id,
|
||||
method: 'put',
|
||||
data: data
|
||||
data: data,
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -39,6 +51,43 @@ export function updateVehicle(data) {
|
|||
export function delVehicle(id) {
|
||||
return request({
|
||||
url: '/customerBusiness/vehicle/' + id,
|
||||
method: 'delete'
|
||||
method: 'delete',
|
||||
headers: {
|
||||
'enterprise-code': 'jiang_0612'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
//查询车辆运营平台数据
|
||||
export function getCar(id) {
|
||||
return request({
|
||||
url: '/netWorking/car/'+id,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
||||
//修改车辆运营平台
|
||||
export function updateCar(data) {
|
||||
return request({
|
||||
url: '/netWorking/car/'+data.id,
|
||||
method: 'put',
|
||||
data: data,
|
||||
})
|
||||
}
|
||||
|
||||
//完善企业信息
|
||||
export function updateEnterprise(data) {
|
||||
return request({
|
||||
url: '/netWorking/car/updateEnterprise/'+data.id,
|
||||
method: 'post',
|
||||
data: data,
|
||||
})
|
||||
}
|
||||
|
||||
// 查询企业
|
||||
export function selectByName() {
|
||||
return request({
|
||||
url: '/netWorking/car/selectByName',
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
|
|
@ -1,44 +0,0 @@
|
|||
import request from '@/utils/request'
|
||||
|
||||
// 查询企业信息列表
|
||||
export function listCar(query) {
|
||||
return request({
|
||||
url: '/netWorking/car/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询企业信息详细
|
||||
export function getCar(id) {
|
||||
return request({
|
||||
url: '/netWorking/car/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增企业信息
|
||||
export function addCar(data) {
|
||||
return request({
|
||||
url: '/netWorking/car',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改企业信息
|
||||
export function updateCar(data) {
|
||||
return request({
|
||||
url: '/netWorking/car/'+data.id,
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除企业信息
|
||||
export function delCar(id) {
|
||||
return request({
|
||||
url: '/netWorking/car/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
|
@ -73,7 +73,6 @@ service.interceptors.request.use(config => {
|
|||
|
||||
// 响应拦截器
|
||||
service.interceptors.response.use(res => {
|
||||
debugger
|
||||
// 未设置状态码则默认成功状态
|
||||
const code = res.data.code || 200;
|
||||
// 获取错误信息
|
||||
|
|
|
@ -1,45 +1,24 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
|
||||
|
||||
|
||||
<el-table v-loading="loading" :data="carList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<span v-if="enterprise.enterpriseStatus==='N'"> <el-table :data="tableData" >
|
||||
<el-table-column label="企业名称" align="center" prop="ebterpriseName" />
|
||||
<el-table-column label="法定代表人" align="center" prop="legalPerson" />
|
||||
<el-table-column label="经营范围" align="center" prop="businessScope" />
|
||||
<el-table-column label="企业成立时间" align="center" prop="estabinessDate" width="180"/>
|
||||
<el-table-column label="注册地址" align="center" prop="address" />
|
||||
<el-table-column label="企业联系方式" align="center" prop="contactPhone" />
|
||||
<el-table-column label="公司邮箱" align="center" prop="email" />
|
||||
<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="['netWorking:car:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['netWorking:car:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</span>
|
||||
<span v-if="enterprise.enterpriseStatus!=='N'">
|
||||
<span>{{"企业信息未完善"}}</span>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="primary"
|
||||
@click="handleUpdate(open,enterprise)"
|
||||
>完善信息</el-button>
|
||||
</span>
|
||||
|
||||
<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="80px">
|
||||
<el-form-item label="企业名称" prop="ebterpriseName">
|
||||
|
@ -90,9 +69,6 @@
|
|||
placeholder="请选择认证时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="服务级别" prop="serviceLevel">
|
||||
<el-input v-model="form.serviceLevel" placeholder="请输入服务级别" />
|
||||
</el-form-item>
|
||||
<el-form-item label="开通服务id" prop="openServerId">
|
||||
<el-input v-model="form.openServerId" placeholder="请输入开通服务id" />
|
||||
</el-form-item>
|
||||
|
@ -112,50 +88,23 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { listCar, getCar, delCar, addCar, updateCar } from "@/api/netWorking/car";
|
||||
import {parseTime} from "../../../utils/muyu";
|
||||
import { selectByName, updateEnterprise } from '@/api/customerBusiness/vehicle'
|
||||
|
||||
export default {
|
||||
name: "Car",
|
||||
dicts: ['service_level', 'enterprise_status'],
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 企业信息表格数据
|
||||
carList: [],
|
||||
enterprise:{},
|
||||
// 车辆运营平台表格数据
|
||||
tableData: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
ebterpriseName: null,
|
||||
legalPerson: null,
|
||||
businessLincenseNumber: null,
|
||||
estabinessDate: null,
|
||||
businessScope: null,
|
||||
address: null,
|
||||
contactPhone: null,
|
||||
email: null,
|
||||
status: null,
|
||||
registrationDate: null,
|
||||
certificationId: null,
|
||||
authenticationDate: null,
|
||||
serviceLevel: null,
|
||||
openServerId: null,
|
||||
addServerId: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
|
@ -164,18 +113,10 @@ export default {
|
|||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
this.selectByName();
|
||||
},
|
||||
methods: {
|
||||
/** 查询企业信息列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listCar(this.queryParams).then(response => {
|
||||
this.carList = response.data.rows;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
parseTime,
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
|
@ -193,7 +134,7 @@ export default {
|
|||
address: null,
|
||||
contactPhone: null,
|
||||
email: null,
|
||||
status: null,
|
||||
enterpriseStatus: null,
|
||||
registrationDate: null,
|
||||
certificationId: null,
|
||||
authenticationDate: null,
|
||||
|
@ -208,73 +149,28 @@ export default {
|
|||
};
|
||||
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.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加企业信息";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getCar(id).then(response => {
|
||||
this.form = response.data;
|
||||
handleUpdate(open,row) {
|
||||
// this.reset();
|
||||
this.form = row;
|
||||
this.open = true;
|
||||
this.title = "修改企业信息";
|
||||
this.title = "修改车辆运营平台";
|
||||
},
|
||||
selectByName() {
|
||||
selectByName().then(response => {
|
||||
console.log(response)
|
||||
this.enterprise = response.data;
|
||||
this.tableData.push(this.enterprise)
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updateCar(this.form).then(response => {
|
||||
updateEnterprise(this.form).then(response =>{
|
||||
console.log(this.form)
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addCar(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除企业信息编号为"' + ids + '"的数据项?').then(function() {
|
||||
return delCar(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('netWorking/car/export', {
|
||||
...this.queryParams
|
||||
}, `car_${new Date().getTime()}.xlsx`)
|
||||
this.selectByName();
|
||||
})
|
||||
}
|
||||
}
|
||||
};
|
|
@ -1,369 +0,0 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<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="['netWorking:car: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="['netWorking:car: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="['netWorking:car: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="['netWorking:car:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="carList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="企业名称" align="center" prop="ebterpriseName" />
|
||||
<el-table-column label="法定代表人" align="center" prop="legalPerson" />
|
||||
<el-table-column label="企业成立时间" align="center" prop="estabinessDate" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.estabinessDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="注册地址" align="center" prop="address" />
|
||||
<el-table-column label="企业联系方式" align="center" prop="contactPhone" />
|
||||
<el-table-column label="公司邮箱" align="center" prop="email" />
|
||||
<el-table-column label="企业当前状态" align="center" prop="enterpriseStatus">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.enterprise_status" :value="scope.row.enterpriseStatus"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="服务级别" align="center" prop="serviceLevel">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.service_level" :value="scope.row.serviceLevel"/>
|
||||
</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="['netWorking:car:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['netWorking:car:remove']"
|
||||
>删除</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
@click="authentication(scope.row)"
|
||||
v-if="scope.row.enterpriseStatus!=='N'"
|
||||
>审核</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="80px">
|
||||
<el-form-item label="企业名称" prop="ebterpriseName">
|
||||
<el-input v-model="form.ebterpriseName" placeholder="请输入企业名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="法定代表人" prop="legalPerson">
|
||||
<el-input v-model="form.legalPerson" placeholder="请输入法定代表人" />
|
||||
</el-form-item>
|
||||
<el-form-item label="经营执照凭证号码" prop="businessLincenseNumber">
|
||||
<el-input v-model="form.businessLincenseNumber" placeholder="请输入经营执照凭证号码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="企业成立时间" prop="estabinessDate">
|
||||
<el-date-picker clearable
|
||||
v-model="form.estabinessDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择企业成立时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="经营范围" prop="businessScope">
|
||||
<el-input v-model="form.businessScope" placeholder="请输入经营范围" />
|
||||
</el-form-item>
|
||||
<el-form-item label="注册地址" prop="address">
|
||||
<el-input v-model="form.address" placeholder="请输入注册地址" />
|
||||
</el-form-item>
|
||||
<el-form-item label="企业联系方式" prop="contactPhone">
|
||||
<el-input v-model="form.contactPhone" placeholder="请输入企业联系方式" />
|
||||
</el-form-item>
|
||||
<el-form-item label="公司邮箱" prop="email">
|
||||
<el-input v-model="form.email" placeholder="请输入公司邮箱" />
|
||||
</el-form-item>
|
||||
<el-form-item label="企业当前状态" prop="enterpriseStatus">
|
||||
<el-radio-group v-model="form.enterpriseStatus">
|
||||
<el-radio
|
||||
v-for="dict in dict.type.enterprise_status"
|
||||
:key="dict.value"
|
||||
:label="dict.value"
|
||||
>{{dict.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="企业入驻平台时期" prop="registrationDate">
|
||||
<el-date-picker clearable
|
||||
v-model="form.registrationDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择企业入驻平台时期">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="企业认证id" prop="certificationId">
|
||||
<el-input v-model="form.certificationId" placeholder="请输入企业认证id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="认证时间" prop="authenticationDate">
|
||||
<el-date-picker clearable
|
||||
v-model="form.authenticationDate"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择认证时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="服务级别" prop="serviceLevel">
|
||||
<el-select v-model="form.serviceLevel" placeholder="请选择服务级别">
|
||||
<el-option
|
||||
v-for="dict in dict.type.service_level"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="开通服务id" prop="openServerId">
|
||||
<el-input v-model="form.openServerId" placeholder="请输入开通服务id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="增值服务id" prop="addServerId">
|
||||
<el-input v-model="form.addServerId" placeholder="请输入增值服务id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" 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 { listCar, getCar, delCar, addCar, updateCar, authentication } from '@/api/netWorking/car'
|
||||
|
||||
export default {
|
||||
name: "Car",
|
||||
dicts: ['service_level', 'enterprise_status'],
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 车辆运营平台表格数据
|
||||
carList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
ebterpriseName: null,
|
||||
legalPerson: null,
|
||||
businessLincenseNumber: null,
|
||||
estabinessDate: null,
|
||||
businessScope: null,
|
||||
address: null,
|
||||
contactPhone: null,
|
||||
email: null,
|
||||
enterpriseStatus: null,
|
||||
registrationDate: null,
|
||||
certificationId: null,
|
||||
authenticationDate: null,
|
||||
serviceLevel: null,
|
||||
openServerId: null,
|
||||
addServerId: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
authentication(row){
|
||||
authentication(row).then(
|
||||
res=>{
|
||||
this.$modal.msgSuccess("认证成功");
|
||||
this.getList();
|
||||
}
|
||||
)
|
||||
},
|
||||
/** 查询车辆运营平台列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listCar(this.queryParams).then(response => {
|
||||
this.carList = response.data.rows;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
ebterpriseName: null,
|
||||
legalPerson: null,
|
||||
businessLincenseNumber: null,
|
||||
estabinessDate: null,
|
||||
businessScope: null,
|
||||
address: null,
|
||||
contactPhone: null,
|
||||
email: null,
|
||||
enterpriseStatus: null,
|
||||
registrationDate: null,
|
||||
certificationId: null,
|
||||
authenticationDate: null,
|
||||
serviceLevel: null,
|
||||
openServerId: null,
|
||||
addServerId: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null,
|
||||
remark: null
|
||||
};
|
||||
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.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加车辆运营平台";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getCar(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改车辆运营平台";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updateCar(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addCar(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除车辆运营平台编号为"' + ids + '"的数据项?').then(function() {
|
||||
return delCar(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('netWorking/car/export', {
|
||||
...this.queryParams
|
||||
}, `car_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in New Issue