w-ui-v1 1.1.23 → 1.1.24
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
CHANGED
package/w-login/w-login.vue
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
langSwitch: {
|
|
19
19
|
type: Boolean,
|
|
20
|
-
default:
|
|
20
|
+
default: true,
|
|
21
21
|
},
|
|
22
22
|
loginload:{
|
|
23
23
|
type: Function,
|
|
@@ -100,9 +100,9 @@
|
|
|
100
100
|
|
|
101
101
|
<template>
|
|
102
102
|
<view class="login">
|
|
103
|
+
<WSwitchLang v-if="props.langSwitch" />
|
|
103
104
|
<image class="footer-img" src="./footerImg.png"></image>
|
|
104
105
|
<view class="form-box">
|
|
105
|
-
<WSwitchLang v-if="props.langSwitch" />
|
|
106
106
|
<view v-if="props.loginImge" class="avatar">
|
|
107
107
|
<wd-img width="200rpx" height="200rpx" :src="props.loginImge">
|
|
108
108
|
<template #error>
|
package/w-menu/w-menu.vue
CHANGED
|
@@ -146,7 +146,7 @@ function queryList() {
|
|
|
146
146
|
</script>
|
|
147
147
|
|
|
148
148
|
<template>
|
|
149
|
-
<z-paging ref="paging" v-model="menuList" @query="queryList">
|
|
149
|
+
<z-paging :loading-more-enabled="false" ref="paging" v-model="menuList" @query="queryList">
|
|
150
150
|
<template #top>
|
|
151
151
|
<slot name="top"></slot>
|
|
152
152
|
</template>
|
|
@@ -25,8 +25,8 @@ function confirm() {
|
|
|
25
25
|
|
|
26
26
|
<template>
|
|
27
27
|
<view class="lang">
|
|
28
|
-
<view style="min-width:
|
|
29
|
-
<wd-picker v-model="lang" label-width="40px"
|
|
28
|
+
<view style="min-width: 100rpx;">
|
|
29
|
+
<wd-picker v-model="lang" label-width="40px" size="mini" :columns="columns" @confirm="confirm" />
|
|
30
30
|
</view>
|
|
31
31
|
</view>
|
|
32
32
|
</template>
|