From d1448cb0ef10f358bb7bddb4e1ec268515e0b787 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期二, 15 七月 2025 11:46:57 +0800 Subject: [PATCH] 项目初始化 --- uni_modules/uview-ui/components/u-toolbar/props.js | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/uni_modules/uview-ui/components/u-toolbar/props.js b/uni_modules/uview-ui/components/u-toolbar/props.js new file mode 100644 index 0000000..1b72966 --- /dev/null +++ b/uni_modules/uview-ui/components/u-toolbar/props.js @@ -0,0 +1,34 @@ +export default { + props: { + // 鏄惁灞曠ず宸ュ叿鏉� + show: { + type: Boolean, + default: uni.$u.props.toolbar.show + }, + // 鍙栨秷鎸夐挳鐨勬枃瀛� + cancelText: { + type: String, + default: uni.$u.props.toolbar.cancelText + }, + // 纭鎸夐挳鐨勬枃瀛� + confirmText: { + type: String, + default: uni.$u.props.toolbar.confirmText + }, + // 鍙栨秷鎸夐挳鐨勯鑹� + cancelColor: { + type: String, + default: uni.$u.props.toolbar.cancelColor + }, + // 纭鎸夐挳鐨勯鑹� + confirmColor: { + type: String, + default: uni.$u.props.toolbar.confirmColor + }, + // 鏍囬鏂囧瓧 + title: { + type: String, + default: uni.$u.props.toolbar.title + } + } +} -- Gitblit v1.9.3