|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" @submit.native.prevent>
|
|
|
<el-form-item label="名称" prop="name">
|
|
|
<el-input
|
|
|
v-model="queryParams.name"
|
|
@@ -29,6 +29,16 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item prop="deptId">
|
|
|
+ <template slot="label">
|
|
|
+ <span @click="changeQueryType" v-if="queryParams.deptName == 0">本级及下级</span>
|
|
|
+ <span @click="changeQueryType" v-if="queryParams.deptName == 1">只查询本级</span>
|
|
|
+ </template>
|
|
|
+ <treeselect v-model="queryParams.deptId" :options="deptOptionsa" multiple:false :show-count="true"
|
|
|
+ placeholder="请选择部门" @select="hx" :noResultsText="'空'" :noOptionsText="'空'"
|
|
|
+ style="width: 240px"/>
|
|
|
+ <el-input v-model="queryParams.deptName" v-if="false"/>
|
|
|
+ </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>
|
|
@@ -99,14 +109,14 @@
|
|
|
<el-table-column label="所在河流" align="center" prop="river">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-for="river in riverList" :key="river.id" :label="river.name" :value="river.id">
|
|
|
- <span v-if="scope.row.river == river.id">{{river.name}}</span>
|
|
|
+ <span v-if="scope.row.river == river.id">{{ river.name }}</span>
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="所在河段" align="center" prop="reach">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-for="reach in reachList" :key="reach.id" :label="reach.name" :value="reach.id">
|
|
|
- <span v-if="scope.row.reach == reach.id">{{reach.name}}</span>
|
|
|
+ <span v-if="scope.row.reach == reach.id">{{ reach.name }}</span>
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -175,7 +185,8 @@
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="归属机构" prop="institutionId">
|
|
|
- <Treeselect v-model="form.institutionId" :options="deptOptionsa" :show-count="true" placeholder="请选择归属机构"
|
|
|
+ <Treeselect v-model="form.institutionId" :options="deptOptionsa" :show-count="true"
|
|
|
+ placeholder="请选择归属机构"
|
|
|
@select="hx" :noResultsText="'空'" :noOptionsText="'空'"/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -240,12 +251,12 @@
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="面积m³" prop="area">
|
|
|
- <el-input v-model="form.area" placeholder="请输入面积" maxlength = "20"/>
|
|
|
+ <el-input v-model="form.area" placeholder="请输入面积" maxlength="20"/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="所属部门" prop="deptId">
|
|
|
-<!-- <Deptselector :setValue=setDataDeptId :dataDeptId="form.deptId"/>-->
|
|
|
+ <!-- <Deptselector :setValue=setDataDeptId :dataDeptId="form.deptId"/>-->
|
|
|
<treeselect v-model="form.deptId" :options="deptOptionsa" multiple:false :show-count="true"
|
|
|
placeholder="请选择部门" @select="bm" :noResultsText="'空'" :noOptionsText="'空'"/>
|
|
|
|
|
@@ -285,289 +296,297 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
- addChannelblueline,
|
|
|
- delChannelblueline,
|
|
|
- getChannelblueline,
|
|
|
- listAllReach,
|
|
|
- listChannelblueline,
|
|
|
- updateChannelblueline
|
|
|
- } from "@/api/data/digitalwater/channelblueline";
|
|
|
- import {listAllRiver} from "@/api/data/digitalwater/reach";
|
|
|
- import {checkPositiveDecimal,checkLat,checkLon,validPhoneMobile} from "@/api/rules/rules";
|
|
|
- import {treeselect} from "@/api/system/dept";
|
|
|
- import Deptselector from '@/views/components/deptselector.vue';
|
|
|
- import Supermap from '@/views/components/supermap.vue';
|
|
|
- import Treeselect from "@riophae/vue-treeselect";
|
|
|
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
- import {selectCenterMonitorlList} from "@/api/data/digitalforest/animal/animal";
|
|
|
- import ISuperMap from "@/views/data/common/ISuperMap";
|
|
|
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
- import DataImageUpload from "@/components/ImageUpload/dataUpload.vue";
|
|
|
- export default {
|
|
|
- name: "Channelblueline",
|
|
|
- components: {DataImageUpload, Deptselector, Supermap, Treeselect,ISuperMap},
|
|
|
- dicts: ['centerdata_attr_type'],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- // 遮罩层
|
|
|
- loading: true,
|
|
|
- deptOptionsa: undefined,
|
|
|
- sign: 1,
|
|
|
- ISuperMapvisible: false,
|
|
|
+import {
|
|
|
+ addChannelblueline,
|
|
|
+ delChannelblueline,
|
|
|
+ getChannelblueline,
|
|
|
+ listAllReach,
|
|
|
+ listChannelblueline,
|
|
|
+ updateChannelblueline
|
|
|
+} from "@/api/data/digitalwater/channelblueline";
|
|
|
+import {listAllRiver} from "@/api/data/digitalwater/reach";
|
|
|
+import {checkPositiveDecimal, checkLat, checkLon, validPhoneMobile} from "@/api/rules/rules";
|
|
|
+import {treeselect} from "@/api/system/dept";
|
|
|
+import Deptselector from '@/views/components/deptselector.vue';
|
|
|
+import Supermap from '@/views/components/supermap.vue';
|
|
|
+import Treeselect from "@riophae/vue-treeselect";
|
|
|
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
+import {selectCenterMonitorlList} from "@/api/data/digitalforest/animal/animal";
|
|
|
+import ISuperMap from "@/views/data/common/ISuperMap";
|
|
|
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
+import DataImageUpload from "@/components/ImageUpload/dataUpload.vue";
|
|
|
|
|
|
- // 选中数组
|
|
|
- ids: [],
|
|
|
- // 非单个禁用
|
|
|
- single: true,
|
|
|
- // 非多个禁用
|
|
|
- multiple: true,
|
|
|
- // 显示搜索条件
|
|
|
- showSearch: true,
|
|
|
- // 总条数
|
|
|
- total: 0,
|
|
|
- cameraList:[],//设备集合
|
|
|
- // 河道蓝线资源表格数据
|
|
|
- channelbluelineList: [],
|
|
|
- // 弹出层标题
|
|
|
- title: "",
|
|
|
- // 是否显示弹出层
|
|
|
- open: false,
|
|
|
- // 查询参数
|
|
|
- queryParams: {
|
|
|
- pageNum: 1,
|
|
|
- pageSize: 10,
|
|
|
- name: null,
|
|
|
- attrType: null,
|
|
|
- riverLeader: null,
|
|
|
- },
|
|
|
- // 表单参数
|
|
|
- form: {},
|
|
|
- checkPositiveDecimal: checkPositiveDecimal,
|
|
|
+export default {
|
|
|
+ name: "Channelblueline",
|
|
|
+ components: {DataImageUpload, Deptselector, Supermap, Treeselect, ISuperMap},
|
|
|
+ dicts: ['centerdata_attr_type'],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ deptOptionsa: undefined,
|
|
|
+ sign: 1,
|
|
|
+ ISuperMapvisible: false,
|
|
|
|
|
|
- // 表单校验
|
|
|
- rules: {
|
|
|
- name: [
|
|
|
- {required: true, message: "名称不能为空", trigger: "blur"}
|
|
|
- ],
|
|
|
- attrType: [
|
|
|
- {required: true, message: "属性类型不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
- institutionId: [
|
|
|
- {required: true, message: "归属机构不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
- river: [
|
|
|
- {required: true, message: "所在河流不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
- reach: [
|
|
|
- {required: true, message: "所在河段不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
- riverLeader: [
|
|
|
- {required: true, message: "河长不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
- longitude: [
|
|
|
- {required: true, message: "经度不能为空", trigger: "change"},
|
|
|
- {validator: checkLon, trigger: 'blur'}
|
|
|
- ],
|
|
|
- latitude: [
|
|
|
- {required: true, message: "纬度不能为空", trigger: "change"},
|
|
|
- {validator: checkLat, trigger: 'blur'}
|
|
|
- ],
|
|
|
- contactsPhone: [
|
|
|
- {required: true, message: '电话不能为空', trigger: 'blur'},
|
|
|
- {validator: validPhoneMobile, trigger: 'blur'}
|
|
|
- ],
|
|
|
- area: [
|
|
|
- {validator: checkPositiveDecimal, trigger: 'blur'}
|
|
|
- ],
|
|
|
- deptId: [
|
|
|
- {required: true, message: "所属部门不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
- },
|
|
|
- showLongitude: false,
|
|
|
- riverList: [],
|
|
|
- reachList: []
|
|
|
- };
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.getList();
|
|
|
- this.getTreeselect();
|
|
|
- listAllRiver(this.queryParams).then(response => {
|
|
|
- this.riverList = response.data;
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ cameraList: [],//设备集合
|
|
|
+ // 河道蓝线资源表格数据
|
|
|
+ channelbluelineList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ name: null,
|
|
|
+ attrType: null,
|
|
|
+ riverLeader: null,
|
|
|
+ deptId: null,
|
|
|
+ deptName: 0,
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ checkPositiveDecimal: checkPositiveDecimal,
|
|
|
+
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ name: [
|
|
|
+ {required: true, message: "名称不能为空", trigger: "blur"}
|
|
|
+ ],
|
|
|
+ attrType: [
|
|
|
+ {required: true, message: "属性类型不能为空", trigger: "change"}
|
|
|
+ ],
|
|
|
+ institutionId: [
|
|
|
+ {required: true, message: "归属机构不能为空", trigger: "change"}
|
|
|
+ ],
|
|
|
+ river: [
|
|
|
+ {required: true, message: "所在河流不能为空", trigger: "change"}
|
|
|
+ ],
|
|
|
+ reach: [
|
|
|
+ {required: true, message: "所在河段不能为空", trigger: "change"}
|
|
|
+ ],
|
|
|
+ riverLeader: [
|
|
|
+ {required: true, message: "河长不能为空", trigger: "change"}
|
|
|
+ ],
|
|
|
+ longitude: [
|
|
|
+ {required: true, message: "经度不能为空", trigger: "change"},
|
|
|
+ {validator: checkLon, trigger: 'blur'}
|
|
|
+ ],
|
|
|
+ latitude: [
|
|
|
+ {required: true, message: "纬度不能为空", trigger: "change"},
|
|
|
+ {validator: checkLat, trigger: 'blur'}
|
|
|
+ ],
|
|
|
+ contactsPhone: [
|
|
|
+ {required: true, message: '电话不能为空', trigger: 'blur'},
|
|
|
+ {validator: validPhoneMobile, trigger: 'blur'}
|
|
|
+ ],
|
|
|
+ area: [
|
|
|
+ {validator: checkPositiveDecimal, trigger: 'blur'}
|
|
|
+ ],
|
|
|
+ deptId: [
|
|
|
+ {required: true, message: "所属部门不能为空", trigger: "change"}
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ showLongitude: false,
|
|
|
+ riverList: [],
|
|
|
+ reachList: []
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ this.getTreeselect();
|
|
|
+ listAllRiver(this.queryParams).then(response => {
|
|
|
+ this.riverList = response.data;
|
|
|
+ });
|
|
|
+ listAllReach(this.queryParams).then(response => {
|
|
|
+ this.reachList = response.data;
|
|
|
+ });
|
|
|
+ selectCenterMonitorlList(this.queryParams).then(response => {
|
|
|
+ this.cameraList = response.data;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 上传 */
|
|
|
+ getUrl(url) {
|
|
|
+ this.form.attachPaths = url
|
|
|
+ },
|
|
|
+ riverLabel(river) {
|
|
|
+ this.form.riverLabel = river.name
|
|
|
+ },
|
|
|
+ reachLabel(reach) {
|
|
|
+ this.form.reachLabel = reach.name
|
|
|
+ },
|
|
|
+ bm(node) {
|
|
|
+ this.form.dataDeptId = node.id
|
|
|
+ this.form.deptId = node.id
|
|
|
+ this.form.deptName = node.label
|
|
|
+ this.$refs.form.validateField("deptId")
|
|
|
+ },
|
|
|
+ showLatLng: function (lat, lng) {
|
|
|
+ this.form.latitude = lat;
|
|
|
+ this.form.longitude = lng;
|
|
|
+ },
|
|
|
+ /** 查询部门下拉树结构 */
|
|
|
+ getTreeselect() {
|
|
|
+ treeselect().then(response => {
|
|
|
+ this.deptOptionsa = response.data;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ hx(node) {
|
|
|
+ this.form.institutionId = node.id;
|
|
|
+ this.form.institutionName = node.label;
|
|
|
+ },
|
|
|
+ /** 查询河道蓝线资源列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listChannelblueline(this.queryParams).then(response => {
|
|
|
+ this.channelbluelineList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ name: null,
|
|
|
+ attrType: null,
|
|
|
+ institutionId: null,
|
|
|
+ institutionName: null,
|
|
|
+ address: null,
|
|
|
+ river: null,
|
|
|
+ reach: null,
|
|
|
+ riverLeader: null,
|
|
|
+ contactsPhone: null,
|
|
|
+ area: null,
|
|
|
+ longitude: null,
|
|
|
+ latitude: null,
|
|
|
+ deptId: null,
|
|
|
+ deptName: null,
|
|
|
+ createBy: null,
|
|
|
+ createName: null,
|
|
|
+ createTime: null,
|
|
|
+ updateBy: null,
|
|
|
+ updateName: null,
|
|
|
+ updateTime: null,
|
|
|
+ dataStatus: "0"
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.queryParams.deptName = 0;
|
|
|
+ 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
|
|
|
+ getChannelblueline(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) {
|
|
|
+ updateChannelblueline(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
});
|
|
|
- listAllReach(this.queryParams).then(response => {
|
|
|
- this.reachList = response.data;
|
|
|
+ } else {
|
|
|
+ addChannelblueline(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
});
|
|
|
- selectCenterMonitorlList(this.queryParams).then(response => {
|
|
|
- this.cameraList = response.data;
|
|
|
- });
|
|
|
- },
|
|
|
- methods: {
|
|
|
- /** 上传 */
|
|
|
- getUrl(url) {
|
|
|
- this.form.attachPaths=url
|
|
|
- },
|
|
|
- riverLabel(river) {
|
|
|
- this.form.riverLabel = river.name
|
|
|
- },
|
|
|
- reachLabel(reach) {
|
|
|
- this.form.reachLabel = reach.name
|
|
|
- },
|
|
|
- bm(node) {
|
|
|
- this.form.dataDeptId = node.id
|
|
|
- this.form.deptId = node.id
|
|
|
- this.form.deptName = node.label
|
|
|
- this.$refs.form.validateField("deptId")
|
|
|
- },
|
|
|
- showLatLng: function (lat, lng) {
|
|
|
- this.form.latitude = lat;
|
|
|
- this.form.longitude = lng;
|
|
|
- },
|
|
|
- /** 查询部门下拉树结构 */
|
|
|
- getTreeselect() {
|
|
|
- treeselect().then(response => {
|
|
|
- this.deptOptionsa = response.data;
|
|
|
- });
|
|
|
- },
|
|
|
- hx(node) {
|
|
|
- this.form.institutionId = node.id;
|
|
|
- this.form.institutionName = node.label;
|
|
|
- },
|
|
|
- /** 查询河道蓝线资源列表 */
|
|
|
- getList() {
|
|
|
- this.loading = true;
|
|
|
- listChannelblueline(this.queryParams).then(response => {
|
|
|
- this.channelbluelineList = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
- },
|
|
|
- // 取消按钮
|
|
|
- cancel() {
|
|
|
- this.open = false;
|
|
|
- this.reset();
|
|
|
- },
|
|
|
- // 表单重置
|
|
|
- reset() {
|
|
|
- this.form = {
|
|
|
- id: null,
|
|
|
- name: null,
|
|
|
- attrType: null,
|
|
|
- institutionId: null,
|
|
|
- institutionName: null,
|
|
|
- address: null,
|
|
|
- river: null,
|
|
|
- reach: null,
|
|
|
- riverLeader: null,
|
|
|
- contactsPhone: null,
|
|
|
- area: null,
|
|
|
- longitude: null,
|
|
|
- latitude: null,
|
|
|
- deptId: null,
|
|
|
- deptName: null,
|
|
|
- createBy: null,
|
|
|
- createName: null,
|
|
|
- createTime: null,
|
|
|
- updateBy: null,
|
|
|
- updateName: null,
|
|
|
- updateTime: null,
|
|
|
- dataStatus: "0"
|
|
|
- };
|
|
|
- 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
|
|
|
- getChannelblueline(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) {
|
|
|
- updateChannelblueline(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- } else {
|
|
|
- addChannelblueline(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- /** 删除按钮操作 */
|
|
|
- handleDelete(row) {
|
|
|
- const ids = row.id || this.ids;
|
|
|
- this.$modal.confirm('是否确认删除所选数据项?').then(function () {
|
|
|
- return delChannelblueline(ids);
|
|
|
- }).then(() => {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgSuccess("删除成功");
|
|
|
- }).catch(() => {
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- showMap() {
|
|
|
- this.ISuperMapvisible = true;
|
|
|
- this.$nextTick(() => {
|
|
|
- this.$refs.ISuperMap.init(this.sign, {
|
|
|
- id: this.form.id,
|
|
|
- longitude: this.form.longitude,
|
|
|
- latitude: this.form.latitude,
|
|
|
- xiantude: this.form.longitude//this.form.longitude换成每个页面对应线或者面对应的字段
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
- send(val) {
|
|
|
- if (val===true){
|
|
|
- this.ISuperMapvisible = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.sign === 1) {
|
|
|
- this.form.longitude = val.longitude;
|
|
|
- this.form.latitude = val.latitude;
|
|
|
- }
|
|
|
- if (this.sign === 2 || this.sign === 3) this.form.longitude = val.xiantude;//this.form.longitude 换成对应的线或区域的字段
|
|
|
- this.ISuperMapvisible = false
|
|
|
- },
|
|
|
- /** 导出按钮操作 */
|
|
|
- handleExport() {
|
|
|
- this.download('sooka-sponest-center-data/channelblueline/export', {
|
|
|
- ...this.queryParams
|
|
|
- }, `河道蓝线资源_${new Date().getTime()}.xlsx`)
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
- };
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$modal.confirm('是否确认删除所选数据项?').then(function () {
|
|
|
+ return delChannelblueline(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ showMap() {
|
|
|
+ this.ISuperMapvisible = true;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.ISuperMap.init(this.sign, {
|
|
|
+ id: this.form.id,
|
|
|
+ longitude: this.form.longitude,
|
|
|
+ latitude: this.form.latitude,
|
|
|
+ xiantude: this.form.longitude//this.form.longitude换成每个页面对应线或者面对应的字段
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ send(val) {
|
|
|
+ if (val === true) {
|
|
|
+ this.ISuperMapvisible = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (this.sign === 1) {
|
|
|
+ this.form.longitude = val.longitude;
|
|
|
+ this.form.latitude = val.latitude;
|
|
|
+ }
|
|
|
+ if (this.sign === 2 || this.sign === 3) this.form.longitude = val.xiantude;//this.form.longitude 换成对应的线或区域的字段
|
|
|
+ this.ISuperMapvisible = false
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ this.download('sooka-sponest-center-data/channelblueline/export', {
|
|
|
+ ...this.queryParams
|
|
|
+ }, `河道蓝线资源_${new Date().getTime()}.xlsx`)
|
|
|
+ },
|
|
|
+ // 点击按钮修改是否只查询本级部门用户
|
|
|
+ changeQueryType() {
|
|
|
+ this.queryParams.deptName = this.queryParams.deptName == 0 ? 1 : 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
</script>
|