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
| <template>
| <el-dialog
| :title="title"
| :modal-append-to-body="false"
| :append-to-body="true"
| :close-on-click-modal="false"
| width="60%"
| :visible.sync="visible"
| >
| <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>
| </el-dialog>
| </template>
|
| <script>
|
| import {mapGetters} from "vuex";
| import { getLandList } from "@/api/land/land";
| import { getStrainList } from "@/api/farmplant/strain";
| import {add} from "@/api/land/land";
| import getMapDataInThere from "./getMapDataInThere.vue";
| export default {
| components: {
| getMapDataInThere
| },
| data() {
| return {
| title:"新增地块",
| form: {},
| option: {
| emptyBtn: false,
| submitText: "保存",
| gutter: 30,
| column: [
| {
| label: "地块名称",
| prop: "landName",
| rules: [{
| required: true,
| message: "请输入地块名称",
| trigger: "blur"
| }]
| },
| {
| 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"
| }]
| },
| {
| label: "面积单位",
| prop: "landUnit",
| type: "select",
| dicUrl: "/api/blade-system/dict-biz/dictionary?code=landunit",
| props: {
| label: "dictValue",
| value: "dictKey"
| },
| dataType: "number",
| span: 6,
| },
| {
| label: "地块展示",
| labelWidth: "0",
| prop: "line",
| className: "mapClass",
| span: 24,
| formslot: true,
| }
| ],
| },
| visible: false,
| };
| },
| computed: {
| ...mapGetters(["userInfo", "permission", "polygons"]),
| },
| methods: {
| //初始化
| init() {
| //计算当前时间
| this.visible = true;
| },
| // 表单提交
| submit(row,loading) {
| var that = this;
| 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;
| }
| add(row).then(() => {
| that.$refs.form.resetFields();
| that.visible = false;
| this.$message({
| type: "success",
| message: "操作成功!"
| });
| }, error => {
| loading();
| window.console.log(error);
| });
| },
| setMapData(val) {
| this.LineData = val[0];
| this.PointData = val[1];
| },
| },
| };
| </script>
| <style lang="scss" scoped>
| .mapClass div label {
| display: none;
| }
|
| #getMapData {
| width: 90%;
| position: relative;
| height: 400px;
| top: 10px;
| left: 90px;
| }
| </style>
|
|