1.优化
This commit is contained in:
parent
49b87991ec
commit
8ac555cff8
|
@ -9,6 +9,14 @@ export function listModel(query) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 查询所有车辆型号列表
|
||||||
|
export function listAllModel() {
|
||||||
|
return request({
|
||||||
|
url: '/system/model/allList',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 查询车辆型号详细
|
// 查询车辆型号详细
|
||||||
export function getModel(modelId) {
|
export function getModel(modelId) {
|
||||||
return request({
|
return request({
|
||||||
|
|
|
@ -431,9 +431,11 @@ export default {
|
||||||
created() {},
|
created() {},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.userName = this.$store.state.user.name;
|
this.userName = this.$store.state.user.name;
|
||||||
this.AdminStatistics();
|
if(this.userName === 'admin'){
|
||||||
|
this.AdminStatistics();
|
||||||
|
this.getlibord();
|
||||||
|
}
|
||||||
window.addEventListener("resize", this.handleResize);
|
window.addEventListener("resize", this.handleResize);
|
||||||
this.getlibord();
|
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
window.removeEventListener("resize", this.handleResize);
|
window.removeEventListener("resize", this.handleResize);
|
||||||
|
|
|
@ -231,7 +231,7 @@
|
||||||
<script>
|
<script>
|
||||||
import { listFlow, getFlow, delFlow, addFlow, updateFlow } from "@/api/system/flow";
|
import { listFlow, getFlow, delFlow, addFlow, updateFlow } from "@/api/system/flow";
|
||||||
import { optionselect as getAreaOptionselect } from '@/api/system/area'
|
import { optionselect as getAreaOptionselect } from '@/api/system/area'
|
||||||
import { listModel } from '@/api/system/model'
|
import { listAllModel, listModel } from '@/api/system/model'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Flow",
|
name: "Flow",
|
||||||
|
@ -294,9 +294,9 @@ export default {
|
||||||
this.getModelList();
|
this.getModelList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getModelList() { // getAreaOptionselect()
|
getModelList() {
|
||||||
listModel(this.queryParams).then(response => {
|
listAllModel().then(response => {
|
||||||
this.modelOptions = response.rows;
|
this.modelOptions = response.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 查询字典类型列表 */
|
/** 查询字典类型列表 */
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
import AMapLoader from "@amap/amap-jsapi-loader";
|
import AMapLoader from "@amap/amap-jsapi-loader";
|
||||||
import globalConfig from "@/utils/config/globalConfig";
|
import globalConfig from "@/utils/config/globalConfig";
|
||||||
import { getDevice, getDeviceLists ,listDevice} from '@/api/system/device'
|
import { getDevice, getDeviceLists ,listDevice} from '@/api/system/device'
|
||||||
import { listArea, optionselect as getAreaOptionselect } from '@/api/system/area'
|
import { getArealist, listArea, optionselect as getAreaOptionselect } from '@/api/system/area'
|
||||||
import { listParking } from '@/api/system/parking'
|
import { listParking } from '@/api/system/parking'
|
||||||
import LocationMap from '@/components/Map/location/LocationMap'
|
import LocationMap from '@/components/Map/location/LocationMap'
|
||||||
import OrderRecord from '@/views/system/device/components/orderRecord'
|
import OrderRecord from '@/views/system/device/components/orderRecord'
|
||||||
|
@ -179,7 +179,6 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
console.log("当前用户信息:", this.$store.state.user.name)
|
console.log("当前用户信息:", this.$store.state.user.name)
|
||||||
this.userName = this.$store.state.user.name;
|
this.userName = this.$store.state.user.name;
|
||||||
this.getAreaList(this.areaId);
|
|
||||||
this.getAreaOptions();
|
this.getAreaOptions();
|
||||||
},
|
},
|
||||||
unmounted() {
|
unmounted() {
|
||||||
|
@ -203,13 +202,20 @@ export default {
|
||||||
this.cluster = null;
|
this.cluster = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
await this.getAreaList(this.areaId);
|
this.getAreaList(this.areaId);
|
||||||
},
|
},
|
||||||
|
|
||||||
getAreaOptions() {
|
getAreaOptions() {
|
||||||
getAreaOptionselect().then(response => {
|
getArealist().then(response => {
|
||||||
this.areaOptions = response.data;
|
this.areaOptions = response.data;
|
||||||
|
this.areaId = response.data[0].areaId;
|
||||||
|
console.log("this.areaId===================", this.areaId)
|
||||||
console.log("areaOptions", this.areaOptions)
|
console.log("areaOptions", this.areaOptions)
|
||||||
|
if(this.userName == 'admin'){
|
||||||
|
this.getAreaList(14);
|
||||||
|
}else{
|
||||||
|
this.getAreaList(this.areaId);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -263,7 +269,7 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
async getAreaList(areaId) {
|
getAreaList(areaId) {
|
||||||
listArea({ areaId: areaId }).then(response => {
|
listArea({ areaId: areaId }).then(response => {
|
||||||
this.areaList = response.rows;
|
this.areaList = response.rows;
|
||||||
if (this.areaList.length > 0) {
|
if (this.areaList.length > 0) {
|
||||||
|
@ -582,8 +588,8 @@ export default {
|
||||||
listDevice({ pageNum: 1, pageSize: 999, areaId: areaId }).then(response => {
|
listDevice({ pageNum: 1, pageSize: 999, areaId: areaId }).then(response => {
|
||||||
// getDeviceLists(areaId).then(response => {
|
// getDeviceLists(areaId).then(response => {
|
||||||
this.deviceList = response.rows
|
this.deviceList = response.rows
|
||||||
|
|
||||||
|
|
||||||
;
|
;
|
||||||
this.deviceList.forEach(device => {
|
this.deviceList.forEach(device => {
|
||||||
if (device.longitude !== null && device.latitude !== null &&
|
if (device.longitude !== null && device.latitude !== null &&
|
||||||
|
@ -608,7 +614,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
addMarker(lng, lat, status, onlineStatus, title) {
|
addMarker(lng, lat, status, onlineStatus, title) {
|
||||||
|
|
||||||
let marker = new AMap.Marker({
|
let marker = new AMap.Marker({
|
||||||
map: this.map,
|
map: this.map,
|
||||||
icon: new AMap.Icon({
|
icon: new AMap.Icon({
|
||||||
|
|
|
@ -678,7 +678,9 @@ export default {
|
||||||
this.reset2();
|
this.reset2();
|
||||||
this.getList();
|
this.getList();
|
||||||
this.getAreaList();
|
this.getAreaList();
|
||||||
this.getDeptList();
|
if(this.userName === 'admin'){
|
||||||
|
this.getDeptList();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
open(val) {
|
open(val) {
|
||||||
|
|
|
@ -174,6 +174,13 @@
|
||||||
class-name="small-padding fixed-width"
|
class-name="small-padding fixed-width"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope" v-if="scope.row.userId !== 1">
|
<template slot-scope="scope" v-if="scope.row.userId !== 1">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-copy"
|
||||||
|
@click="copy(scope.row)"
|
||||||
|
v-hasPermi="['system:user:edit']"
|
||||||
|
>复制</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -188,15 +195,6 @@
|
||||||
@click="handleDelete(scope.row)"
|
@click="handleDelete(scope.row)"
|
||||||
v-hasPermi="['system:user:remove']"
|
v-hasPermi="['system:user:remove']"
|
||||||
>删除</el-button>
|
>删除</el-button>
|
||||||
<el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['system:user:resetPwd', 'system:user:edit']">
|
|
||||||
<el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
|
|
||||||
<el-dropdown-menu slot="dropdown">
|
|
||||||
<el-dropdown-item command="handleResetPwd" icon="el-icon-key"
|
|
||||||
v-hasPermi="['system:user:resetPwd']">重置密码</el-dropdown-item>
|
|
||||||
<el-dropdown-item command="handleAuthRole" icon="el-icon-circle-check"
|
|
||||||
v-hasPermi="['system:user:edit']">分配角色</el-dropdown-item>
|
|
||||||
</el-dropdown-menu>
|
|
||||||
</el-dropdown>
|
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -247,7 +245,7 @@
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="角色">
|
<el-form-item label="角色" prop="roleIds">
|
||||||
<el-select v-model="form.roleIds" placeholder="请选择角色">
|
<el-select v-model="form.roleIds" placeholder="请选择角色">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in roleOptions"
|
v-for="item in roleOptions"
|
||||||
|
@ -497,6 +495,9 @@ export default {
|
||||||
],
|
],
|
||||||
deptId: [
|
deptId: [
|
||||||
{ required: true, message: "所属代理商不能为空", trigger: "blur" }
|
{ required: true, message: "所属代理商不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
roleIds: [
|
||||||
|
{ required: true, message: "用户角色不能为空", trigger: "blur" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -519,11 +520,27 @@ export default {
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList();
|
||||||
this.getDeptTree();
|
this.getDeptTree();
|
||||||
this.getConfigKey("sys.user.initPassword").then(response => {
|
// 随机生成8位数的字符串
|
||||||
this.initPassword = response.msg;
|
this.initPassword = Math.random().toString(36).slice(-8);
|
||||||
});
|
console.log("initPassword---------"+this.initPassword)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
copy(row) {
|
||||||
|
const account = `账号:${row.userName}`; // 获取账号
|
||||||
|
const password = `密码:${row.initPassword}`; // 获取密码
|
||||||
|
const fixedUrl = "https://dche.ccttiot.com/"; // 固定网址
|
||||||
|
|
||||||
|
// 组合要复制的内容
|
||||||
|
const textToCopy = `${fixedUrl}\n${account}\n${password}`;
|
||||||
|
|
||||||
|
// 使用 Clipboard API 复制内容
|
||||||
|
navigator.clipboard.writeText(textToCopy).then(() => {
|
||||||
|
this.$modal.msgSuccess("已复制到剪贴板"); // 复制成功提示
|
||||||
|
}).catch(err => {
|
||||||
|
console.error("复制失败:", err);
|
||||||
|
this.$modal.msgError("复制失败,请手动复制"); // 复制失败提示
|
||||||
|
});
|
||||||
|
},
|
||||||
getAreaListByDeptId(deptId){
|
getAreaListByDeptId(deptId){
|
||||||
if(deptId) {
|
if(deptId) {
|
||||||
selectAreaListByDeptId(deptId).then(response => {
|
selectAreaListByDeptId(deptId).then(response => {
|
||||||
|
@ -766,6 +783,11 @@ export default {
|
||||||
submitForm: function() {
|
submitForm: function() {
|
||||||
this.form.userName = this.form.phonenumber;
|
this.form.userName = this.form.phonenumber;
|
||||||
this.form.userType = '00';
|
this.form.userType = '00';
|
||||||
|
// 判空检查
|
||||||
|
if (!this.form.roleIds || this.form.roleIds.length === 0) {
|
||||||
|
this.$modal.msgError("请选择角色"); // 弹窗提示
|
||||||
|
return; // 退出方法
|
||||||
|
}
|
||||||
this.form.roleIds = [this.form.roleIds];
|
this.form.roleIds = [this.form.roleIds];
|
||||||
console.log("roleIds"+this.form.roleIds)
|
console.log("roleIds"+this.form.roleIds)
|
||||||
this.$refs["form"].validate(valid => {
|
this.$refs["form"].validate(valid => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user