智慧农业后台管理页面
guoshilong
2022-11-08 082613d446e29e4ec1c16bfaa52345106a498b23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<template>
  <el-dialog
    :title="title"
    :modal-append-to-body="false"
    :append-to-body="true"
    :close-on-click-modal="false"
    width="60%"
    :visible.sync="visible"
    top="10vh"
  >
    <avue-form ref="form" v-model="form" :option="option" @submit="submit">
      <!-- 地图插入 -->
      <template slot-scope="{ type, disabled }" slot="line">
        <!-- <getMapDataInThere ref="getMapData" id="getMapData" @setMapData="setMapData"></getMapDataInThere> -->
      </template>
    </avue-form>
    <div class="map">
      <iframe :src="url" frameborder="0" width="100%" height="100%"></iframe>
    </div>
  </el-dialog>
</template>
 
<script>
import { mapGetters } from "vuex"
import { getFarmList, getDetail } from "@/api/farm/farm"
import { getDeptTree } from "@/api/system/dept"
import { add } from "@/api/land/land"
import website from "@/config/website"
import domtoimage from "dom-to-image"
// import h2 from "html2canvas";
import getMapDataInThere from "./getMapDataInThere.vue"
import { number } from "echarts"
// import canvas2Image from 'canvas2Image'
 
export default {
    components: {
        getMapDataInThere,
    },
    data () {
        return {
            title: "新增地块",
            form: {},
            option: {
                emptyBtn: false,
                submitText: "保存",
                submitBtn: false,
                gutter: 30,
                column: [
                    {
                        label: "地块名称",
                        prop: "landName",
                        maxlength:30,
                        rules: [
                            {
                                required: true,
                                message: "请输入地块名称",
                                trigger: ["blur","change"],
                            },
                        ],
                    },
                    {
                        label: "所属农场",
                        prop: "farmId",
                        type: "tree",
                        value: "",
                        dicData: [],
                        props: {
                            label: "farmName",
                            value: "id",
                        },
                        disabled: true,
                        slot: true,
                        rules: [
                            {
                                required: true,
                                message: "请选择所属农场",
                                trigger: "click",
                            },
                        ],
                    },
                    {
                        label: "地块类型",
                        type: "select",
                        prop: "landType",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=land",
                        props: {
                            label: "dictValue",
                            value: "dictKey",
                        },
                        dataType: "number",
                        rules: [
                            {
                                required: true,
                                message: "请选择地块类型",
                                trigger: ["blur","change"],
                            },
                        ],
                    },
                    {
                        label: "面积",
                        prop: "landArea",
                        rules: [
                            {
                                required: true,
                                message: "请输入面积",
                                trigger: ["blur","change"],
                            },
                        ],
                        span: 6,
                        type: "number",
                        controls: false,
                    },
                    {
                        label: "面积单位",
                        prop: "landUnit",
                        value: "0",
                        type: "select",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=landunit",
                        props: {
                            label: "dictValue",
                            value: "dictKey",
                        },
                        rules: [
                            {
                                required: true,
                                message: "请选择面积单位",
                                trigger: ["blur","change"],
                            },
                        ],
                        dataType: "number",
                        span: 6,
                    },
                    // {
                    //     label: "地块展示",
                    //     labelWidth: "0",
                    //     prop: "line",
                    //     className: "mapClass",
                    //     span: 24,
                    //     formslot: true,
                    // }
                ],
            },
            url: "",
            landUrl: "",
            polygon: [],
            area: "",
            farmInfo: {},
            visible: false,
        }
    },
    created () {
 
    },
    computed: {
        ...mapGetters([
            "userInfo",
            "permission",
            "polygons",
            "$farmId",
            "drawMapUrlBase",
        ]),
    },
    watch: {
        landUrl: {
            handler (newVal, oldVal) {
                if (newVal) {
                    this.$refs.form.submit()
                }
            },
        },
        "form.landName": {
            handler (newVal, oldVal) {
                this.landUrl = ""
            },
        },
        "form.landType": {
            handler (newVal, oldVal) {
                this.landUrl = ""
            },
        },
        "form.landArea": {
            handler (newVal, oldVal) {
                this.landUrl = ""
            },
        },
        "form.landUnit": {
            handler (newVal, oldVal) {
                this.landUrl = ""
            },
        },
    },
    mounted () {
        this.initData(this.userInfo.tenant_id)
        window.addEventListener("message", this.handleMessage)
    },
    methods: {
        handleMessage (event) {
            if (Number.isFinite(event.data)) {
                this.form.landArea = (event.data * 0.0015).toFixed(2)
            }
 
            if (Object.prototype.toString.call(event.data) === "[object Object]") {
                var obj = event.data
                this.polygon = obj.polygons
                this.landUrl = obj.url
            }
        },
        initData (tenantId) {
            getFarmList().then((res) => {
                const column = this.findObject(this.option.column, "farmId")
                column.dicData = res.data.data
            })
        },
        //初始化
        init () {
            //清空面的数据
            this.$store.commit("clear_polygon")
            this.form.landArea = 0
            this.visible = true
 
            this.$nextTick(()=>{
              this.$refs.form.clearValidate()
            })
            this.form.farmId = this.$farmId
            this.form.landName = ""
            this.form.landType = ""
            getDetail(this.form.farmId).then(res => {
                this.farmInfo = res.data.data
                this.url = this.drawMapUrlBase + "/base?type=1&lng=112&lat=24&status=manage&longitude=" + this.farmInfo.longitude + "&latitude=" + this.farmInfo.latitude
 
            })
 
 
 
        },
        // 表单提交
        submit (row, done) {
            row["deptId"] = this.userInfo.dept_id
            // row.farmId = this.farm.id
 
            var that = this
            var poly = []
            if (this.polygon.length != 0) {
                this.polygon.forEach((e) => {
                    poly.push({
                        lng: e[0],
                        lat: e[1],
                    })
                })
                this.polygon = poly
            }
 
            if (this.polygon.length == 0) {
                //没有面的数据
                // this.$refs.getMapData.isCheck = true
                // loading()
            } else {
                //如果有值,空间坐标转换
                let pol = this.polygon
                let polLength = this.polygon.length - 1
                let usePolygons = ""
                for (let k in pol) {
                    usePolygons += pol[k].lng + "," + pol[k].lat
                    if (k != polLength) {
                        usePolygons += ";"
                    }
                }
                //设置坐标点
                row.userId = this.userInfo.user_id
                row.landRange = usePolygons
            }
 
            // if (this.polygons.length == 0) {
            //     //没有面的数据
            //     // this.$refs.getMapData.isCheck = true
            //     // loading()
            // } else {
            //     //如果有值,空间坐标转换
            //     let pol = this.polygons
            //     let polLength = this.polygons.length - 1
            //     let usePolygons = ""
            //     for (let k in pol) {
            //         usePolygons += pol[k].lng + "," + pol[k].lat
            //         if (k != polLength) {
            //             usePolygons += ";"
            //         }
            //     }
            //     //设置坐标点
            //     row.userId = this.userInfo.user_id
            //     row.landRange = usePolygons
            //     console.log(row.landRange)
            // }
 
            row["url"] = this.landUrl
            // row['landArea'] = this.area
 
            if (row.landArea < 0) {
                this.$message.warning("地块面积不能为负数")
                done()
                return
            }
 
      add(row).then(() => {
          that.$emit("refreshOnLoad");
          that.$refs.form.resetFields();
          that.form.landUnit = "0";
          that.$parent.onLoad()
          that.visible = false;
          this.$message({
            type: "success",
            message: "操作成功!",
          });
          done();
        })
      },
 
        setMapData (val) {
            this.LineData = val[0]
            this.PointData = val[1]
        },
 
        showMap () {
            this.mapVisible = true
        },
    },
};
</script>
<style lang="scss" scoped>
.mapClass div label {
    display: none;
}
 
#getMapData {
    width: 90%;
    position: relative;
    height: 400px;
    top: 10px;
    left: 90px;
}
 
.map {
    height: 450px;
}
</style>