diff --git a/packages/prompt/index.vue b/packages/prompt/index.vue
index ec8c553..6d9c40c 100644
--- a/packages/prompt/index.vue
+++ b/packages/prompt/index.vue
@@ -1,37 +1,102 @@
- xx
-
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
diff --git a/stories/Prompt.stories.ts b/stories/Prompt.stories.ts
index 277e12e..01d2065 100644
--- a/stories/Prompt.stories.ts
+++ b/stories/Prompt.stories.ts
@@ -1,8 +1,8 @@
/*
* @Author: zhaojinfeng 121016171@qq.com
* @Date: 2023-06-25 15:55:08
- * @LastEditors: zhaojinfeng 121016171@qq.com
- * @LastEditTime: 2023-06-25 19:11:17
+ * @LastEditors: peerless_hero peerless_hero@outlook.com
+ * @LastEditTime: 2023-07-11 03:48:04
* @FilePath: \uni\stories\Prompt.stories.ts
* @Description:
*
@@ -14,6 +14,17 @@ const meta = {
title: '反馈组件/Prompt',
component: Prompt,
tags: ['autodocs'],
+ args: {
+ show: true,
+ title: '审核意见',
+ placeholder: '审核意见必须填写',
+ confirmText: '提交',
+ textarea: '',
+ },
+ argTypes: {
+ onConfirm: { action: 'clicked' },
+ onCancel: { action: 'clicked' },
+ },
} satisfies Meta
export default meta