hookehuyr

✨ feat: 客户需求,把捐赠的默认数字改成1,3,5朵花

...@@ -7,6 +7,7 @@ export {} ...@@ -7,6 +7,7 @@ export {}
7 7
8 declare module '@vue/runtime-core' { 8 declare module '@vue/runtime-core' {
9 export interface GlobalComponents { 9 export interface GlobalComponents {
10 + '图形验证码': typeof import('./src/components/图形验证码.vue')['default']
10 Agreement: typeof import('./src/components/DonateFlower/agreement.vue')['default'] 11 Agreement: typeof import('./src/components/DonateFlower/agreement.vue')['default']
11 AuditVideoCard: typeof import('./src/components/AuditVideoCard/index.vue')['default'] 12 AuditVideoCard: typeof import('./src/components/AuditVideoCard/index.vue')['default']
12 Banner: typeof import('./src/components/MuiVideo/banner.vue')['default'] 13 Banner: typeof import('./src/components/MuiVideo/banner.vue')['default']
...@@ -34,36 +35,19 @@ declare module '@vue/runtime-core' { ...@@ -34,36 +35,19 @@ declare module '@vue/runtime-core' {
34 Status: typeof import('./src/components/MuiVideo/status.vue')['default'] 35 Status: typeof import('./src/components/MuiVideo/status.vue')['default']
35 Template: typeof import('./src/components/template/index.vue')['default'] 36 Template: typeof import('./src/components/template/index.vue')['default']
36 Test: typeof import('./src/components/LoginBox/test.vue')['default'] 37 Test: typeof import('./src/components/LoginBox/test.vue')['default']
37 - VanActionSheet: typeof import('vant/es')['ActionSheet']
38 - VanButton: typeof import('vant/es')['Button']
39 - VanCellGroup: typeof import('vant/es')['CellGroup']
40 VanCheckbox: typeof import('vant/es')['Checkbox'] 38 VanCheckbox: typeof import('vant/es')['Checkbox']
41 VanCol: typeof import('vant/es')['Col'] 39 VanCol: typeof import('vant/es')['Col']
42 - VanConfigProvider: typeof import('vant/es')['ConfigProvider']
43 - VanDialog: typeof import('vant/es')['Dialog']
44 VanEmpty: typeof import('vant/es')['Empty'] 40 VanEmpty: typeof import('vant/es')['Empty']
45 VanField: typeof import('vant/es')['Field'] 41 VanField: typeof import('vant/es')['Field']
46 - VanForm: typeof import('vant/es')['Form']
47 VanIcon: typeof import('vant/es')['Icon'] 42 VanIcon: typeof import('vant/es')['Icon']
48 VanImage: typeof import('vant/es')['Image'] 43 VanImage: typeof import('vant/es')['Image']
49 - VanList: typeof import('vant/es')['List']
50 VanLoading: typeof import('vant/es')['Loading'] 44 VanLoading: typeof import('vant/es')['Loading']
51 - VanNumberKeyboard: typeof import('vant/es')['NumberKeyboard']
52 VanOverlay: typeof import('vant/es')['Overlay'] 45 VanOverlay: typeof import('vant/es')['Overlay']
53 - VanPicker: typeof import('vant/es')['Picker']
54 VanPopup: typeof import('vant/es')['Popup'] 46 VanPopup: typeof import('vant/es')['Popup']
55 VanRow: typeof import('vant/es')['Row'] 47 VanRow: typeof import('vant/es')['Row']
56 VanStepper: typeof import('vant/es')['Stepper'] 48 VanStepper: typeof import('vant/es')['Stepper']
57 - VanSticky: typeof import('vant/es')['Sticky']
58 - VanSwipe: typeof import('vant/es')['Swipe']
59 - VanSwipeItem: typeof import('vant/es')['SwipeItem']
60 - VanTab: typeof import('vant/es')['Tab']
61 - VanTabs: typeof import('vant/es')['Tabs']
62 - VanTag: typeof import('vant/es')['Tag']
63 - VanUploader: typeof import('vant/es')['Uploader']
64 VideoBar: typeof import('./src/components/MuiVideo/videoBar.vue')['default'] 49 VideoBar: typeof import('./src/components/MuiVideo/videoBar.vue')['default']
65 VideoCard: typeof import('./src/components/VideoCard/index.vue')['default'] 50 VideoCard: typeof import('./src/components/VideoCard/index.vue')['default']
66 VideoDetail: typeof import('./src/components/VideoDetail/index.vue')['default'] 51 VideoDetail: typeof import('./src/components/VideoDetail/index.vue')['default']
67 - '图形验证码': typeof import('./src/components/图形验证码.vue')['default']
68 } 52 }
69 } 53 }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Author: hookehuyr hookehuyr@gmail.com 2 * @Author: hookehuyr hookehuyr@gmail.com
3 * @Date: 2022-05-31 22:09:58 3 * @Date: 2022-05-31 22:09:58
4 * @LastEditors: hookehuyr hookehuyr@gmail.com 4 * @LastEditors: hookehuyr hookehuyr@gmail.com
5 - * @LastEditTime: 2022-07-01 18:00:04 5 + * @LastEditTime: 2023-02-08 13:45:09
6 * @FilePath: /tswj/src/components/DonateFlower/index.vue 6 * @FilePath: /tswj/src/components/DonateFlower/index.vue
7 * @Description: 捐花组件 7 * @Description: 捐花组件
8 --> 8 -->
...@@ -196,8 +196,8 @@ const selectDonate = (index) => { ...@@ -196,8 +196,8 @@ const selectDonate = (index) => {
196 } 196 }
197 const defaultOptions = ref({ 197 const defaultOptions = ref({
198 1: '1朵花花', 198 1: '1朵花花',
199 - 2: '2朵花花',
200 3: '3朵花花', 199 3: '3朵花花',
200 + 5: '5朵花花',
201 }); 201 });
202 // 捐赠协议 202 // 捐赠协议
203 const agreed = ref(false); 203 const agreed = ref(false);
......