addTree.vue
17.4 KB
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
<template>
<view class="page-container">
<up-form :model="formData" ref="formRef" label-width="140rpx" border-bottom>
<up-form-item label="名称" prop="treetype" required>
<up-input v-model.trim="formData.treetype" placeholder="请输入名称" maxlength="30" border="none"/>
</up-form-item>
<view class="form-row-wrap">
<up-row gutter="10">
<up-col span="6">
<up-form-item label="胸径" prop="dbh" required>
<up-input v-model.trim="formData.dbh" placeholder="请输入" maxlength="10" border="none" input-align="left"/>
<template #right>
<text style="padding-left: 12rpx;color:#ccc;font-size:14px">厘米</text>
</template>
</up-form-item>
</up-col>
<up-col span="6">
<up-form-item label="高度" prop="treeheight">
<up-input v-model.trim="formData.treeheight" placeholder="请输入" maxlength="10" border="none"
input-align="left"/>
<template #right>
<text style="padding-left: 12rpx;color:#ccc;font-size:14px;">米</text>
</template>
</up-form-item>
</up-col>
</up-row>
</view>
<up-form-item label="位置" prop="growlocation" required class="location-form-item" @click="openMap">
<up-input v-model="formData.growlocation" placeholder="请选择" readonly border="none"/>
<template #right>
<up-icon name="map" size="22"></up-icon>
</template>
</up-form-item>
<up-row gutter="10">
<up-col span="6">
<up-form-item label="经度" :borderBottom="false">
<up-input v-model="formData.longitude" placeholder="" readonly border="none"/>
</up-form-item>
</up-col>
<up-col span="6">
<up-form-item label="纬度" :borderBottom="false">
<up-input v-model="formData.latitude" placeholder="" readonly border="none"/>
</up-form-item>
</up-col>
</up-row>
<up-form-item label="管护单位" prop="managedutyunit" required>
<up-input v-model.trim="formData.managedutyunit" placeholder="请输入" maxlength="30" border="none"/>
</up-form-item>
<up-form-item label="权属分类" prop="oldtreeownershipText" required arrow @click="handleActionSheetOpen('ownership')">
<up-input v-model.trim="formData.oldtreeownershipText" placeholder="请选择" readonly border="none"
bg-color="transparent"/>
</up-form-item>
<up-form-item label="图片信息" prop="treeImgList" required>
<up-upload
:file-list="treeImgs.imgList.value || []"
@after-read="treeImgs.uploadImgs"
@delete="treeImgs.deleteImg"
multiple
:width="70"
:height="70"
:max-count="treeImgs.uploadConfig.maxCount"
:upload-text="treeImgs.uploadConfig.uploadText"
:size-type="treeImgs.uploadConfig.sizeType"
></up-upload>
</up-form-item>
<view
class="animated-area"
:style="{
height: isShow ? contentHeight + 'px' : '0',
opacity: isShow ? 1 : 0,
overflow: 'hidden'
}"
>
<up-row gutter="10">
<up-col span="6">
<up-form-item label="拉丁文" prop="latinname">
<up-input v-model.trim="formData.latinname" placeholder="请输入" maxlength="30" border="none"/>
</up-form-item>
</up-col>
<up-col span="6">
<up-form-item label="级别" arrow @click="handleActionSheetOpen('level')">
<up-input v-model.trim="formData.treeleveltext" placeholder="请选择" readonly border="none"
bg-color="transparent"/>
</up-form-item>
</up-col>
</up-row>
<up-form-item label="生长环境" prop="growthenvironment">
<up-input v-model.trim="formData.growthenvironment" placeholder="请输入" maxlength="50" border="none"/>
</up-form-item>
<view class="form-row-wrap">
<up-row gutter="10">
<up-col span="6">
<!-- 栽种年月 年月选择器 -->
<up-form-item label="栽种年月" arrow @click="openPlantDatePicker">
<up-input v-model.trim="formData.plantingDate" placeholder="请选择栽种年月" readonly border="none" bg-color="transparent"/>
</up-form-item>
</up-col>
<up-col span="6">
<up-form-item label="干周" prop="weekday">
<up-input v-model.trim="formData.weekday" placeholder="请输入" maxlength="10" border="none"
input-align="left"/>
<template #right>
<text style="padding-left:12rpx;color:#ccc;font-size:14px">厘米</text>
</template>
</up-form-item>
</up-col>
</up-row>
</view>
<view class="form-row-wrap">
<up-row gutter="10">
<up-col span="6">
<up-form-item label="东西冠幅" prop="canopyeastwest">
<up-input v-model.trim="formData.canopyeastwest" placeholder="请输入" maxlength="10" border="none"
input-align="left"/>
<template #right>
<text style="padding-left:12rpx;color:#ccc;font-size:14px">米</text>
</template>
</up-form-item>
</up-col>
<up-col span="6">
<up-form-item label="南北冠幅" prop="canopysouthnorth">
<up-input v-model.trim="formData.canopysouthnorth" placeholder="请输入" maxlength="10" border="none"
input-align="left"/>
<template #right>
<text style="padding-left:12rpx;color:#ccc;font-size:14px">米</text>
</template>
</up-form-item>
</up-col>
</up-row>
</view>
</view>
<up-button
@click="toggleArea"
type="primary"
plain
size="large"
style="margin-top:20rpx"
>
{{ isShow ? '- 隐藏区域' : '+ 显示区域' }}
</up-button>
</up-form>
<view style="height: 60px;width: 100%"></view>
<view class="fixed-bottom-btn-wrap">
<up-button type="primary" @click="submit" :loading="loadingFlag" size="large" bold>提交</up-button>
</view>
<up-action-sheet
:show="showActionSheet"
:actions="currentActionSheetData.list"
:title="currentActionSheetData.title"
@close="handleActionSheetClose"
@select="handleActionSheetSelect"
></up-action-sheet>
<!-- 年月选择弹窗 -->
<up-datetime-picker
v-model="plantingDate"
:show="showDatePicker"
:closeOnClickOverlay="true"
mode="year-month"
minDate="1000"
@confirm="onSelectPlantDate"
@cancel="showDatePicker=false"
></up-datetime-picker>
</view>
</template>
<script setup>
import { timeFormat } from '@/uni_modules/uview-plus';
import { ref, reactive, nextTick } from 'vue'
import { onReady, onLoad, onShow, onUnload } from '@dcloudio/uni-app';
onUnload(() => {
uni.reLaunch({
url: '/pages-sub/data/tree-archive/index'
})
})
import { addTree } from "@/api/tree-archive/tree-archive.js";
import { useUploadImgs } from '@/common/utils/useUploadImgs'
import { useUserStore } from '@/pinia/user';
// ========== 核心工具方法 ==========
const isPureZero = (val) => {
if (!val) return false;
const pureZeroReg = /^0+$/;
return pureZeroReg.test(val.trim());
};
const trimFormData = (obj) => {
for (const key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) {
const val = obj[key];
if (typeof val === 'string') {
obj[key] = val.trim();
}
}
}
};
const emojiReg = /[\uD83C\uD83D\uD83E][\uDC00-\uDFFF]+|[\u2702\u2705\u2708-\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763-\u2767\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299\ufe0f\u200d]+/g;
const filterEmoji = (val) => {
if (typeof val !== 'string') return val;
return val.replace(emojiReg, '');
};
const hasEmoji = (val) => {
if (!val) return false;
return emojiReg.test(val);
};
// ========== 状态管理 ==========
const userStore = useUserStore();
const formRef = ref(null)
const isShow = ref(false)
const contentHeight = ref(200)
const treeOwnershipData = ref([])
const treeLevelData = ref([])
const loadingFlag = ref(false)
const showActionSheet = ref(false);
const currentActionSheetData = reactive({ type: '', list: [], title: '' });
// 年月弹窗开关
const showDatePicker = ref(false);
const plantingDate = ref(Date.now())
// 图片上传配置
const treeImgs = useUploadImgs({
maxCount: 3,
uploadText: '选择图片',
sizeType: ['compressed'],
formRef: formRef,
fieldName: 'treeImgList'
})
if (!Array.isArray(treeImgs.rawImgList.value)) treeImgs.rawImgList.value = [];
// 表单数据:estimationtreeage 改为 plantingDate
const formData = reactive({
treetype: '',
treeheight: '',
dbh: '',
treelevel: '',
treeleveltext: '',
managedutyunit: '',
oldtreeownership: '',
oldtreeownershipText: '',
latinname: '',
plantingDate: '', //栽种年月 yyyy-MM
canopysouthnorth: '',
canopyeastwest: '',
weekday: '',
growlocation: '',
growthenvironment: '',
treeImgList: [],
address: '',
latitude: '',
longitude: '',
road: '',
maintainunit: ''
})
// 表单校验规则(移除estimationtreeage,plantingDate非必填)
const rules = reactive({
treetype: [
{validator: (rule, val, callback) => {
if (val && hasEmoji(val)) return callback(new Error('禁止输入表情符号'));
callback();
}, trigger: ['blur','change','input'], priority: 10},
{required: true, message: '请输入名称', trigger: ['blur','change','input']},
{max:30, message:'名称最多输入30个字符', trigger: ['blur','change','input']}
],
treeheight: [
{max: 10, message: '树高不能超过10个字符', trigger: ['blur','change','input']},
{pattern: /^\d+(\.\d{1,2})?$/, message: '格式不正确,支持数字或两位小数', trigger: ['blur','change','input']},
{validator: (rule, val, callback) => {
if (isPureZero(val)) return callback(new Error('不能输入纯0无效值'));
callback();
}, trigger: ['blur','change','input']}
],
dbh: [
{validator: (rule, val, callback) => {
if (val && hasEmoji(val)) return callback(new Error('禁止输入表情符号'));
callback();
}, trigger: ['blur','change','input'], priority:10},
{required: true, message: '请输入胸径',trigger: ['blur','change','input']},
{max: 10, message: '胸径不能超过10个字符', trigger: ['blur','change','input']},
{pattern: /^\d+(\.\d{1,2})?$/, message: '格式不正确,支持数字或两位小数', trigger: ['blur','change','input']},
{validator: (rule, val, callback) => {
if (isPureZero(val)) return callback(new Error('不能输入纯0无效值'));
callback();
}, trigger: ['blur','change','input']}
],
weekday: [
{max: 10, message: '干周不能超过10个字符', trigger: ['blur','change','input']},
{pattern: /^\d+(\.\d{1,2})?$/, message: '格式不正确,支持数字或两位小数', trigger: ['blur','change','input']},
{validator: (rule, val, callback) => {
if (isPureZero(val)) return callback(new Error('不能输入纯0无效值'));
callback();
}, trigger: ['blur','change','input']}
],
canopyeastwest: [
{max: 10, message: '东西冠幅不能超过10个字符',trigger: ['blur','change','input']},
{pattern: /^\d+(\.\d{1,2})?$/, message: '格式不正确,支持数字或两位小数', trigger: ['blur','change','input']},
{validator: (rule, val, callback) => {
if (isPureZero(val)) return callback(new Error('不能输入纯0无效值'));
callback();
}, trigger: ['blur','change','input']}
],
canopysouthnorth: [
{max: 10, message: '南北冠幅不能超过10个字符', trigger: ['blur','change','input']},
{pattern: /^\d+(\.\d{1,2})?$/, message: '格式不正确,支持数字或两位小数', trigger: ['blur','change','input']},
{validator: (rule, val, callback) => {
if (isPureZero(val)) return callback(new Error('不能输入纯0无效值'));
callback();
}, trigger: ['blur','change','input']}
],
growlocation: [{required: true, message: '请选择地图位置', trigger: ['blur','change','manual']}],
managedutyunit: [
{validator: (rule, val, callback) => {
if (val && hasEmoji(val)) return callback(new Error('禁止输入表情符号'));
callback();
}, trigger: ['blur','change','input'], priority:10},
{required: true, message: '请输入管护单位', trigger: ['blur','change','input']},
{max:30, message:'管护单位最多输入30个字符', trigger: ['blur','change','input']}
],
oldtreeownershipText: [{required: true, message: '请选择权属分类', trigger: ['blur','change']}],
latinname: [
{validator: (rule, val, callback) => {
if (val && hasEmoji(val)) return callback(new Error('禁止输入表情符号'));
callback();
}, trigger: ['blur','change','input'], priority:10},
{max:30, message:'拉丁文最多输入30个字符', trigger: ['blur','change','input']}
],
growthenvironment: [
{validator: (rule, val, callback) => {
if (val && hasEmoji(val)) return callback(new Error('禁止输入表情符号'));
callback();
}, trigger: ['blur','change','input'], priority:10},
{max:50, message:'生长环境最多输入50个字符', trigger: ['blur','change','input']}
],
treeImgList: [treeImgs.imgValidateRule]
})
// 生命周期
onLoad((options) => {
formData.road = options.roadId
})
onShow(async () => {
treeLevelData.value = uni.$dict.transformLabelValueToNameValue(uni.$dict.getDictSimpleList('tree_level'))
treeOwnershipData.value = uni.$dict.transformLabelValueToNameValue(uni.$dict.getDictSimpleList('tree_ownership'))
})
onReady(() => {
nextTick(() => {
formRef.value?.setRules(rules);
});
});
// 打开栽种年月选择器
const openPlantDatePicker = ()=>{
showDatePicker.value = true
}
// 选中年月回调,自动格式 yyyy-MM
const onSelectPlantDate = (date)=>{
console.log(plantingDate.value)
console.log(timeFormat(plantingDate.value, 'yyyy-mm'))
// date格式:yyyy-MM
formData.plantingDate = timeFormat(plantingDate.value, 'yyyy-mm')
showDatePicker.value = false
}
const toggleArea = () => {
isShow.value = !isShow.value
}
const handleActionSheetOpen = (type) => {
const configMap = {
ownership: { title: '请选择权属分类', list: treeOwnershipData.value },
level: { title: '请选择树木级别', list: treeLevelData.value }
};
Object.assign(currentActionSheetData, configMap[type], { type });
showActionSheet.value = true;
};
const handleActionSheetClose = () => {
showActionSheet.value = false;
Object.assign(currentActionSheetData, { type: '', list: [], title: '' });
};
const handleActionSheetSelect = (e) => {
const { type } = currentActionSheetData;
if (type === 'ownership') {
formData.oldtreeownership = e.value
formData.oldtreeownershipText = e.name
formRef.value?.validateField('oldtreeownershipText');
} else if (type === 'level') {
formData.treelevel = e.value
formData.treeleveltext = e.name
}
handleActionSheetClose();
};
// 地图选址
const openMap = () => {
uni.chooseLocation({
success: async (res) => {
formData.growlocation = res.address
formData.latitude = res.latitude
formData.longitude = res.longitude
await nextTick()
formRef.value?.validateField('growlocation');
},
fail: (err) => {
console.error('地图选择失败', err);
if (err.errMsg.includes('auth deny')) {
uni.showToast({title: '请授权位置权限', icon: 'none'});
}
}
});
}
// 提交
const submit = async () => {
if (loadingFlag.value) return
for (const key in formData) {
if (typeof formData[key] === 'string') {
formData[key] = filterEmoji(formData[key]).trim();
}
}
const valid = await formRef.value.validate()
if (!valid) return
const uploadImgUrls = treeImgs.getSuccessImgUrls()
formData.maintainunit = userStore.userInfo.user.companyId
formData.treeImgList = uploadImgUrls
loadingFlag.value = true
try {
const res = await addTree(formData)
uni.showToast({title: "新增成功", icon: "success"});
uni.redirectTo({url: '/pages-sub/data/tree-archive/index'});
} catch (err) {
uni.showToast({title: "新增失败,请重试", icon: "none"});
console.error(err)
} finally {
loadingFlag.value = false
}
}
</script>
<style scoped lang="scss">
.page-container {
padding: 15px;
box-sizing: border-box;
background: #fff;
}
.animated-area {
transition: all 0.3s ease-out;
margin-top: 10rpx;
}
.location-form-item {
padding-right: 10rpx;
}
.form-row-wrap {
width: 100%;
display: flex;
flex-direction: column;
:deep(.u-form-item) {
position: relative;
margin-bottom: 0 !important;
}
:deep(.u-form-item__body__right__message ) {
position: absolute;
left: 0;
bottom: -20rpx;
line-height: 20rpx;
font-size: 22rpx;
color: #f56c6c;
width: 100%;
box-sizing: border-box;
}
}
.form-row-wrap + .u-form-item {
margin-top: 25rpx !important;
}
</style>