This commit is contained in:
jjLv 2024-09-29 11:00:02 +08:00
commit bafab4120b
5 changed files with 302 additions and 190 deletions

10
prettier.config.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = {
tabWidth: 4,
semi: false,
vueIndentScriptAndStyle: false,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'auto',
}

View File

@ -5,8 +5,15 @@ import request from '@/utils/request'
/** 边代设备列表查询 */ /** 边代设备列表查询 */
export const queryEdgeDeviceListApiTwo = (data) => { export const queryEdgeDeviceListApiTwo = (data) => {
return request.get('/base/tbBdDeviceRecord//getDeviceList', { return request.get('/base/tbBdDeviceRecord//getDeviceList', {
params: data params: data,
}) })
} }
/* 获取杆塔数据 */
export const getPowerListApi = (params) => {
return request.get('/base/tbBdDeviceRecord/getPowerList', { params })
}
/* 修改边带与杆塔的绑定关系 */
export const putPowerDataApi = (params) => {
return request.post('/base/tbBdDeviceRecord/updatePowerId', params)
}

View File

@ -46,7 +46,14 @@
:props="item.optionProps" :props="item.optionProps"
:show-all-levels="false" :show-all-levels="false"
clearable clearable
@change="handleCasAdd($event, item.f_model, cascaderFunc, extraTableProp)" @change="
handleCasAdd(
$event,
item.f_model,
cascaderFunc,
extraTableProp,
)
"
style="width: 240px" style="width: 240px"
/> />
<el-cascader <el-cascader
@ -132,7 +139,8 @@
select-on-indeterminate select-on-indeterminate
style="width: 100%" style="width: 100%"
v-loading="loading" v-loading="loading"
@selection-change="handleSelectionChange"> @selection-change="handleSelectionChange"
>
> >
<!-- <el-table-column <!-- <el-table-column
type="selection" type="selection"
@ -170,18 +178,18 @@
</template> </template>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column <el-table-column
align="center" align="center"
label="操作" label="操作"
v-if="handleShow && showOperation" v-if="handleShow && isShowHandle"
:min-width="dynamicWidth" :min-width="dynamicWidth"
> >
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="optionDivRef"> <div class="optionDivRef">
<slot :data="row" name="handle">-</slot> <slot :data="row" name="handle"></slot>
</div> </div>
</template> </template>
</el-table-column> --> </el-table-column>
</el-table> </el-table>
<!-- 分页 --> <!-- 分页 -->
@ -222,11 +230,11 @@ export default {
/** 传递参数 */ /** 传递参数 */
sendParams: { sendParams: {
type: Object, type: Object,
default: () => null default: () => null,
}, },
sendId: { sendId: {
type: Number, type: Number,
default: () => null default: () => null,
}, },
/** 是否显示查询按钮 */ /** 是否显示查询按钮 */
showSearchBtn: { showSearchBtn: {
@ -239,39 +247,44 @@ export default {
}, },
cascaderFunc: { cascaderFunc: {
type: Function, type: Function,
default: () => null default: () => null,
}, },
extraTableProp: { extraTableProp: {
type: Object, type: Object,
default: () => null default: () => null,
}, },
showOperation: { showOperation: {
type: Boolean, type: Boolean,
default: true default: true,
}, },
showRightTools: { showRightTools: {
type: Boolean, type: Boolean,
default: true default: true,
}, },
selectable: { selectable: {
type: Function, type: Function,
default: () => { default: () => {
return true return true
} },
}, },
selSingle: { selSingle: {
type: Boolean, type: Boolean,
default: false default: false,
}, },
showIndex: { showIndex: {
type: Boolean, type: Boolean,
default: true default: true,
} },
isShowHandle: {
type: Boolean,
default: () => false,
},
}, },
computed: { computed: {
/* 根据操作栏控制表头是否显示 */ /* 根据操作栏控制表头是否显示 */
tableColumCheckProps() { tableColumCheckProps() {
return this.columCheckList.filter(e => { return this.columCheckList.filter((e) => {
return e.checked != false return e.checked != false
}) })
}, },
@ -288,14 +301,14 @@ export default {
handler(nv, ov) { handler(nv, ov) {
if (nv !== ov) { if (nv !== ov) {
this.columnsList = nv this.columnsList = nv
this.columCheckList = this.columnsList.map(e => { this.columCheckList = this.columnsList.map((e) => {
this.$set(e, 'checked', true) this.$set(e, 'checked', true)
return e return e
}) })
} }
}, },
deep: true deep: true,
} },
/* sendParams: { /* sendParams: {
handler(nv, ov) { handler(nv, ov) {
console.log(nv, ov) console.log(nv, ov)
@ -311,9 +324,7 @@ export default {
data() { data() {
return { return {
// //
formRules: { formRules: {},
},
loading: false, loading: false,
// //
queryParams: { queryParams: {
@ -338,17 +349,17 @@ export default {
columCheckList: [], columCheckList: [],
// //
dynamicWidth: 0, dynamicWidth: 0,
idCount: 1 idCount: 1,
} }
}, },
created() { created() {
this.columCheckList = this.columnsList.map(e => { this.columCheckList = this.columnsList.map((e) => {
this.$set(e, 'checked', true) this.$set(e, 'checked', true)
return e return e
}) })
/* 生成查询参数 */ /* 生成查询参数 */
this.formLabel.map(e => { this.formLabel.map((e) => {
this.$set(this.queryParams, e.f_model, '') this.$set(this.queryParams, e.f_model, '')
// //
if (e.f_rule) { if (e.f_rule) {
@ -356,8 +367,8 @@ export default {
{ {
required: true, required: true,
message: `请填写${e.f_label}`, message: `请填写${e.f_label}`,
trigger: 'blur' trigger: 'blur',
} },
]) ])
} }
}) })
@ -385,7 +396,7 @@ export default {
} }
console.log(this.queryParams) console.log(this.queryParams)
if (Object.keys(this.formRules).length !== 0) { if (Object.keys(this.formRules).length !== 0) {
this.$refs.queryFormRef.validate(async valid => { this.$refs.queryFormRef.validate(async (valid) => {
if (valid) { if (valid) {
this.loading = true this.loading = true
const res = await this.requestApi(this.queryParams) const res = await this.requestApi(this.queryParams)
@ -417,7 +428,6 @@ export default {
} }
} }
} }
}, },
/** 查询按钮 */ /** 查询按钮 */
handleQuery() { handleQuery() {
@ -441,12 +451,7 @@ export default {
this.queryParams[val] = e[e.length - 1] this.queryParams[val] = e[e.length - 1]
}, },
/** 级联选择只选最后一级 */ /** 级联选择只选最后一级 */
handleCasAdd( handleCasAdd(e, val, func, prop) {
e,
val,
func,
prop
) {
if (e.length !== 0) { if (e.length !== 0) {
this.queryParams[val] = e[e.length - 1] this.queryParams[val] = e[e.length - 1]
let setObj = {} let setObj = {}
@ -459,12 +464,14 @@ export default {
this.idCount++ this.idCount++
// //
func({ func({
id: e[e.length - 1] id: e[e.length - 1],
}).then(res => { })
.then((res) => {
this.$set(setObj, 'name', res.data.parentName) this.$set(setObj, 'name', res.data.parentName)
this.$set(setObj, 'unitName', res.data.unitName) this.$set(setObj, 'unitName', res.data.unitName)
this.$set(setObj, 'typeName', res.data.name) this.$set(setObj, 'typeName', res.data.name)
}).catch(err => {}) })
.catch((err) => {})
for (let key in this.queryParams) { for (let key in this.queryParams) {
this.$set(setObj, key, this.queryParams[key]) this.$set(setObj, key, this.queryParams[key])
} }
@ -509,7 +516,6 @@ export default {
this.msgList = e this.msgList = e
this.$emit('transIdList', this.msgList) this.$emit('transIdList', this.msgList)
}, },
}, },
} }
</script> </script>

View File

@ -3,6 +3,7 @@
<div class="app-container"> <div class="app-container">
<!-- 表格 --> <!-- 表格 -->
<TableModelTwo <TableModelTwo
:isShowHandle="true"
:formLabel="formLabel" :formLabel="formLabel"
:columnsList="columnsList" :columnsList="columnsList"
:request-api="queryEdgeDeviceListApiTwo" :request-api="queryEdgeDeviceListApiTwo"
@ -11,30 +12,101 @@
<template slot="devUserPhone" slot-scope="{ data }"> <template slot="devUserPhone" slot-scope="{ data }">
{{ phoneCrypto(data.devUserPhone) || '-' }} {{ phoneCrypto(data.devUserPhone) || '-' }}
</template> </template>
<template slot="handle" slot-scope="{ data }">
<el-button
size="mini"
@click="handleClick(data)"
v-if="data.proType === '2'"
>{{ data.bindId ? '修改杆塔' : '绑定杆塔' }}</el-button
>
</template>
</TableModelTwo> </TableModelTwo>
<!-- 绑定弹框 -->
<el-dialog
width="40%"
title="绑定杆塔"
v-if="bindVisible"
:visible.sync="bindVisible"
>
<el-form
label-width="80px"
ref="bindPowerFormRef"
:model="bindPowerForm"
:rules="bindPowerFormRules"
>
<el-form-item label="绑定杆塔" prop="powerId">
<el-select
clearable
placeholder="请选择需要绑定的杆塔"
v-model="bindPowerForm.powerId"
>
<el-option
v-for="item in powerList"
:key="item.powerId"
:label="item.powerName"
:value="item.powerId"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button size="mini" type="primary" @click="onSubmit"
> </el-button
>
<el-button size="mini" @click="onCancel"> </el-button>
</el-form-item>
</el-form>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
import { formLabel, columnsList, } from './config' import { formLabel, columnsList } from './config'
import { commonMixin } from '../mixins/common' import { commonMixin } from '../mixins/common'
import { import {
queryEdgeDeviceListApiTwo getPowerListApi,
putPowerDataApi,
queryEdgeDeviceListApiTwo,
} from '@/api/base/edgeDevice' } from '@/api/base/edgeDevice'
export default { export default {
name: 'EdgeDevice', name: 'EdgeDevice',
methods: { methods: {
queryEdgeDeviceListApiTwo async handleClick(row) {
if (row.bindId) {
this.bindPowerForm.powerId = row.bindId
} else {
this.bindPowerForm.powerId = ''
}
const { id } = row
this.bindPowerForm.id = id
const res = await getPowerListApi({ id })
this.powerList = res.rows
this.bindVisible = true
},
/* 确定 */
onSubmit() {
this.$refs.bindPowerFormRef.validate(async (valid) => {
if (valid) {
const res = await putPowerDataApi(this.bindPowerForm)
if (res.code === 200) {
this.$message.success('绑定成功!')
this.bindVisible = false
this.$refs.tableRef.getTableList()
}
}
})
},
/* 取消 */
onCancel() {
this.bindVisible = false
},
}, },
mixins: [commonMixin], mixins: [commonMixin],
components: { components: {},
created() {},
},
created() {
},
data() { data() {
return { return {
// //
@ -43,6 +115,23 @@ export default {
// exportList: [], // exportList: [],
// //
columnsList, columnsList,
powerList: [], //
bindVisible: false,
queryEdgeDeviceListApiTwo,
bindPowerForm: {
powerId: '',
id: '',
},
bindPowerFormRules: {
powerId: [
{
required: true,
message: '请选择需要绑定的杆塔',
trigger: 'change',
},
],
},
// //
} }
}, },

View File

@ -35,7 +35,7 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: `http://192.168.2.12:18080`, target: `http://192.168.0.110:18080`,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
["^" + process.env.VUE_APP_BASE_API]: "", ["^" + process.env.VUE_APP_BASE_API]: "",