w-ui-v1 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/w-menu/w-menu.vue +6 -3
package/package.json
CHANGED
package/w-menu/w-menu.vue
CHANGED
|
@@ -120,10 +120,10 @@ function queryList() {
|
|
|
120
120
|
|
|
121
121
|
<template>
|
|
122
122
|
<z-paging ref="paging" v-model="menuList" @query="queryList">
|
|
123
|
+
<template #top>
|
|
124
|
+
|
|
125
|
+
</template>
|
|
123
126
|
<view>
|
|
124
|
-
<view class="img_box">
|
|
125
|
-
<!-- <wd-img height="250rpx" width="100%" src="../../static/bar.png" /> -->
|
|
126
|
-
</view>
|
|
127
127
|
<view v-if="filtermenu.length > 0">
|
|
128
128
|
<wd-card v-for="(item, index) in filtermenu" :key="index" :title="item.title">
|
|
129
129
|
<template #default>
|
|
@@ -147,6 +147,9 @@ function queryList() {
|
|
|
147
147
|
<wd-action-sheet v-model="sheetShow" :actions="actions" :title="title"
|
|
148
148
|
@select="({ item }) => { sheetGotoPage(item) }" />
|
|
149
149
|
</view>
|
|
150
|
+
<template #bottom>
|
|
151
|
+
|
|
152
|
+
</template>
|
|
150
153
|
</z-paging>
|
|
151
154
|
</template>
|
|
152
155
|
|