hookehuyr

访客进去的书籍列表页面,“为幼儿园助力”按钮名称改为“捐助小红花 支持多民族幼儿语言发展”

...@@ -7,7 +7,6 @@ export {} ...@@ -7,7 +7,6 @@ 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']
11 Agreement: typeof import('./src/components/DonateFlower/agreement.vue')['default'] 10 Agreement: typeof import('./src/components/DonateFlower/agreement.vue')['default']
12 AuditVideoCard: typeof import('./src/components/AuditVideoCard/index.vue')['default'] 11 AuditVideoCard: typeof import('./src/components/AuditVideoCard/index.vue')['default']
13 Banner: typeof import('./src/components/MuiVideo/banner.vue')['default'] 12 Banner: typeof import('./src/components/MuiVideo/banner.vue')['default']
...@@ -35,22 +34,36 @@ declare module '@vue/runtime-core' { ...@@ -35,22 +34,36 @@ declare module '@vue/runtime-core' {
35 Status: typeof import('./src/components/MuiVideo/status.vue')['default'] 34 Status: typeof import('./src/components/MuiVideo/status.vue')['default']
36 Template: typeof import('./src/components/template/index.vue')['default'] 35 Template: typeof import('./src/components/template/index.vue')['default']
37 Test: typeof import('./src/components/LoginBox/test.vue')['default'] 36 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']
38 VanCheckbox: typeof import('vant/es')['Checkbox'] 40 VanCheckbox: typeof import('vant/es')['Checkbox']
39 VanCol: typeof import('vant/es')['Col'] 41 VanCol: typeof import('vant/es')['Col']
42 + VanConfigProvider: typeof import('vant/es')['ConfigProvider']
43 + VanDialog: typeof import('vant/es')['Dialog']
40 VanEmpty: typeof import('vant/es')['Empty'] 44 VanEmpty: typeof import('vant/es')['Empty']
41 VanField: typeof import('vant/es')['Field'] 45 VanField: typeof import('vant/es')['Field']
46 + VanForm: typeof import('vant/es')['Form']
42 VanIcon: typeof import('vant/es')['Icon'] 47 VanIcon: typeof import('vant/es')['Icon']
43 VanImage: typeof import('vant/es')['Image'] 48 VanImage: typeof import('vant/es')['Image']
44 VanList: typeof import('vant/es')['List'] 49 VanList: typeof import('vant/es')['List']
45 VanLoading: typeof import('vant/es')['Loading'] 50 VanLoading: typeof import('vant/es')['Loading']
51 + VanNumberKeyboard: typeof import('vant/es')['NumberKeyboard']
46 VanOverlay: typeof import('vant/es')['Overlay'] 52 VanOverlay: typeof import('vant/es')['Overlay']
47 VanPicker: typeof import('vant/es')['Picker'] 53 VanPicker: typeof import('vant/es')['Picker']
48 VanPopup: typeof import('vant/es')['Popup'] 54 VanPopup: typeof import('vant/es')['Popup']
49 VanRow: typeof import('vant/es')['Row'] 55 VanRow: typeof import('vant/es')['Row']
50 VanStepper: typeof import('vant/es')['Stepper'] 56 VanStepper: typeof import('vant/es')['Stepper']
51 VanSticky: typeof import('vant/es')['Sticky'] 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']
52 VideoBar: typeof import('./src/components/MuiVideo/videoBar.vue')['default'] 64 VideoBar: typeof import('./src/components/MuiVideo/videoBar.vue')['default']
53 VideoCard: typeof import('./src/components/VideoCard/index.vue')['default'] 65 VideoCard: typeof import('./src/components/VideoCard/index.vue')['default']
54 VideoDetail: typeof import('./src/components/VideoDetail/index.vue')['default'] 66 VideoDetail: typeof import('./src/components/VideoDetail/index.vue')['default']
67 + '图形验证码': typeof import('./src/components/图形验证码.vue')['default']
55 } 68 }
56 } 69 }
......
...@@ -48,7 +48,10 @@ ...@@ -48,7 +48,10 @@
48 <van-empty v-if="emptyStatus" class="custom-image" :image="no_image" description="暂无书籍信息" /> 48 <van-empty v-if="emptyStatus" class="custom-image" :image="no_image" description="暂无书籍信息" />
49 </div> 49 </div>
50 <div style="height: 5rem" /> 50 <div style="height: 5rem" />
51 - <donate-bar :kg-id="kg_id">为幼儿园助力</donate-bar> 51 + <donate-bar :kg-id="kg_id">
52 + <span v-if="kg_id">为幼儿园助力</span>
53 + <span v-else>捐助小红花 支持多民族幼儿语言发展</span>
54 + </donate-bar>
52 <shortcut-fixed :type="USER_ROLE.CLIENT" :item="shortcutItem" :custom-style="customStyle" /> 55 <shortcut-fixed :type="USER_ROLE.CLIENT" :item="shortcutItem" :custom-style="customStyle" />
53 </div> 56 </div>
54 </template> 57 </template>
......