|
@@ -0,0 +1,146 @@
|
|
|
+<template>
|
|
|
+ <el-dialog
|
|
|
+ :modal-append-to-body="false"
|
|
|
+ :visible.sync="visible"
|
|
|
+ title="批量转移"
|
|
|
+ @close="closeDialog"
|
|
|
+ >
|
|
|
+ <main>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules">
|
|
|
+ <el-form-item label="转移门店" prop="shop_id">
|
|
|
+ <lazy-tree
|
|
|
+ ref="addTree"
|
|
|
+ :tree="form.shop_name"
|
|
|
+ input-width="400px"
|
|
|
+ is-gap
|
|
|
+ @handleSelectGroup="selectGroup"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="转移充电站" prop="group_id">
|
|
|
+ <el-select
|
|
|
+ v-model="form.group_id"
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
+ placeholder="充电站"
|
|
|
+ size="mini"
|
|
|
+ @change="changeGroup"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in chargeStationList"
|
|
|
+ :key="item.group_id"
|
|
|
+ :label="item.group_name"
|
|
|
+ :value="item.group_id"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="新增转移充电桩" prop="dev_id_list">
|
|
|
+ <el-input
|
|
|
+ :rows="5"
|
|
|
+ v-model="form.dev_id_list"
|
|
|
+ type="textarea"
|
|
|
+ placeholder="一行一个编号"
|
|
|
+ style="width: 50%;"
|
|
|
+ mini="size"
|
|
|
+ @input="changeDevId"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <el-table v-if="form.dev_id_list && chrpannelList.length" :data="chrpannelList">
|
|
|
+ <el-table-column label="充电桩名称" prop="chrpannel_name" />
|
|
|
+ <el-table-column label="充电桩编号" prop="dev_id" />
|
|
|
+ <el-table-column label="门店" prop="shop_name" />
|
|
|
+ <el-table-column label="充电站名称" prop="group_name" />
|
|
|
+ </el-table>
|
|
|
+ </main>
|
|
|
+ <div slot="footer">
|
|
|
+ <el-button type="info" @click="closeDialog">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="submit">保 存</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import LazyTree from '@/components/LazyTree'
|
|
|
+import { apiQueryChargerGroupList, apiBatchChrpannelTransfer, apiQueryChrpannelBydevId } from '@/api/deviceCfg'
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ LazyTree
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ form: {},
|
|
|
+ visible: false,
|
|
|
+ chargeStationList: [],
|
|
|
+ chrpannelList: [],
|
|
|
+ rules: {
|
|
|
+ shop_id: [{ required: true, message: '请选择门店', trigger: 'blur' }],
|
|
|
+ group_id: [{ required: true, message: '请选择转移充电站', trigger: 'blur' }],
|
|
|
+ dev_id_list: [{ required: true, message: '请输入转移充电桩编号', trigger: 'blur' }]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ open() {
|
|
|
+ const data = { ...this.$options.data() }
|
|
|
+ delete data.rules
|
|
|
+ Object.assign(this.$data, data)
|
|
|
+ this.visible = true
|
|
|
+ },
|
|
|
+ queryChargerStationByShop(shop_id) {
|
|
|
+ apiQueryChargerGroupList({ shop_id, limit: 998 }).then(res => {
|
|
|
+ if (res.succeed) {
|
|
|
+ this.chargeStationList = res.body.list || []
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ selectGroup(group) {
|
|
|
+ this.$set(this.form, 'shop_name', group.shop_name)
|
|
|
+ this.$set(this.form, 'shop_id', group.shop_id)
|
|
|
+ this.queryChargerStationByShop(group.shop_id)
|
|
|
+ },
|
|
|
+ closeDialog() {
|
|
|
+ this.visible = false
|
|
|
+ },
|
|
|
+ changeGroup(val) {
|
|
|
+ const obj = this.chargeStationList.find(item => item.group_id === val)
|
|
|
+ if (obj) {
|
|
|
+ this.$set(this.form, 'groupName', obj.group_name)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ changeDevId(str) {
|
|
|
+ const dev_id_list = str.split('\n')
|
|
|
+ this.queryChrpannelBydevId(dev_id_list)
|
|
|
+ },
|
|
|
+ queryChrpannelBydevId(dev_id_list) {
|
|
|
+ apiQueryChrpannelBydevId({ dev_id_list }).then(res => {
|
|
|
+ if (res.succeed) {
|
|
|
+ this.chrpannelList = res.body.list
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ submit() {
|
|
|
+ this.$refs.form.validate(valid => {
|
|
|
+ if (!valid) return
|
|
|
+ const form = { ...this.form }
|
|
|
+ const len = this.chrpannelList.length
|
|
|
+ this.$confirm(`是否确定将这 ${len} 个充电桩转移到【${form.shop_name}】门店下的【${form.groupName}】充电站`, '充电桩转移确认', {
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ apiBatchChrpannelTransfer(form).then(res => {
|
|
|
+ if (res.succeed) {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '转移成功'
|
|
|
+ })
|
|
|
+ this.closeDialog()
|
|
|
+ this.$emit('success')
|
|
|
+ } else {
|
|
|
+ this.$message({ type: 'error', message: res.data.msg })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|