You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
3.6 KiB
141 lines
3.6 KiB
<template>
|
|
<view class="page">
|
|
<!-- 页面内容开始 -->
|
|
<vk-data-page-header title="Form 表单" subTitle="弹窗表单"></vk-data-page-header>
|
|
<view class="page-body">
|
|
<el-button @click="form1.props.show = true">弹出表单</el-button>
|
|
<el-button @click="resetForm">重置表单</el-button>
|
|
|
|
<view class="tips mt15">
|
|
<view class="mt15 json-view" v-if="form1.data">
|
|
<view style="font-size: 14px;">表单数据</view>
|
|
<pre>
|
|
{{ form1.data }}
|
|
</pre>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 弹窗开始 -->
|
|
<vk-data-dialog
|
|
v-model="form1.props.show"
|
|
title="表单标题"
|
|
width="600px"
|
|
mode="form"
|
|
>
|
|
<vk-data-form
|
|
ref="form1"
|
|
v-model="form1.data"
|
|
:action="form1.props.action"
|
|
:columns="form1.props.columns"
|
|
:rules="form1.props.rules"
|
|
:form-type="form1.props.formType"
|
|
:loading.sync="form1.props.loading"
|
|
:auto-close="true"
|
|
label-width="140px"
|
|
@success="onFormSuccess"
|
|
></vk-data-form>
|
|
</vk-data-dialog>
|
|
<!-- 弹窗结束 -->
|
|
|
|
<!-- 页面内容结束 -->
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
var that; // 当前页面对象
|
|
var vk = uni.vk; // vk实例
|
|
export default {
|
|
data() {
|
|
// 页面数据变量
|
|
return {
|
|
// 表单相关开始-----------------------------------------------------------
|
|
form1: {
|
|
// 表单请求数据,此处可以设置默认值
|
|
data: {
|
|
radio: 1,
|
|
checkbox : [1,2]
|
|
},
|
|
// 表单属性
|
|
props: {
|
|
// 表单请求地址
|
|
action: "template/test/sys/test",
|
|
// 表单字段显示规则
|
|
columns: [
|
|
{ key: "text", title: "text类型字段", type: "text" },
|
|
{ key: "number", title: "number类型字段", type: "number" },
|
|
{ key: "radio", title: "radio类型字段", type: "radio",
|
|
data: [
|
|
{ value: 1, label: "选项1" },
|
|
{ value: 2, label: "选项2" },
|
|
]
|
|
},
|
|
{ key: "checkbox", title: "checkbox类型字段", type: "checkbox",
|
|
data: [
|
|
{ value: 1, label: "选项1" },
|
|
{ value: 2, label: "选项2" },
|
|
]
|
|
},
|
|
{ key: "textarea", title: "textarea类型字段", type: "textarea",
|
|
autosize: { minRows: 4, maxRows: 10 },
|
|
maxlength: 200,
|
|
showWordLimit: true
|
|
},
|
|
{ key: "switch", title: "switch类型字段", type: "switch" }
|
|
],
|
|
// 表单验证规则
|
|
rules: {
|
|
text: [
|
|
{ required: true, message: "text不能为空", trigger: "change" },
|
|
]
|
|
},
|
|
// add 代表添加 update 代表修改
|
|
formType: "",
|
|
// 表单是否在请求中
|
|
loading: false,
|
|
// 是否显示表单1 的弹窗
|
|
show: false
|
|
}
|
|
},
|
|
// 表单相关结束-----------------------------------------------------------
|
|
};
|
|
},
|
|
// 监听 - 页面每次【加载时】执行(如:前进)
|
|
onLoad(options = {}) {
|
|
that = this;
|
|
vk = that.vk;
|
|
that.options = options;
|
|
that.init(options);
|
|
},
|
|
// 监听 - 页面【首次渲染完成时】执行。注意如果渲染速度快,会在页面进入动画完成前触发
|
|
onReady() {},
|
|
// 监听 - 页面每次【显示时】执行(如:前进和返回) (页面每次出现在屏幕上都触发,包括从下级页面点返回露出当前页面)
|
|
onShow() {},
|
|
// 监听 - 页面每次【隐藏时】执行(如:返回)
|
|
onHide() {},
|
|
// 函数
|
|
methods: {
|
|
// 页面数据初始化函数
|
|
init(options) {},
|
|
// 表单提交成功时的回调
|
|
onFormSuccess() {
|
|
// that.form1.props.show = false;
|
|
},
|
|
// 重置表单
|
|
resetForm() {
|
|
let that = this;
|
|
if (that.$refs.form1) that.$refs.form1.resetForm();
|
|
}
|
|
},
|
|
// 过滤器
|
|
filters: {
|
|
|
|
},
|
|
// 计算属性
|
|
computed: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|