w-ui-v1 1.1.22 → 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>
|
|
@@ -228,8 +228,8 @@ function queryList() {
|
|
|
228
228
|
color: #4D81F1;
|
|
229
229
|
width: 55px;
|
|
230
230
|
overflow: hidden;
|
|
231
|
-
text-overflow: ellipsis;
|
|
232
|
-
white-space:
|
|
231
|
+
// text-overflow: ellipsis;
|
|
232
|
+
white-space: pre-wrap;
|
|
233
233
|
// white-space: pre-wrap;
|
|
234
234
|
// text-align: left;
|
|
235
235
|
}
|
|
@@ -253,4 +253,10 @@ function queryList() {
|
|
|
253
253
|
// background-color: #F6F7FB;
|
|
254
254
|
background: linear-gradient(to top, #F6F7FB 0%, #2c5def 100%);
|
|
255
255
|
}
|
|
256
|
+
|
|
257
|
+
:deep(.wd-grid){
|
|
258
|
+
float: unset;
|
|
259
|
+
display: flex;
|
|
260
|
+
flex-wrap: wrap;
|
|
261
|
+
}
|
|
256
262
|
</style>
|
|
@@ -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>
|