n20-common-lib 2.6.22 → 2.6.23
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
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
</el-dropdown>
|
|
206
206
|
</el-dropdown-item>
|
|
207
207
|
<!-- 系统切换 -->
|
|
208
|
-
<el-dropdown-item v-if="systemChange">
|
|
208
|
+
<el-dropdown-item v-if="systemChange && systemList && systemList.length">
|
|
209
209
|
<el-dropdown trigger="hover" size="medium" placement="left-start" style="width: 100%">
|
|
210
210
|
<div class="flex-box flex-v">
|
|
211
211
|
<span>{{ '系统切换' | $lc }}</span>
|
|
@@ -468,7 +468,7 @@ export default {
|
|
|
468
468
|
axios
|
|
469
469
|
.get(`/bems/user/mdmWfPersonalMid/validateOne/${JSON.parse(sessionStorage.getItem('userInfo')).uno}`)
|
|
470
470
|
.then(({ code, msg }) => {
|
|
471
|
-
if (code !==
|
|
471
|
+
if (code !== 200) {
|
|
472
472
|
return this.$message.error(msg)
|
|
473
473
|
}
|
|
474
474
|
linkPush(`/user-web/user/editUserInfo?uno=${JSON.parse(sessionStorage.getItem('userInfo')).uno}&oneself=true`)
|
|
@@ -79,12 +79,14 @@ export default {
|
|
|
79
79
|
|
|
80
80
|
<style scoped>
|
|
81
81
|
.el-carousel {
|
|
82
|
-
width:
|
|
82
|
+
min-width: 220px;
|
|
83
83
|
}
|
|
84
|
-
.el-carousel__item
|
|
84
|
+
.el-carousel__item {
|
|
85
|
+
display: flex;
|
|
86
|
+
justify-content: center;
|
|
87
|
+
align-items: center;
|
|
85
88
|
font-size: 14px;
|
|
86
89
|
opacity: 0.75;
|
|
87
|
-
line-height: 50px;
|
|
88
90
|
margin: 0;
|
|
89
91
|
}
|
|
90
92
|
.el-carousel__item:nth-child(n) {
|