From a4d7993d0b44faffe2e548250a9d2bc27c77e521 Mon Sep 17 00:00:00 2001 From: xiejun <xj@2023> Date: 星期三, 19 七月 2023 12:27:46 +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