185 lines
4.9 KiB
Vue
185 lines
4.9 KiB
Vue
<template>
|
||
<view class="uni-container">
|
||
<uni-forms ref="form" :model="formData" validate-trigger="submit" err-show-type="toast">
|
||
<uni-forms-item name="parent_id" label="">
|
||
<uni-easyinput placeholder="父ID,用于多级分类" v-model="formData.parent_id"></uni-easyinput>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="name" label="类别名称" required>
|
||
<uni-easyinput placeholder="类别名称" v-model="formData.name" trim="both"></uni-easyinput>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="icon" label="图标地址">
|
||
<uni-easyinput placeholder="类别图标/图片地址" v-model="formData.icon" trim="both"></uni-easyinput>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="sort" label="排序">
|
||
<uni-easyinput placeholder="类别排序,越大越靠后" type="number" v-model="formData.sort"></uni-easyinput>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="description" label="类别描述">
|
||
<uni-easyinput placeholder="类别描述" v-model="formData.description" trim="both"></uni-easyinput>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="is_hot_show" label="加入热门显示">
|
||
<switch @change="binddata('is_hot_show', $event.detail.value)" :checked="formData.is_hot_show"></switch>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="is_index_show" label="首页显示">
|
||
<switch @change="binddata('is_index_show', $event.detail.value)" :checked="formData.is_index_show"></switch>
|
||
</uni-forms-item>
|
||
<uni-forms-item name="create_date" label="">
|
||
<uni-datetime-picker return-type="timestamp" v-model="formData.create_date"></uni-datetime-picker>
|
||
</uni-forms-item>
|
||
<view class="uni-button-group">
|
||
<button type="primary" class="uni-button" @click="submit">提交</button>
|
||
</view>
|
||
</uni-forms>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { validator } from '../../js_sdk/validator/ngtools-categories.js';
|
||
|
||
const db = uniCloud.database();
|
||
const dbCollectionName = 'ngtools-categories';
|
||
|
||
function getValidator(fields) {
|
||
let result = {}
|
||
for (let key in validator) {
|
||
if (fields.indexOf(key) > -1) {
|
||
result[key] = validator[key]
|
||
}
|
||
}
|
||
return result
|
||
}
|
||
|
||
|
||
|
||
export default {
|
||
data() {
|
||
let formData = {
|
||
"parent_id": "",
|
||
"name": "",
|
||
"icon": "",
|
||
"sort": null,
|
||
"description": "",
|
||
"is_hot_show": null,
|
||
"is_index_show": null,
|
||
"create_date": null
|
||
}
|
||
return {
|
||
formData,
|
||
formOptions: {},
|
||
rules: {
|
||
...getValidator(Object.keys(formData))
|
||
}
|
||
}
|
||
},
|
||
onLoad(e) {
|
||
if (e.id) {
|
||
const id = e.id
|
||
this.formDataId = id
|
||
this.getDetail(id)
|
||
}
|
||
},
|
||
onReady() {
|
||
this.$refs.form.setRules(this.rules)
|
||
},
|
||
methods: {
|
||
|
||
/**
|
||
* 验证表单并提交
|
||
*/
|
||
submit() {
|
||
uni.showLoading({
|
||
mask: true
|
||
})
|
||
this.$refs.form.validate().then((res) => {
|
||
return this.submitForm(res)
|
||
}).catch(() => {
|
||
}).finally(() => {
|
||
uni.hideLoading()
|
||
})
|
||
},
|
||
|
||
/**
|
||
* 提交表单
|
||
*/
|
||
submitForm(value) {
|
||
// 使用 clientDB 提交数据
|
||
return db.collection(dbCollectionName).doc(this.formDataId).update(value).then((res) => {
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: '修改成功'
|
||
})
|
||
this.getOpenerEventChannel().emit('refreshData')
|
||
setTimeout(() => uni.navigateBack(), 500)
|
||
}).catch((err) => {
|
||
uni.showModal({
|
||
content: err.message || '请求服务失败',
|
||
showCancel: false
|
||
})
|
||
})
|
||
},
|
||
|
||
/**
|
||
* 获取表单数据
|
||
* @param {Object} id
|
||
*/
|
||
getDetail(id) {
|
||
uni.showLoading({
|
||
mask: true
|
||
})
|
||
db.collection(dbCollectionName).doc(id).field("parent_id,name,icon,sort,description,is_hot_show,is_index_show,create_date").get().then((res) => {
|
||
const data = res.result.data[0]
|
||
if (data) {
|
||
this.formData = data
|
||
|
||
}
|
||
}).catch((err) => {
|
||
uni.showModal({
|
||
content: err.message || '请求服务失败',
|
||
showCancel: false
|
||
})
|
||
}).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;
|
||
/* #ifndef APP-NVUE */
|
||
display: flex;
|
||
/* #endif */
|
||
justify-content: center;
|
||
}
|
||
|
||
.uni-button {
|
||
width: 184px;
|
||
}
|
||
</style>
|