123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" v-if="['2','1','3'].includes(routeParams.wildlifeType)" :inline="true"
- v-show="showSearch" @submit.native.prevent>
- <el-form-item label="动物种类" prop="type">
- <treeselect v-model="queryParams.type" :noOptionsText="'空'"
- :noResultsText="'空'" :options="cityOptions" placeholder="请选择动物种类" @select="hc"
- :disable-branch-nodes="true" style="width: 240px"/>
- </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="deptOptions" 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 label="上报设备" prop="deviceList" v-if="['2'].includes(routeParams.wildlifeType)" clearable label-width="120px">
- <el-select v-model="queryParams.deviceList" filterable placeholder="请选择上报设备">
- <el-option
- v-for="dict in monitorList"
- :key="dict.id"
- :label="dict.cameraName"
- :value="dict.id"
- ></el-option>
- </el-select>
- </el-form-item>-->
- <el-form-item label="出现时间" prop="appearTime" v-if="['2'].includes(routeParams.wildlifeType)"
- label-width="120px">
- <el-date-picker clearable
- v-model="queryParams.appearTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="请选择出现时间">
- </el-date-picker>
- </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>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5" v-if="['1'].includes(routeParams.wildlifeType)">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['forest:animal:add']"
- >新增
- </el-button>
- </el-col>
- <el-col :span="1.5" v-if="['1'].includes(routeParams.wildlifeType)">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['forest:animal:edit']"
- >修改
- </el-button>
- </el-col>
- <el-col :span="1.5" v-if="['1'].includes(routeParams.wildlifeType)">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['forest:animal:remove']"
- >删除
- </el-button>
- </el-col>
- <el-col :span="1.5" v-if="[ '2', '3']">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['forest:animal:export']"
- >导出
- </el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="animalList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center"/>
- <el-table-column label="动物种类" align="center" prop="typeLabel"/>
- <el-table-column label="所属部门" align="center" prop="deptName"/>
- <!-- <el-table-column label="上报设备" align="center" prop="cameraName"-->
- <!-- v-if="['2'].includes(routeParams.wildlifeType)"/>-->
- <el-table-column label="出现时间" align="center" prop="appearTime"
- v-if="['1','2'].includes(routeParams.wildlifeType)"/>
- <el-table-column label="出现频次" align="center" prop="frequency"
- v-if="['3'].includes(routeParams.wildlifeType)"/>
- <el-table-column label="创建人" align="center" prop="createName"
- v-if="['1'].includes(routeParams.wildlifeType)"/>
- <el-table-column label="创建时间" align="center" prop="createTime"
- v-if="['1'].includes(routeParams.wildlifeType)"/>
- <el-table-column label="修改人" align="center" prop="updateName"
- v-if="['1'].includes(routeParams.wildlifeType)"/>
- <el-table-column label="修改时间" align="center" prop="updateTime"
- v-if="['1'].includes(routeParams.wildlifeType)"/>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width"
- v-if="['1','2'].includes(routeParams.wildlifeType)">
- <template slot-scope="scope">
- <el-button v-if="['2'].includes(routeParams.wildlifeType)"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleDetail(scope.row)"
- v-hasPermi="['forest:animal:edit']"
- >详情
- </el-button>
- <el-button v-if="['1'].includes(routeParams.wildlifeType)"
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['forest:animal:edit']"
- >修改
- </el-button>
- <el-button v-if="['1'].includes(routeParams.wildlifeType)"
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['forest:animal:remove']"
- >删除
- </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="800px" class="form-style">
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
- <el-row>
- <el-col :span="12">
- <el-form-item label="动物类型" prop="type">
- <treeselect v-model="form.type" :noOptionsText="'空'"
- :noResultsText="'空'" :options="cityOptions" placeholder="请选择动物类型" @select="hc"
- :disable-branch-nodes="true"/>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="所属部门" prop="deptId">
- <treeselect v-model="form.deptId" :options="deptOptions" multiple:false :show-count="true"
- placeholder="请选择部门" @select="hx" :noResultsText="'空'" :noOptionsText="'空'"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="经度" prop="longitude" @dblclick.native="showMap">
- <el-input v-model="form.longitude" placeholder="鼠标双击选择经纬度" :disabled="disabled"/>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="纬度" prop="latitude" @dblclick.native="showMap">
- <el-input v-model="form.latitude" placeholder="鼠标双击选择经纬度" :disabled="disabled"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="出现时间" prop="appearTime">
- <el-date-picker clearable
- v-model="form.appearTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择出现时间">
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="24">
- <el-form-item label="上报设备" prop="deviceList">
- <el-select v-model="form.deviceList" filterable placeholder="请选择上报设备" multiple>
- <el-option
- v-for="dict in monitorList"
- :key="dict.id"
- :label="dict.cameraName"
- :value="dict.id"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="图片" prop="attachId">
- <ImageUpload ref="ImageUpload" :limit="1" :fileType="['png', 'jpg', 'jpeg']"
- :value="form.attachId"
- @input="getUrl"></ImageUpload>
- </el-form-item>
- </el-col>
- </el-row>
- </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>
- <!-- 野生动物详情对话框 -->
- <el-dialog :title="title" :visible.sync="openSee" width="800px" class="form-style">
- <el-form ref="form" :model="form" :rules="rules" label-width="100px">
- <el-row>
- <el-col :span="12">
- <el-form-item label="动物类型" prop="type">
- <treeselect v-model="form.type" :noOptionsText="'空'"
- :noResultsText="'空'" :options="cityOptions" placeholder="请选择动物类型" @select="hc"
- :disable-branch-nodes="true" :disabled="findView"/>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="所属部门" prop="deptName">
- <el-input v-model="form.deptName" :disabled="findView"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="经度" prop="longitude" @dblclick.native="showMap" >
- <el-input v-model="form.longitude" placeholder="双击选取经度" :disabled="findView"/>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="纬度" prop="latitude" @dblclick.native="showMap" >
- <el-input v-model="form.latitude" placeholder="双击选取纬度" :disabled="findView"/>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="出现时间" prop="appearTime" >
- <el-date-picker clearable size="small"
- :disabled="findView"
- v-model="form.appearTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择出现时间">
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="24">
- <el-form-item label="上报设备" prop="deviceList">
- <el-select v-model="form.deviceList" filterable placeholder="" :disabled="findView" multiple>
- <el-option
- v-for="dict in monitorList"
- :key="dict.id"
- :label="dict.cameraName"
- :value="dict.id"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <!-- <el-form-item label="图片" prop="attachId">
- <ImageUpload ref="ImageUpload" :limit="1" :fileType="['png', 'jpg', 'jpeg']"
- :value="form.attachId"
- @input="getUrl"></ImageUpload>
- </el-form-item>-->
- <el-form-item label="图片" prop="attachId">
- <!-- <img-->
- <!-- :src="form.picture"-->
- <!-- style="display: block; max-width: 100%; margin: 0 auto"-->
- <!-- />-->
- <img :src="form.attachId" style="width:150px;height:150px;"/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="titleLongitude" :visible.sync="showLongitude" append-to-body>
- <el-input v-show="false" v-model="form.longitude"></el-input>
- <el-input v-show="false" v-model="form.latitude"></el-input>
- <supermap style="width: 100%;height: 500px;" :mapDiv="'farmMapanimal'" :mapSite="{doubleClickZoom:false}"
- :codes="['9fa5']" :isSideBySide="false" :showLatLng="showLatLng"></supermap>
- <el-button type="primary" @click="showLongitude=false">确定</el-button>
- </el-dialog>
- <ISuperMap ref="ISuperMap" v-if="ISuperMapvisible" @send="send"/>
- </div>
- </template>
- <script>
- import {
- listAnimal,
- getAnimal,
- delAnimal,
- addAnimal,
- updateAnimal,
- selectCenterMonitorlList,
- DictOptions
- } from "@/api/data/digitalforest/animal/animal";
- import supermap from '@/views/components/supermap'
- import deptselector from '@/views/components/deptselector'
- import Treeselect from "@riophae/vue-treeselect";
- import {treeselect} from '@/api/system/dept'
- import '@riophae/vue-treeselect/dist/vue-treeselect.css'
- import {checkLat, checkLon} from "@/api/rules/rules";
- import ISuperMap from "@/views/data/common/ISuperMap";
- export default {
- components: {
- ISuperMap,
- deptselector,
- supermap,
- Treeselect,
- },
- name: "Animal",
- dicts: ['forest_animal'],
- data() {
- return {
- sign: 1,
- ISuperMapvisible: false,
- disabled: false,
- showLongitude: false,
- cityOptions:[],
- // 部门树选项
- deptOptions: undefined,
- titleLongitude: '经纬度',
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 是否显示提交按钮
- submit: false,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- monitorList: [],
- // 野生动物监测表格数据
- animalList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- openSee: false,
- // 路由参数
- routeParams: {
- wildlifeType: null
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- dataStatus: null,
- type: null,
- longitude: null,
- latitude: null,
- attachId: null,
- deptId: null,
- deptName: 0,
- appearTime: null,
- wildlifeType: null,
- },
- // 表单参数
- form: {
- dialogImageUrl: '',
- imageUrl: ''
- },
- // 是否禁用弹出层表单
- findView: false,
- defaultProps: {
- children: 'children',
- label: 'label'
- },
- // 表单校验
- rules: {
- type: [
- {required: true, message: '动物类型不能为空', trigger: 'change'}
- ],
- deptId: [
- {required: true, message: '所属部门不能为空', trigger: 'change'}
- ],
- appearTime: [
- {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'}
- ],
- createBy: [
- {required: true, message: '上报设备不能为空', trigger: 'change'}
- ],
- attachId: [
- {required: true, message: '图片不能为空', trigger: 'change'}
- ]
- }
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val)
- }
- },
- created() {
- // 路由参数 秸秆还田类型
- // alert(this.$route.params.wildlifeType)
- this.routeParams.wildlifeType = this.$route.query.wildlifeType;
- this.getList();
- this.getDictselect();
- this.getTreeselect();
- selectCenterMonitorlList(this.queryParams).then(response => {
- this.monitorList = response.data;
- });
- },
- methods: {
- hx(node) {
- this.form.dataDeptId = node.id
- this.form.deptId = node.id
- this.form.deptName = node.label
- this.$refs.form.validateField("deptId")
- },
- getDictselect(){
- DictOptions().then(response => {
- this.cityOptions =response;
- });
- },
- hc(node){
- // this.form.occurPlace = node.id
- this.form.placeId = node.id
- this.form.place = node.label
- this.$refs.form.validateField("placeId")
- },
- 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
- },
- setDeptId(deptId) {
- this.form.deptId = deptId
- },
- getUrl(url) {
- this.form.dialogImageUrl = url;
- this.form.attachId = url;
- },
- setDataDeptId(e) {
- this.form.deptId = e.deptId
- this.form.deptName = e.deptName
- },
- /*hx(node) {
- // this.form.deptId = node.id
- this.form.deptName = node.label
- },
- showMap() {
- this.showLongitude = true
- },*/
- showLatLng: function (lat, lng) {
- this.form.latitude = lat
- this.form.longitude = lng
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then(response => {
- this.deptOptions = response.data;
- });
- },
- /** 查询野生动物监测列表 */
- getList() {
- this.loading = true;
- this.queryParams.wildlifeType = this.$route.query.wildlifeType;// 查询野生动物监测类型
- listAnimal(this.queryParams).then(response => {
- this.animalList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.openSee = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- createBy: null,
- createTime: null,
- updateBy: null,
- updateTime: null,
- dataStatus: "0",
- type: null,
- longitude: null,
- latitude: null,
- attachId: null,
- deptId: null,
- deptName: null,
- appearTime: null,
- wildlifeType: this.routeParams.wildlifeType
- };
- 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() {
- selectCenterMonitorlList(this.queryParams).then(response => {
- this.monitorList = response.data;
- });
- this.reset();
- this.open = true;
- this.submit = true;
- this.title = "添加野生动物监测";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- selectCenterMonitorlList(this.queryParams).then(response => {
- this.monitorList = response.data;
- });
- this.reset();
- const id = row.id || this.ids
- getAnimal(id).then(response => {
- this.form = response.data;
- this.open = true;
- this.submit = true;
- this.title = "修改野生动物监测";
- });
- },
- /** 详情按钮操作 */
- handleDetail(row) {
- this.reset();
- this.findView = true;
- selectCenterMonitorlList(this.queryParams).then(response => {
- this.monitorList = response.data;
- });
- const id = row.id || this.ids
- getAnimal(id).then(response => {
- this.form = response.data;
- this.openSee = true;
- this.submit = false;
- this.title = "野生动物监测详情";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id != null) {
- updateAnimal(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addAnimal(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 delAnimal(ids);
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- if (this.routeParams.wildlifeType === "1"){
- this.title = "野生动物监测";
- }
- if (this.routeParams.wildlifeType === "2"){
- this.title = "监测台账";
- }
- if (this.routeParams.wildlifeType === "3"){
- this.title = "野生动物统计";
- }
- this.download('center-data/animal/export', {
- ...this.queryParams
- }, `${this.title}_${new Date().getTime()}.xlsx`)
- },
- // 点击按钮修改是否只查询本级部门用户
- changeQueryType() {
- this.queryParams.deptName = this.queryParams.deptName === 0 ? 1 : 0;
- }
- }
- };
- </script>
|