From 62fb43a7c2e14109093af94f7282820a0242d443 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期一, 10 七月 2023 11:25:13 +0800 Subject: [PATCH] 代码整合 --- 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