add.vue 5.5 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
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
<template>
	<view class="uni-container">
		<uni-forms ref="form" :value="formData" validate-trigger="submit" err-show-type="toast">
			<uni-forms-item name="type" label="主体" required>
				<uni-data-checkbox :multiple="false" v-model="formData.type" :localdata="formOptions.type_localdata" />
			</uni-forms-item>
			<uni-forms-item name="type_name" label="主体名称" required>
				<uni-easyinput placeholder="企业输入公司名称,个人输入姓名" v-model="formData.type_name" />
			</uni-forms-item>
			<uni-forms-item name="comment" label="备注">
				<textarea placeholder="有敏感词过滤功能。你可以尝试输入含test的文本内容将会被拦截" @input="binddata('comment', $event.detail.value)" class="uni-textarea-border" :value="formData.comment"></textarea>
			</uni-forms-item>
			<uni-forms-item name="username" label="负责人姓名">
				<uni-easyinput placeholder="正则,限输入中文" v-model="formData.username" />
			</uni-forms-item>
			<uni-forms-item name="email" label="邮箱">
				<uni-easyinput placeholder="邮箱" v-model="formData.email" />
			</uni-forms-item>
			<uni-forms-item name="dowload_url" label="下载地址">
				<uni-easyinput placeholder="如:https://uniapp.dcloud.io" v-model="formData.dowload_url" />
			</uni-forms-item>
			<uni-forms-item name="weight" label="体重">
				<uni-easyinput placeholder="限输入 >50 && <=500" type="number" v-model="formData.weight" />
			</uni-forms-item>
			<uni-forms-item name="favorite_book" label="喜欢的书">
				<uni-data-checkbox v-model="formData.favorite_book" collection="book" field="title as text, _id as value" orderby="desc" />
			</uni-forms-item>
			<uni-forms-item name="party_member" label="是否为党员">
				<switch @change="binddata('party_member', $event.detail.value)" :checked="formData.party_member" />
			</uni-forms-item>
			<uni-forms-item name="hobby" label="业余爱好">
				<uni-data-checkbox :multiple="true" v-model="formData.hobby" :localdata="formOptions.hobby_localdata" />
			</uni-forms-item>
			<uni-forms-item name="address" label="地址">
				<uni-data-picker self-field="code" parent-field="parent_code" v-model="formData.address" collection="opendb-city-china"
				 orderby="value asc" field="code as value, name as text"></uni-data-picker>
			</uni-forms-item>

			<view class="uni-button-group">
				<button type="primary" class="uni-button" @click="submit">提交</button>
			</view>
		</uni-forms>
	</view>
</template>

<script>
	/* 
		注意:该文件是由schema2code生成的页面,为演示说明需要将页面作为组件放到 /pages/clientDB/validate内
		故本示例修改了onReady为mounted,并关闭了 140-141行代码,关于提交数据并返回到页面的逻辑
	*/
	import {
		validator
	} from '@/js_sdk/validator/validate-demo.js';

	const db = uniCloud.database();
	const dbCollectionName = 'validate-demo';

	function getValidator(fields) {
		let reuslt = {}
		for (let key in validator) {
			if (fields.indexOf(key) > -1) {
				reuslt[key] = validator[key]
			}
		}
		return reuslt
	}

	export default {
		data() {
			return {
				formData: {
					"type": -1,
					"type_name": "",
					"comment": "",
					"username": "",
					"email": "",
					"dowload_url": "",
					"weight": null,
					"favorite_book": "",
					"party_member": null,
					"hobby": [],
					"address": ""
				},
				formOptions: {
					"type_localdata": [{
							"text": "个人",
							"value": 0
						},
						{
							"text": "企业",
							"value": 1
						}
					],
					"hobby_localdata": [{
							"text": "唱歌",
							"value": "Sing"
						},
						{
							"text": "跳舞",
							"value": "dance"
						},
						{
							"text": "画画",
							"value": "draw"
						}
					]
				},
				rules: {
					...getValidator(["type", "type_name", "comment", "username", "email", "dowload_url", "weight", "favorite_book",
						"party_member", "hobby", "address"
					])
				}
			}
		},
		mounted() {
			this.$refs.form.setRules(this.rules)
		},
		methods: {
			/**
			 * 触发表单提交
			 */
A
Anne_LXM 已提交
122
			async submit() {
study夏羽's avatar
study夏羽 已提交
123 124 125
				uni.showLoading({
					mask: true
				})
A
Anne_LXM 已提交
126
				return this.$refs.form.submit().then(async(res) => {
study夏羽's avatar
study夏羽 已提交
127
					console.log(res,"000");
A
Anne_LXM 已提交
128 129 130 131
					let msg = await this.submitForm(res)
					console.log(msg,121399999);
					return res
					// this.submitForm(res)
study夏羽's avatar
study夏羽 已提交
132 133 134 135 136
				}).catch((errors) => {
					uni.hideLoading()
				})
			},

A
Anne_LXM 已提交
137
			async submitForm(value) {
study夏羽's avatar
study夏羽 已提交
138
				// 使用 clientDB 提交数据
A
Anne_LXM 已提交
139
				return await db.collection(dbCollectionName).add(value).then((res) => {
140
					console.log("res:---- ",res);
study夏羽's avatar
study夏羽 已提交
141 142 143 144
					uni.showToast({
						icon: 'none',
						title: '新增成功'
					})
145 146
					// this.getOpenerEventChannel().emit('refreshData')
					// setTimeout(() => uni.navigateBack(), 500)
A
Anne_LXM 已提交
147
					return res
study夏羽's avatar
study夏羽 已提交
148 149 150 151 152
				}).catch((err) => {
					uni.showModal({
						content: err.message || '请求服务失败',
						showCancel: false
					})
A
Anne_LXM 已提交
153
					return err
study夏羽's avatar
study夏羽 已提交
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
				}).finally(() => {
					uni.hideLoading()
				})
			}
		}
	}
</script>

<style>
	.uni-container {
		padding: 15px;
	}

	.uni-input-border,
	.uni-textarea-border {
		width: 100%;
		font-size: 14px;
		color: #666;
		border: 1px #e5e5e5 solid;
		border-radius: 5px;
		box-sizing: border-box;
	}

	.uni-input-border {
		padding: 0 10px;
		height: 35px;

	}

	.uni-textarea-border {
		padding: 10px;
		height: 80px;
	}

	.uni-button-group {
		margin-top: 50px;
		display: flex;
		justify-content: center;
	}

	.uni-button {
		width: 184px;
		padding: 12px 20px;
		font-size: 14px;
		border-radius: 4px;
		line-height: 1;
		margin: 0;
	}
</style>