cloud-web-corejs-haier 1.0.42 → 1.0.44
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 +9 -7
- package/src/api/user.js +54 -46
- package/src/components/baseAlert/index.vue +57 -53
- package/src/components/baseInputExport/index.vue +3 -3
- package/src/components/baseTabs/mixins.js +12 -1
- package/src/components/errorMsg/index.vue +78 -78
- package/src/components/excelExport/button.vue +54 -45
- package/src/components/excelExport/exportFieldDialog.vue +3 -3
- package/src/components/excelExport/index.js +1 -43
- package/src/components/excelExport/index.vue +62 -34
- package/src/components/excelExport/mixins.js +74 -87
- package/src/components/excelImport/index.js +1 -62
- package/src/components/excelImport/mixins.js +1 -774
- package/src/components/fileLibrary/index.vue +113 -33
- package/src/components/fileLibrary/propertiesDialog.vue +6 -0
- package/src/components/hiprint/view/design/index.vue +139 -47
- package/src/components/hiprint/view/design/preview.vue +75 -52
- package/src/components/hiprint/view/json-view.vue +31 -31
- package/src/components/luckysheet/dialog.vue +159 -0
- package/src/components/luckysheet/export.js +595 -0
- package/src/components/luckysheet/fileUtils.js +147 -0
- package/src/components/luckysheet/index.js +69 -0
- package/src/components/luckysheet/templateJson.js +12078 -0
- package/src/components/luckysheet/view.vue +210 -0
- package/src/components/onlineTalk/index.vue +328 -6
- package/src/components/onlineTalk/talkUserDialog.vue +280 -0
- package/src/components/wf/addTaskUserdialog.vue +5 -5
- package/src/components/wf/content.vue +1244 -1169
- package/src/components/wf/mixins/setCandidateDialog.js +228 -2
- package/src/components/wf/mixins/setCandidateDialog2.js +115 -100
- package/src/components/wf/mixins/wfTaskUserRangeDialog.js +67 -1
- package/src/components/wf/setCandidateDialog.vue +5 -7
- package/src/components/wf/setCandidateDialog2.vue +14 -10
- package/src/components/wf/wf.js +527 -411
- package/src/components/wf/wfTaskUserRangeDialog.vue +1 -1
- package/src/components/wf/wfUtil.js +129 -91
- package/src/components/xform/form-designer/designer.js +1994 -9
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +10 -0
- package/src/components/xform/form-designer/form-widget/container-widget/detail-pane-widget.vue +3 -2
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +5 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin - /345/211/257/346/234/254.js" +1639 -0
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1756 -2
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +1 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-item-widget.vue +10 -1
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-widget.vue +170 -0
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1630 -1
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +153 -40
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +65 -46
- package/src/components/xform/form-designer/form-widget/field-widget/vue-page-widget.vue +231 -0
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +7 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/edit-tree-button-group-config-dialog.vue +281 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +659 -221
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +133 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +14 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vue-page/vue-page-editor.vue +48 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconClass-editor.vue +18 -17
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +26 -26
- package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +67 -13
- package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +2 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/showViewButton-editor.vue +29 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +8 -6
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +1 -0
- package/src/components/xform/form-render/container-item/data-table-mixin.js +20 -17
- package/src/components/xform/form-render/container-item/detail-item.vue +72 -48
- package/src/components/xform/form-render/container-item/sub-form-item.vue +10 -2
- package/src/components/xform/form-render/container-item/table2-item.vue +40 -10
- package/src/components/xform/form-render/indexMixin.js +3705 -1
- package/src/components/xform/icon-picker/icons.json +284 -0
- package/src/components/xform/icon-picker/index.vue +145 -0
- package/src/components/xform/lang/zh-CN.js +2 -1
- package/src/components/xform/mixins/defaultHandle.js +366 -2
- package/src/components/xform/utils/formula-util.js +3 -0
- package/src/components/xform/utils/sfc-generator.js +2 -2
- package/src/components/xform/utils/smart-vue-i18n/index.js +2 -1
- package/src/components/xform/utils/tableColumnHelper.js +54 -10
- package/src/components/xform/utils/util.js +1547 -1
- package/src/index.js +190 -211
- package/src/lang/locale/en/login.js +26 -19
- package/src/lang/locale/zh/login.js +25 -19
- package/src/layout/components/Sidebar/default.vue +252 -71
- package/src/layout/components/Sidebar/index.vue +6 -1
- package/src/layout/components/TagsView/index.vue +6 -0
- package/src/layout/components/langTool.vue +32 -29
- package/src/layout/defaultLayout.vue +16 -8
- package/src/layout/index.vue +5 -3
- package/src/permission.js +135 -1
- package/src/router/index.js +1 -4
- package/src/store/config/index.js +667 -1
- package/src/store/getters.js +2 -1
- package/src/store/modules/permission.js +332 -1
- package/src/store/modules/settings.js +26 -1
- package/src/store/modules/tagsView.js +190 -1
- package/src/store/modules/user.js +358 -1
- package/src/utils/aes.js +15 -1
- package/src/utils/auth.js +27 -1
- package/src/utils/componentDialog.js +217 -0
- package/src/utils/request.js +368 -1
- package/src/utils/vab.js +1256 -7
- package/src/views/bd/setting/bd_company_env/dialog.vue +174 -174
- package/src/views/bd/setting/bd_company_env/edit.vue +193 -193
- package/src/views/bd/setting/formVersion/button.vue +55 -0
- package/src/views/bd/setting/formVersion/compareBasicSection.vue +125 -0
- package/src/views/bd/setting/formVersion/compareCodeSection.vue +539 -0
- package/src/views/bd/setting/formVersion/compareContMixin.scss +65 -0
- package/src/views/bd/setting/formVersion/compareContent.vue +63 -0
- package/src/views/bd/setting/formVersion/compareDialog.vue +88 -0
- package/src/views/bd/setting/formVersion/compareMixin.js +93 -0
- package/src/views/bd/setting/formVersion/fieldCompare.vue +54 -0
- package/src/views/bd/setting/formVersion/formScriptCompareView.vue +94 -0
- package/src/views/bd/setting/formVersion/formTemplateCompareView.vue +74 -0
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +491 -0
- package/src/views/bd/setting/formVersion/link.vue +58 -0
- package/src/views/bd/setting/formVersion/preformDialog.vue +87 -0
- package/src/views/bd/setting/formVersion/reverButton.vue +82 -0
- package/src/views/bd/setting/formVersion/tableDetailDiff.js +99 -0
- package/src/views/bd/setting/formVersion/tableModelCompareView.vue +514 -0
- package/src/views/bd/setting/formVersion/textDiff.js +102 -0
- package/src/views/bd/setting/form_import_log/edit.vue +6 -3
- package/src/views/bd/setting/form_import_log/list.vue +5 -0
- package/src/views/bd/setting/form_script/edit.vue +196 -83
- package/src/views/bd/setting/form_script/edit1.vue +410 -220
- package/src/views/bd/setting/form_script/form_list.vue +19 -0
- package/src/views/bd/setting/form_script/list.vue +95 -21
- package/src/views/bd/setting/form_script/list1.vue +24 -0
- package/src/views/bd/setting/form_script/mixins/dialog.js +2 -2
- package/src/views/bd/setting/form_script/mixins/edit.js +265 -207
- package/src/views/bd/setting/form_script/mixins/edit1.js +259 -201
- package/src/views/bd/setting/form_script/mixins/form_list.js +322 -296
- package/src/views/bd/setting/form_script/mixins/list.js +163 -95
- package/src/views/bd/setting/form_script/mixins/list1.js +244 -155
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +1 -1
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +1 -1
- package/src/views/bd/setting/form_template/edit.vue +355 -205
- package/src/views/bd/setting/form_template/formDesignerDialog.vue +171 -0
- package/src/views/bd/setting/form_template/list.vue +49 -74
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +3 -3
- package/src/views/bd/setting/form_template/mixins/edit.js +51 -8
- package/src/views/bd/setting/form_template/mixins/itemList.js +1 -1
- package/src/views/bd/setting/form_template/mixins/list.js +114 -82
- package/src/views/bd/setting/form_template/mixins/list2.js +3 -3
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +1 -1
- package/src/views/bd/setting/form_template/mixins/wf_list.js +3 -7
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +254 -254
- package/src/views/bd/setting/form_template/wf_list.vue +161 -127
- package/src/views/bd/setting/request_async_setting/edit.vue +320 -320
- package/src/views/bd/setting/request_setting/edit.vue +300 -300
- package/src/views/bd/setting/request_setting/list.vue +15 -25
- package/src/views/bd/setting/table_model/edit.vue +702 -498
- package/src/views/bd/setting/table_model/list.vue +28 -0
- package/src/views/bd/setting/table_model/mixins/dialog.js +1 -1
- package/src/views/bd/setting/table_model/mixins/edit copy.js +903 -0
- package/src/views/bd/setting/table_model/mixins/edit.js +228 -121
- package/src/views/bd/setting/table_model/mixins/list.js +55 -20
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +1 -1
- package/src/views/bd/setting/table_model/mixins/zdDialog.js +50 -46
- package/src/views/bd/setting/utils/index.js +15 -0
- package/src/views/user/api_request/list.vue +203 -203
- package/src/views/user/bill_setting/list.vue +345 -345
- package/src/views/user/code_rules/list.vue +204 -204
- package/src/views/user/common_attribute/list.vue +378 -378
- package/src/views/user/common_script/list.vue +341 -341
- package/src/views/user/company_info/dialog.vue +80 -49
- package/src/views/user/country/list.vue +197 -197
- package/src/views/user/extend_datasource/dialog.vue +0 -3
- package/src/views/user/extend_datasource/edit.vue +1 -2
- package/src/views/user/extend_datasource/list.vue +221 -224
- package/src/views/user/fieldTranslation/editDialog.vue +1 -1
- package/src/views/user/fieldTranslation/list.vue +473 -473
- package/src/views/user/field_values_invisible/list.vue +207 -207
- package/src/views/user/file_type/list.vue +271 -271
- package/src/views/user/file_view_area/list.vue +331 -331
- package/src/views/user/form/vform/designer.vue +303 -287
- package/src/views/user/form/vform/formFieldMapping.js +2 -3
- package/src/views/user/form/view/edit.vue +19 -1
- package/src/views/user/form/view/list.vue +59 -17
- package/src/views/user/groups/list.vue +158 -158
- package/src/views/user/home/default.vue +274 -182
- package/src/views/user/home/default2.vue +1148 -0
- package/src/views/user/home/index.vue +2 -1
- package/src/views/user/lang_tag/list.vue +170 -170
- package/src/views/user/language_setting/list.vue +208 -208
- package/src/views/user/ledger_library/list.vue +12 -10
- package/src/views/user/login/default.vue +1 -1
- package/src/views/user/login/indexMixin.js +204 -169
- package/src/views/user/menu/list.vue +575 -575
- package/src/views/user/notify_message/dialog.vue +7 -1
- package/src/views/user/notify_template/list.vue +192 -192
- package/src/views/user/notify_template/list2.vue +190 -190
- package/src/views/user/position/list.vue +188 -188
- package/src/views/user/project_tag/list.vue +175 -175
- package/src/views/user/push_setting/list.vue +236 -236
- package/src/views/user/request_setting/list.vue +248 -248
- package/src/views/user/role/list.vue +182 -182
- package/src/views/user/system_notice/infoDialog.vue +61 -2
- package/src/views/user/system_notice/list.vue +203 -203
- package/src/views/user/system_parameter/list.vue +141 -141
- package/src/views/user/user/edit.vue +45 -0
- package/src/views/user/user/form_list.vue +245 -245
- package/src/views/user/user/info.vue +253 -140
- package/src/views/user/user_log_classify/list.vue +197 -197
- package/src/views/user/wf/iframe/index.vue +46 -46
- package/src/views/user/wf/wfReport/index.vue +1 -1
- package/src/views/user/wf/wf_auto_submit_data/list.vue +659 -659
- package/src/views/user/wf/wf_diy_attribute/edit.vue +1 -1
- package/src/views/user/wf/wf_manage/list.vue +795 -795
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +106 -106
- package/src/views/user/wf/wf_obj_config/dialog.vue +2 -2
- package/src/views/user/wf/wf_obj_config/edit.vue +1 -1
- package/src/views/user/wf/wf_obj_config/edit_form.vue +2 -2
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +1 -1
- package/src/views/user/wf/wf_obj_config/itemEdit_form.vue +1 -1
- package/src/views/user/wf/wf_obj_config/itemOperateDialog.vue +4 -4
- package/src/views/user/wf/wf_obj_config/list.vue +28 -28
- package/src/views/user/wf/wf_obj_config/list_form.vue +5 -5
- package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +292 -292
- package/src/views/user/wf/wf_param/edit.vue +1 -1
- package/src/views/user/wf/wf_transfer_setting/edit.vue +1 -1
- package/src/views/user/wf/wf_transfer_setting/list.vue +321 -319
- package/src/views/user/wf/wf_work_calendar/components/calendar.vue +369 -367
- package/src/views/user/wf/wf_work_calendar/components/calendar2.vue +401 -399
- package/src/views/user/wf/wf_work_calendar/configDialog.vue +6 -6
- package/src/views/user/wf/wf_work_calendar/date.js +84 -83
- package/src/views/user/wf/wf_work_calendar/list.vue +6 -6
- package/src/views/user/workbench_menu/list.vue +555 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div :class="{ 'has-logo': showLogo }">
|
|
2
|
+
<div :class="{ 'has-logo': showLogo, telescopMenu: !isMenu }">
|
|
3
3
|
<!-- <logo v-if="showLogo" :collapse="isCollapse" /> -->
|
|
4
4
|
|
|
5
5
|
<div class="hamburger-box" ref="hamhurger" @click="openUserInfo">
|
|
6
6
|
<!-- <hamburger :is-active="sidebar.opened" @toggleClick="toggleSideBar" /> -->
|
|
7
7
|
<div>
|
|
8
8
|
<p class="name">
|
|
9
|
-
<i class="iconfont icon-ziyuan"></i
|
|
9
|
+
<i class="iconfont icon-ziyuan"></i
|
|
10
|
+
><span>{{ userInfo.nickName }}</span>
|
|
10
11
|
</p>
|
|
11
12
|
</div>
|
|
12
13
|
</div>
|
|
@@ -57,7 +58,10 @@
|
|
|
57
58
|
:content="$t1('获取提取码')"
|
|
58
59
|
:placement="direction"
|
|
59
60
|
>
|
|
60
|
-
<i
|
|
61
|
+
<i
|
|
62
|
+
class="el-icon-setting"
|
|
63
|
+
@click="showExtractedCodeCreateDialog = true"
|
|
64
|
+
/>
|
|
61
65
|
</el-tooltip>
|
|
62
66
|
</div>
|
|
63
67
|
<div class="item" v-if="isBdAdmin">
|
|
@@ -67,7 +71,10 @@
|
|
|
67
71
|
:content="$t1('查看提取码')"
|
|
68
72
|
:placement="direction"
|
|
69
73
|
>
|
|
70
|
-
<i
|
|
74
|
+
<i
|
|
75
|
+
class="el-icon-tickets"
|
|
76
|
+
@click="showExtractedCodeQueryDialog = true"
|
|
77
|
+
/>
|
|
71
78
|
</el-tooltip>
|
|
72
79
|
</div>
|
|
73
80
|
|
|
@@ -99,7 +106,10 @@
|
|
|
99
106
|
<i :class="getMenuClass(router2, 2)"></i
|
|
100
107
|
><span>{{ getMenuName(router2) }}</span>
|
|
101
108
|
</div>
|
|
102
|
-
<dl
|
|
109
|
+
<dl
|
|
110
|
+
v-for="(router3, index3) in router2.children"
|
|
111
|
+
:key="'router3' + index3"
|
|
112
|
+
>
|
|
103
113
|
<div
|
|
104
114
|
class="item"
|
|
105
115
|
v-if="!router3.hidden"
|
|
@@ -122,37 +132,57 @@
|
|
|
122
132
|
:unique-opened="true"
|
|
123
133
|
@mouseleave="showNav()"
|
|
124
134
|
ref="seconMenus"
|
|
135
|
+
:collapse="!isMenu"
|
|
125
136
|
>
|
|
126
137
|
<el-scrollbar wrap-class="scrollbar-wrapper" id="menuUl">
|
|
127
|
-
<
|
|
138
|
+
<component
|
|
128
139
|
v-for="menuModule in menuModules"
|
|
140
|
+
:is="getMenuType(menuModule)"
|
|
129
141
|
:index="'' + menuModule.id"
|
|
130
142
|
:key="'menuModule' + menuModule.id"
|
|
131
143
|
@click.native="rourteTo(menuModule)"
|
|
132
144
|
>
|
|
145
|
+
<i :class="getMenuClass(menuModule, 1)" v-if="menuModule.children.length <= 0"></i>
|
|
133
146
|
<template slot="title">
|
|
134
|
-
<i :class="getMenuClass(menuModule, 1)"></i>
|
|
147
|
+
<i :class="getMenuClass(menuModule, 1)" v-if="menuModule.children.length > 0"></i>
|
|
135
148
|
<span>{{ getMenuName(menuModule) }}</span>
|
|
136
149
|
</template>
|
|
137
|
-
<
|
|
138
|
-
v-for="(
|
|
150
|
+
<component
|
|
151
|
+
v-for="(router2, index1) in menuModule.children"
|
|
152
|
+
:is="getMenuType(router2)"
|
|
139
153
|
:key="index1"
|
|
140
|
-
:index="'' +
|
|
141
|
-
|
|
142
|
-
@mouseenter.native="showNav(router1, $event)"
|
|
154
|
+
:index="'' + router2.id"
|
|
155
|
+
@mouseenter.native="showNav(router2, $event)"
|
|
143
156
|
@mouseleave.native="showNav()"
|
|
144
|
-
@click="rourteTo(
|
|
157
|
+
@click="rourteTo(router2)"
|
|
145
158
|
>
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
159
|
+
<template slot="title">
|
|
160
|
+
<i :class="getMenuClass(router2, 2)"></i>
|
|
161
|
+
<span>{{ getMenuName(router2) }}</span>
|
|
162
|
+
</template>
|
|
163
|
+
<el-menu-item
|
|
164
|
+
v-for="(router3, index3) in router2.children"
|
|
165
|
+
:key="index3"
|
|
166
|
+
:index="'' + router3.id"
|
|
167
|
+
@click="rourteTo(router3)"
|
|
168
|
+
>
|
|
169
|
+
<template slot="title">
|
|
170
|
+
<i :class="getMenuClass(router3, 3)"></i>
|
|
171
|
+
<span>{{ getMenuName(router3) }}</span>
|
|
172
|
+
</template>
|
|
173
|
+
</el-menu-item>
|
|
174
|
+
</component>
|
|
175
|
+
</component>
|
|
176
|
+
<el-menu-item
|
|
177
|
+
@click.native="openCreateCompanyDialog"
|
|
178
|
+
index="xx"
|
|
179
|
+
v-if="isFormDev"
|
|
180
|
+
>
|
|
151
181
|
<template slot="title">
|
|
152
182
|
<i :class="getMenuClass({}, 1)"></i>
|
|
153
183
|
<span>新建企业</span>
|
|
154
184
|
</template>
|
|
155
|
-
</el-
|
|
185
|
+
</el-menu-item>
|
|
156
186
|
</el-scrollbar>
|
|
157
187
|
</el-menu>
|
|
158
188
|
<div class="menu-btn">
|
|
@@ -173,7 +203,7 @@
|
|
|
173
203
|
v-if="showMenuModal"
|
|
174
204
|
></div>
|
|
175
205
|
<el-dialog
|
|
176
|
-
title="切换组织"
|
|
206
|
+
:title="$t1('切换组织')"
|
|
177
207
|
width="355px"
|
|
178
208
|
custom-class="dialog-style list-dialog"
|
|
179
209
|
v-if="showCompanyDialog"
|
|
@@ -186,7 +216,11 @@
|
|
|
186
216
|
@close="changeCompanyClose"
|
|
187
217
|
>
|
|
188
218
|
<div class="cont">
|
|
189
|
-
<el-input
|
|
219
|
+
<el-input
|
|
220
|
+
:placeholder="$t1('搜索')"
|
|
221
|
+
class="search-btn"
|
|
222
|
+
v-model="filterText"
|
|
223
|
+
></el-input>
|
|
190
224
|
<el-tree
|
|
191
225
|
:props="defaultProps"
|
|
192
226
|
:load="loadNode"
|
|
@@ -264,6 +298,9 @@ import createCompanyDialog from "@base/layout/components/createCompany/createCom
|
|
|
264
298
|
export default {
|
|
265
299
|
props: {
|
|
266
300
|
option: Object,
|
|
301
|
+
isMenu: {
|
|
302
|
+
type: Boolean,
|
|
303
|
+
},
|
|
267
304
|
},
|
|
268
305
|
components: {
|
|
269
306
|
userInfo,
|
|
@@ -365,6 +402,13 @@ export default {
|
|
|
365
402
|
this.getBdEnv();
|
|
366
403
|
},
|
|
367
404
|
methods: {
|
|
405
|
+
getMenuType(item) {
|
|
406
|
+
if (item.children && item.children.length > 0) {
|
|
407
|
+
return "el-submenu";
|
|
408
|
+
} else {
|
|
409
|
+
return "el-menu-item";
|
|
410
|
+
}
|
|
411
|
+
},
|
|
368
412
|
getBdEnv() {
|
|
369
413
|
getBdFlag({
|
|
370
414
|
success: (res) => {
|
|
@@ -414,9 +458,9 @@ export default {
|
|
|
414
458
|
window.open(path);
|
|
415
459
|
},
|
|
416
460
|
});
|
|
417
|
-
} else{
|
|
418
|
-
if (path.indexOf(
|
|
419
|
-
path = path.replace(
|
|
461
|
+
} else {
|
|
462
|
+
if (path.indexOf("token={token}") >= 0) {
|
|
463
|
+
path = path.replace("token={token}", "token=" + getToken());
|
|
420
464
|
}
|
|
421
465
|
window.open(path);
|
|
422
466
|
}
|
|
@@ -428,7 +472,10 @@ export default {
|
|
|
428
472
|
if (match) {
|
|
429
473
|
const customReqUrl = decodeURIComponent(match[1]);
|
|
430
474
|
// 移除匹配到的参数部分
|
|
431
|
-
const newUrl = url.replace(
|
|
475
|
+
const newUrl = url.replace(
|
|
476
|
+
match[0],
|
|
477
|
+
match[0].startsWith("?") ? "?" : ""
|
|
478
|
+
);
|
|
432
479
|
|
|
433
480
|
return {
|
|
434
481
|
custom_req_url: customReqUrl,
|
|
@@ -594,7 +641,9 @@ export default {
|
|
|
594
641
|
// 异步树叶子节点懒加载逻辑
|
|
595
642
|
loadNode(node, resolve) {
|
|
596
643
|
let companyCode =
|
|
597
|
-
node && node.data && node.data.companyCode
|
|
644
|
+
node && node.data && node.data.companyCode
|
|
645
|
+
? node.data.companyCode || ""
|
|
646
|
+
: "";
|
|
598
647
|
let url = !companyCode
|
|
599
648
|
? USER_PREFIX + "/user_company_info/getAllList"
|
|
600
649
|
: USER_PREFIX + "/user_company_info/getChildren";
|
|
@@ -610,7 +659,7 @@ export default {
|
|
|
610
659
|
let parentLabel = companyCode ? node.label : null;
|
|
611
660
|
datas.forEach((item) => {
|
|
612
661
|
item.leaf = !item.hasChild;
|
|
613
|
-
let label = item.companyName;
|
|
662
|
+
let label = this.$t1(item.companyName);
|
|
614
663
|
/*if(companyCode){
|
|
615
664
|
label = label + '('+companyTypeMap[item.companyType]+')'
|
|
616
665
|
}*/
|
|
@@ -722,6 +771,7 @@ export default {
|
|
|
722
771
|
this.showUserInfoDialog = true;
|
|
723
772
|
},
|
|
724
773
|
showNav(route, event) {
|
|
774
|
+
if (!this.isMenu) return;
|
|
725
775
|
let id = route && route.id ? route.id : null;
|
|
726
776
|
if (id != null) {
|
|
727
777
|
if (!route.children || !route.children.length) {
|
|
@@ -734,7 +784,7 @@ export default {
|
|
|
734
784
|
let dom = event.target;
|
|
735
785
|
let domAttr = dom.getBoundingClientRect();
|
|
736
786
|
// var sh1 = dom.offsetTop;
|
|
737
|
-
var sh1 = domAttr.top;
|
|
787
|
+
var sh1 = domAttr.top + 5;
|
|
738
788
|
let $snav = this.$refs["seconMenus" + id][0];
|
|
739
789
|
let snavAttr = $snav.getBoundingClientRect();
|
|
740
790
|
|
|
@@ -747,10 +797,11 @@ export default {
|
|
|
747
797
|
if (sh >= 0) {
|
|
748
798
|
$snav.style["margin-top"] = sh1 + "px";
|
|
749
799
|
} else if (sh < 0) {
|
|
750
|
-
let bd = sh1 + sh;
|
|
800
|
+
let bd = sh1 + sh ;
|
|
751
801
|
|
|
752
802
|
$snav.style["margin-top"] = bd + "px";
|
|
753
|
-
$snav.querySelector(".ico-arrow").style["margin-top"] =
|
|
803
|
+
$snav.querySelector(".ico-arrow").style["margin-top"] =
|
|
804
|
+
sh1 - bd + "px";
|
|
754
805
|
}
|
|
755
806
|
});
|
|
756
807
|
} else {
|
|
@@ -883,6 +934,7 @@ export default {
|
|
|
883
934
|
line-height: 16px;
|
|
884
935
|
overflow: hidden;
|
|
885
936
|
vertical-align: middle;
|
|
937
|
+
white-space: nowrap;
|
|
886
938
|
}
|
|
887
939
|
|
|
888
940
|
&.name {
|
|
@@ -907,6 +959,11 @@ export default {
|
|
|
907
959
|
|
|
908
960
|
p {
|
|
909
961
|
margin: 0;
|
|
962
|
+
display: -webkit-box;
|
|
963
|
+
overflow: hidden;
|
|
964
|
+
text-overflow: ellipsis;
|
|
965
|
+
-webkit-line-clamp: 2;
|
|
966
|
+
-webkit-box-orient: vertical;
|
|
910
967
|
}
|
|
911
968
|
}
|
|
912
969
|
|
|
@@ -1000,66 +1057,135 @@ export default {
|
|
|
1000
1057
|
position: relative;
|
|
1001
1058
|
background-color: rgba(0, 0, 0, 0.2);
|
|
1002
1059
|
word-break: break-word;
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
font-size: 13px;
|
|
1014
|
-
margin-right: 0;
|
|
1015
|
-
width: 18px;
|
|
1016
|
-
|
|
1017
|
-
&.iconfont {
|
|
1018
|
-
margin-right: 5px;
|
|
1019
|
-
font-size: 19px;
|
|
1020
|
-
float: left;
|
|
1060
|
+
.el-scrollbar__view >{
|
|
1061
|
+
.el-menu-item{padding:0 11px !important;
|
|
1062
|
+
span{font-size:14px;}
|
|
1063
|
+
}
|
|
1064
|
+
.el-submenu > .el-submenu__title{padding:0 11px !important;
|
|
1065
|
+
span{font-size:14px;}
|
|
1066
|
+
~ .el-menu{
|
|
1067
|
+
padding:5px 0;display: grid;
|
|
1068
|
+
> .el-menu-item{
|
|
1069
|
+
span{line-height:1.4;height: 26px;}
|
|
1021
1070
|
}
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
text-align: center;
|
|
1026
|
-
font-size: 12px;
|
|
1027
|
-
margin-top: -5px;
|
|
1028
|
-
display: none;
|
|
1071
|
+
.el-submenu.is-opened .el-submenu__title{background-color:#FFF;opacity:1;
|
|
1072
|
+
span{color:$baseColor;}
|
|
1073
|
+
i.iconfont{color:$baseColor}
|
|
1029
1074
|
}
|
|
1030
1075
|
}
|
|
1031
1076
|
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
.el-submenu__title,.el-menu-item {
|
|
1080
|
+
padding: 0 11px;
|
|
1081
|
+
height: 48px;
|
|
1082
|
+
line-height: 48px;
|
|
1083
|
+
&:hover,&.is-active{background-color:rgba(0, 0, 0, 0.29)}
|
|
1084
|
+
i {
|
|
1085
|
+
color: #fff;
|
|
1086
|
+
font-size: 13px;
|
|
1087
|
+
margin-right: 0;
|
|
1088
|
+
width: 18px;
|
|
1089
|
+
|
|
1090
|
+
&.iconfont {
|
|
1091
|
+
margin-right: 5px;
|
|
1092
|
+
font-size: 19px;
|
|
1093
|
+
float: left;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
&.el-submenu__icon-arrow {
|
|
1097
|
+
right: 3px;
|
|
1098
|
+
text-align: center;
|
|
1099
|
+
font-size: 12px;
|
|
1100
|
+
margin-top: -5px;
|
|
1101
|
+
display: none;
|
|
1040
1102
|
}
|
|
1041
1103
|
}
|
|
1042
1104
|
|
|
1105
|
+
> span {
|
|
1106
|
+
height: 48px;
|
|
1107
|
+
display: table-cell;
|
|
1108
|
+
width: 114px;
|
|
1109
|
+
vertical-align: middle;
|
|
1110
|
+
font-size: 13px;
|
|
1111
|
+
white-space: normal;
|
|
1112
|
+
line-height: 16px;
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.el-submenu {
|
|
1117
|
+
overflow: hidden; //有点电脑分辨率问题
|
|
1118
|
+
|
|
1043
1119
|
&.is-opened .el-submenu__title {
|
|
1044
1120
|
//background-color: rgba(27, 66, 97) !important;
|
|
1045
1121
|
}
|
|
1122
|
+
.el-submenu .el-menu{display:none}
|
|
1046
1123
|
}
|
|
1047
1124
|
|
|
1048
1125
|
.el-submenu {
|
|
1126
|
+
&.is-opened{
|
|
1127
|
+
> .el-submenu__title{background-color:rgba(0, 0, 0, 0.29)}
|
|
1128
|
+
}
|
|
1049
1129
|
.el-menu {
|
|
1050
|
-
background: rgba(0, 0, 0, 0.35)
|
|
1130
|
+
background: rgba(0, 0, 0, 0.35);
|
|
1051
1131
|
box-shadow: 0px -5px 8px #00000014 inset;
|
|
1052
1132
|
//padding:4px 0;
|
|
1133
|
+
.el-submenu__title{
|
|
1134
|
+
height: auto;
|
|
1135
|
+
line-height: 1.4;
|
|
1136
|
+
font-size: 12px;
|
|
1137
|
+
opacity: 0.8;
|
|
1138
|
+
margin: 5px 0 5px 14px;
|
|
1139
|
+
padding: 7px 2px 7px 33px !important;
|
|
1140
|
+
border-radius: 8px;
|
|
1141
|
+
text-align: left;
|
|
1142
|
+
min-width: 81px;
|
|
1143
|
+
white-space: normal;
|
|
1144
|
+
margin-right: 10px;
|
|
1145
|
+
word-break: break-word;
|
|
1146
|
+
i.iconfont {
|
|
1147
|
+
position: absolute;
|
|
1148
|
+
top: 50%;
|
|
1149
|
+
height: 20px;
|
|
1150
|
+
margin-top: -10px;
|
|
1151
|
+
line-height: 20px;
|
|
1152
|
+
left: 7px;
|
|
1153
|
+
font-size: 18px;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
[class^="el-icon-"] {
|
|
1157
|
+
font-size: 12px;
|
|
1158
|
+
color: #fff;
|
|
1159
|
+
position: absolute;
|
|
1160
|
+
right: 2px;
|
|
1161
|
+
top: 50%;
|
|
1162
|
+
margin-top: -5px;
|
|
1163
|
+
width: 14px;
|
|
1164
|
+
zoom: 0.8;
|
|
1165
|
+
display: none;
|
|
1166
|
+
}
|
|
1167
|
+
span{height:auto;text-align: left !important;}
|
|
1168
|
+
&:hover,
|
|
1169
|
+
&.on {
|
|
1170
|
+
opacity: 1;
|
|
1171
|
+
background-color: #fbfdfe !important;
|
|
1172
|
+
color: $baseColor !important;
|
|
1173
|
+
i.iconfont{color:$baseColor}
|
|
1174
|
+
.el-icon-arrow-right {
|
|
1175
|
+
color: $baseColor;
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1053
1179
|
}
|
|
1054
1180
|
|
|
1055
|
-
.el-menu-item
|
|
1181
|
+
.el-menu-item{
|
|
1056
1182
|
height: auto;
|
|
1057
1183
|
line-height: 1.4;
|
|
1058
1184
|
padding-left: 33px !important;
|
|
1059
1185
|
font-size: 12px;
|
|
1060
1186
|
opacity: 0.8;
|
|
1061
|
-
margin:
|
|
1062
|
-
padding:
|
|
1187
|
+
margin: 5px 0 5px 14px;
|
|
1188
|
+
padding: 2px 2px 2px 0px;
|
|
1063
1189
|
border-radius: 8px;
|
|
1064
1190
|
text-align: left;
|
|
1065
1191
|
min-width: 81px !important;
|
|
@@ -1067,7 +1193,7 @@ export default {
|
|
|
1067
1193
|
margin-right: 10px;
|
|
1068
1194
|
word-break: break-word;
|
|
1069
1195
|
|
|
1070
|
-
|
|
1196
|
+
i.iconfont {
|
|
1071
1197
|
position: absolute;
|
|
1072
1198
|
top: 50%;
|
|
1073
1199
|
height: 20px;
|
|
@@ -1075,6 +1201,7 @@ export default {
|
|
|
1075
1201
|
line-height: 20px;
|
|
1076
1202
|
left: 7px;
|
|
1077
1203
|
font-size: 18px;
|
|
1204
|
+
color:#D0D6DB;
|
|
1078
1205
|
}
|
|
1079
1206
|
|
|
1080
1207
|
[class^="el-icon-"] {
|
|
@@ -1087,6 +1214,7 @@ export default {
|
|
|
1087
1214
|
width: 14px;
|
|
1088
1215
|
zoom: 0.8;
|
|
1089
1216
|
display: none;
|
|
1217
|
+
|
|
1090
1218
|
}
|
|
1091
1219
|
|
|
1092
1220
|
&:hover,
|
|
@@ -1095,7 +1223,7 @@ export default {
|
|
|
1095
1223
|
background-color: #fbfdfe !important;
|
|
1096
1224
|
color: $baseColor !important;
|
|
1097
1225
|
|
|
1098
|
-
.el-icon-arrow-right {
|
|
1226
|
+
.el-icon-arrow-right,i.iconfont {
|
|
1099
1227
|
color: $baseColor;
|
|
1100
1228
|
}
|
|
1101
1229
|
}
|
|
@@ -1108,7 +1236,6 @@ export default {
|
|
|
1108
1236
|
.el-submenu {
|
|
1109
1237
|
.el-submenu__title {
|
|
1110
1238
|
> span {
|
|
1111
|
-
font-size: 14px;
|
|
1112
1239
|
text-align: center;
|
|
1113
1240
|
}
|
|
1114
1241
|
|
|
@@ -1416,8 +1543,62 @@ export default {
|
|
|
1416
1543
|
}
|
|
1417
1544
|
}
|
|
1418
1545
|
}
|
|
1419
|
-
|
|
1420
1546
|
// .el-submenu .el-menu {
|
|
1421
1547
|
// height: auto !important;
|
|
1422
1548
|
// }
|
|
1549
|
+
.el-menu--vertical{
|
|
1550
|
+
> .el-menu--popup{overflow: auto;//不用atuo 超出不出滚动条
|
|
1551
|
+
.el-submenu__title, .el-menu-item{
|
|
1552
|
+
height: auto !important;
|
|
1553
|
+
line-height: 1.4 !important;
|
|
1554
|
+
padding: 8px 0;
|
|
1555
|
+
text-align: left;
|
|
1556
|
+
white-space: normal;
|
|
1557
|
+
word-break: break-word;
|
|
1558
|
+
background:none;
|
|
1559
|
+
i.iconfont{color:#FFF;margin-right:8px;}
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1562
|
+
.el-submenu{
|
|
1563
|
+
.el-submenu__title{
|
|
1564
|
+
.el-submenu__icon-arrow{display:none}
|
|
1565
|
+
}
|
|
1566
|
+
&:hover{
|
|
1567
|
+
.el-submenu__title{
|
|
1568
|
+
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1569
|
+
i.iconfont{color:$baseColor}
|
|
1570
|
+
}
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
&.is-opened{
|
|
1574
|
+
.el-submenu__title{
|
|
1575
|
+
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1576
|
+
i.iconfont{color:$baseColor}
|
|
1577
|
+
}
|
|
1578
|
+
}
|
|
1579
|
+
}
|
|
1580
|
+
.el-menu-item{
|
|
1581
|
+
&:hover{
|
|
1582
|
+
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1583
|
+
i.iconfont{color:$baseColor}
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
&.is-opened{
|
|
1587
|
+
background-color: rgba(0, 0, 0, 0.29) !important;
|
|
1588
|
+
i.iconfont{color:$baseColor}
|
|
1589
|
+
}
|
|
1590
|
+
}
|
|
1591
|
+
// .el-menu-item{
|
|
1592
|
+
// &:hover{
|
|
1593
|
+
// background:#FFF !important;opacity:1;
|
|
1594
|
+
// span{color:$baseColor}
|
|
1595
|
+
// i.iconfont{color:$baseColor}
|
|
1596
|
+
// }
|
|
1597
|
+
// &.is-opened{
|
|
1598
|
+
// background:#FFF;opacity:1;
|
|
1599
|
+
// span{color:$baseColor}
|
|
1600
|
+
// i.iconfont{color:$baseColor}
|
|
1601
|
+
// }
|
|
1602
|
+
// }
|
|
1603
|
+
}
|
|
1423
1604
|
</style>
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<defaultView></defaultView>
|
|
2
|
+
<defaultView :isMenu.sync="isMenu"></defaultView>
|
|
3
3
|
</template>
|
|
4
4
|
|
|
5
5
|
<script>
|
|
6
6
|
import defaultView from "./default.vue";
|
|
7
7
|
export default {
|
|
8
|
+
props: {
|
|
9
|
+
isMenu: {
|
|
10
|
+
type: Boolean
|
|
11
|
+
}
|
|
12
|
+
},
|
|
8
13
|
data() {
|
|
9
14
|
return {};
|
|
10
15
|
},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="tags-view-container" class="navbar-tag">
|
|
3
|
+
<div @click="$baseEventBus.$emit('triggerMenu')" class="telescopMenuIcon"><i class="iconfont" :class="isMenu?'icon-shouqi':'icon-shouqi-copy'"></i></div>
|
|
3
4
|
<scroll-pane ref="scrollPane" class="tags-view-wrapper" @scroll="handleScroll">
|
|
4
5
|
<router-link
|
|
5
6
|
v-for="tag in visitedViews"
|
|
@@ -63,6 +64,11 @@ import path from 'path'
|
|
|
63
64
|
|
|
64
65
|
export default {
|
|
65
66
|
components: {ScrollPane},
|
|
67
|
+
props: {
|
|
68
|
+
isMenu: {
|
|
69
|
+
type: Boolean
|
|
70
|
+
}
|
|
71
|
+
},
|
|
66
72
|
data() {
|
|
67
73
|
return {
|
|
68
74
|
visible: false,
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="item" v-if="i18nEnabled && languageSettings.length>1">
|
|
3
|
-
<el-dropdown class=
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
<div class="item" v-if="i18nEnabled && languageSettings.length > 1">
|
|
3
|
+
<el-dropdown class="lang-box" trigger="click">
|
|
4
|
+
<span class="el-dropdown-link">
|
|
5
|
+
<i class="iconfont icon-duoyuyan"></i
|
|
6
|
+
><i class="el-icon-arrow-down el-icon--right"></i>
|
|
7
|
+
</span>
|
|
8
8
|
<el-dropdown-menu slot="dropdown" class="lang-box-pup">
|
|
9
|
-
<el-dropdown-item
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
<el-dropdown-item
|
|
10
|
+
v-for="(item, index) in languageSettings"
|
|
11
|
+
:key="index"
|
|
12
|
+
:command="item.languageCode"
|
|
13
|
+
@click.native="changeLanguage(item.languageCode)"
|
|
14
|
+
:class="{ cur: currentName == item.languageName }"
|
|
15
|
+
>{{ $t1(item.languageName) }}
|
|
12
16
|
</el-dropdown-item>
|
|
13
17
|
</el-dropdown-menu>
|
|
14
18
|
</el-dropdown>
|
|
@@ -24,13 +28,13 @@ export default {
|
|
|
24
28
|
return {
|
|
25
29
|
languageSettings: [],
|
|
26
30
|
languageSettingMap: {},
|
|
27
|
-
i18nEnabled: settingConfig.i18nEnabled
|
|
28
|
-
}
|
|
31
|
+
i18nEnabled: settingConfig.i18nEnabled,
|
|
32
|
+
};
|
|
29
33
|
},
|
|
30
34
|
computed: {
|
|
31
35
|
currentName() {
|
|
32
|
-
return this.languageSettingMap[this.$i18n.locale]
|
|
33
|
-
}
|
|
36
|
+
return this.languageSettingMap[this.$i18n.locale];
|
|
37
|
+
},
|
|
34
38
|
},
|
|
35
39
|
mounted() {
|
|
36
40
|
this.initLanguageSetting();
|
|
@@ -42,33 +46,33 @@ export default {
|
|
|
42
46
|
url: USER_PREFIX + `/auth/switchLanguage`,
|
|
43
47
|
method: `post`,
|
|
44
48
|
data: {
|
|
45
|
-
|
|
49
|
+
stringOne: command,
|
|
46
50
|
},
|
|
47
51
|
isLoading: true,
|
|
48
52
|
modalStrictly: true,
|
|
49
53
|
loadingTarget: document.body,
|
|
50
|
-
success: res => {
|
|
51
|
-
this.$i18n.locale = command // 设置给本地的i18n插件
|
|
54
|
+
success: (res) => {
|
|
55
|
+
this.$i18n.locale = command; // 设置给本地的i18n插件
|
|
52
56
|
localStorage.setItem("i18n-lang", command);
|
|
53
|
-
this.$message.success(
|
|
54
|
-
location.reload()
|
|
55
|
-
}
|
|
56
|
-
})
|
|
57
|
+
this.$message.success("切换多语言成功");
|
|
58
|
+
location.reload();
|
|
59
|
+
},
|
|
60
|
+
});
|
|
57
61
|
}
|
|
58
62
|
},
|
|
59
63
|
initLanguageSetting() {
|
|
60
64
|
if (settingConfig.i18nEnabled !== true) return;
|
|
61
|
-
let languageSettings = []
|
|
62
|
-
languageSettings.push(...
|
|
65
|
+
let languageSettings = [];
|
|
66
|
+
languageSettings.push(...this.$store.state.user.languageSettings);
|
|
63
67
|
let map = {};
|
|
64
|
-
languageSettings.forEach(item => {
|
|
68
|
+
languageSettings.forEach((item) => {
|
|
65
69
|
map[item.languageCode] = item.languageName;
|
|
66
70
|
});
|
|
67
71
|
this.languageSettingMap = map;
|
|
68
72
|
this.languageSettings = languageSettings;
|
|
69
73
|
},
|
|
70
|
-
}
|
|
71
|
-
}
|
|
74
|
+
},
|
|
75
|
+
};
|
|
72
76
|
</script>
|
|
73
77
|
<style scoped lang="scss">
|
|
74
78
|
/*多语言*/
|
|
@@ -78,7 +82,7 @@ export default {
|
|
|
78
82
|
height: 18px;
|
|
79
83
|
line-height: 18px;
|
|
80
84
|
vertical-align: middle;
|
|
81
|
-
color: #
|
|
85
|
+
color: #fff;
|
|
82
86
|
font-size: 12px;
|
|
83
87
|
|
|
84
88
|
.el-icon--right {
|
|
@@ -86,7 +90,7 @@ export default {
|
|
|
86
90
|
}
|
|
87
91
|
|
|
88
92
|
.el-dropdown-link {
|
|
89
|
-
color: #
|
|
93
|
+
color: #fff;
|
|
90
94
|
|
|
91
95
|
.name {
|
|
92
96
|
display: inline-block;
|
|
@@ -95,7 +99,7 @@ export default {
|
|
|
95
99
|
overflow: hidden;
|
|
96
100
|
vertical-align: middle;
|
|
97
101
|
font-size: 12px;
|
|
98
|
-
line-height: 19px
|
|
102
|
+
line-height: 19px;
|
|
99
103
|
}
|
|
100
104
|
|
|
101
105
|
i {
|
|
@@ -110,7 +114,6 @@ export default {
|
|
|
110
114
|
}
|
|
111
115
|
}
|
|
112
116
|
}
|
|
113
|
-
|
|
114
117
|
}
|
|
115
118
|
|
|
116
119
|
.lang-box-pup .el-dropdown-menu__item.cur {
|