w-ui-v1 1.1.30 → 1.1.32
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
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<wd-cell :title="changeLanguageConmon('个人信息')" icon="user" v-if="userInfo.viewPersonalInfoable" :is-link="true" :clickable="true"
|
|
21
21
|
@click="goUserInfo" />
|
|
22
22
|
<!-- <wd-cell title="修改密码" icon="keywords" :is-link="true" :clickable="true" /> -->
|
|
23
|
-
<wd-cell :title="changeLanguageConmon('语言切换')" icon="internet" :is-link="true" :clickable="true" @click="isVisible=true" />
|
|
23
|
+
<wd-cell v-if="props.langSwitch" :title="changeLanguageConmon('语言切换')" icon="internet" :is-link="true" :clickable="true" @click="isVisible=true" />
|
|
24
24
|
<wd-cell :title="changeLanguageConmon('退出登录')" icon="logout" :is-link="true" :clickable="true" @click="quit" />
|
|
25
25
|
</wd-cell-group>
|
|
26
26
|
<wd-message-box />
|
package/w-table/w-table.vue
CHANGED
|
@@ -123,7 +123,7 @@ async function queryList(pageNo: number, pageSize: number) {
|
|
|
123
123
|
console.log(`${key}: ${pageData.value.defaultCriteriaValue[key]}`);
|
|
124
124
|
//加上查询默认值
|
|
125
125
|
if(!query.value.includes(key)){
|
|
126
|
-
query.value=query.value
|
|
126
|
+
query.value=query.value+`&${key}=${pageData.value.defaultCriteriaValue[key]}`
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
});
|