From d44134d06fc57865bc8995972e9035dbb90fd8b9 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期二, 18 七月 2023 15:19:25 +0800
Subject: [PATCH] 7-18整合代码
---
Source/UBCS-WEB/dist/src/views/util/form.vue | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/Source/UBCS-WEB/dist/src/views/util/form.vue b/Source/UBCS-WEB/dist/src/views/util/form.vue
new file mode 100644
index 0000000..244895b
--- /dev/null
+++ b/Source/UBCS-WEB/dist/src/views/util/form.vue
@@ -0,0 +1,55 @@
+<template>
+ <basic-container>
+ <h3>琛ㄥ崟渚嬪瓙</h3>
+ <avue-form :option="option"
+ v-model="form"></avue-form>
+ </basic-container>
+</template>
+
+<script>
+ export default {
+ data() {
+ return {
+ form: {},
+ option: {
+ labelWidth: 110,
+ column: [
+ {
+ label: "鐢ㄦ埛鍚�",
+ prop: "username",
+ row: true
+ },
+ {
+ label: "瀵嗙爜",
+ prop: "password",
+ type: "password",
+ row: true
+ },
+ {
+ label: "鍐嶆杈撳叆瀵嗙爜",
+ prop: "password",
+ type: "newpassword",
+ row: true
+ },
+ {
+ label: "鐢宠鏃ユ湡",
+ prop: "date",
+ type: "date",
+ row: true
+ },
+ {
+ label: "涓�х鍚�",
+ prop: "textarea",
+ type: "textarea",
+ minRows: 8,
+ row: true
+ }
+ ]
+ }
+ };
+ }
+ };
+</script>
+
+<style>
+</style>
--
Gitblit v1.9.3