eoss-ui 0.5.42 → 0.5.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/CHANGELOG.md +929 -0
- package/README.md +18 -0
- package/lib/button-group.js +120 -69
- package/lib/button.js +133 -72
- package/lib/checkbox-group.js +116 -67
- package/lib/data-table-form.js +126 -74
- package/lib/data-table.js +211 -106
- package/lib/date-picker.js +155 -71
- package/lib/dialog.js +132 -71
- package/lib/eoss-ui.common.js +744 -417
- package/lib/flow-group.js +144 -74
- package/lib/flow-list.js +120 -69
- package/lib/flow.js +169 -99
- package/lib/form.js +125 -69
- package/lib/handle-user.js +127 -70
- package/lib/handler.js +145 -92
- package/lib/index.js +1 -1
- package/lib/input-number.js +116 -67
- package/lib/input.js +116 -67
- package/lib/login.js +149 -97
- package/lib/main.js +234 -152
- package/lib/nav.js +116 -67
- package/lib/page.js +116 -67
- package/lib/player.js +116 -67
- package/lib/qr-code.js +116 -67
- package/lib/radio-group.js +116 -67
- package/lib/retrial-auth.js +130 -71
- package/lib/select-ganged.js +116 -67
- package/lib/select.js +116 -67
- package/lib/selector-panel.js +131 -74
- package/lib/selector.js +116 -67
- package/lib/sizer.js +116 -67
- package/lib/steps.js +116 -67
- package/lib/switch.js +116 -67
- package/lib/table-form.js +123 -72
- package/lib/tabs.js +119 -69
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tips.js +116 -67
- package/lib/tree-group.js +151 -71
- package/lib/tree.js +116 -67
- package/lib/upload.js +136 -78
- package/lib/utils/util.js +116 -67
- package/lib/wujie.js +116 -67
- package/lib/wxlogin.js +116 -67
- package/package.json +2 -2
- package/packages/button/src/main.vue +17 -5
- package/packages/button-group/src/main.vue +2 -0
- package/packages/data-table/src/column.vue +4 -0
- package/packages/data-table/src/main.vue +67 -28
- package/packages/data-table-form/src/tbody.vue +3 -0
- package/packages/date-picker/src/main.vue +48 -5
- package/packages/dialog/src/main.vue +14 -2
- package/packages/flow/src/component/CustomPreset.vue +14 -7
- package/packages/flow/src/component/FileList.vue +4 -2
- package/packages/flow/src/component/Preset.vue +11 -13
- package/packages/flow/src/form.vue +5 -4
- package/packages/flow/src/main.vue +7 -7
- package/packages/flow/src/table.vue +8 -1
- package/packages/flow-group/src/main.vue +26 -5
- package/packages/form/src/main.vue +12 -0
- package/packages/form/src/table.vue +2 -0
- package/packages/handle-user/src/main.vue +9 -1
- package/packages/handler/src/main.vue +31 -27
- package/packages/login/src/main.vue +35 -31
- package/packages/main/src/async-component/index.vue +4 -2
- package/packages/main/src/main.vue +62 -30
- package/packages/main/src/userinfo.vue +29 -25
- package/packages/retrial-auth/src/main.vue +12 -2
- package/packages/selector-panel/src/selection.vue +6 -0
- package/packages/tabs/src/main.vue +1 -0
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/data-table.scss +6 -0
- package/packages/tree-group/src/main.vue +36 -2
- package/packages/upload/src/main.vue +15 -6
- package/src/index.js +1 -1
- package/src/utils/util.js +132 -80
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
</div>
|
|
184
184
|
<es-qr-code
|
|
185
185
|
:content="identifyingId"
|
|
186
|
-
v-if="active == 3"
|
|
186
|
+
v-if="active == 3 && identifyingId"
|
|
187
187
|
></es-qr-code>
|
|
188
188
|
<div class="es-wx-qrcode-box" v-if="active == 9">
|
|
189
189
|
<es-wxlogin
|
|
@@ -761,7 +761,7 @@ export default {
|
|
|
761
761
|
doAssistance: null
|
|
762
762
|
};
|
|
763
763
|
},
|
|
764
|
-
|
|
764
|
+
beforeCreate() {
|
|
765
765
|
util.removeStorage([
|
|
766
766
|
'remind',
|
|
767
767
|
'ssId',
|
|
@@ -772,6 +772,8 @@ export default {
|
|
|
772
772
|
'userName',
|
|
773
773
|
'useCaseCodes'
|
|
774
774
|
]);
|
|
775
|
+
},
|
|
776
|
+
created() {
|
|
775
777
|
this.code = util.getParams('code');
|
|
776
778
|
if (this.code) {
|
|
777
779
|
this.doWechatLogin(this.code);
|
|
@@ -914,6 +916,7 @@ export default {
|
|
|
914
916
|
this.onDownLoadApp();
|
|
915
917
|
} else {
|
|
916
918
|
this.$emit('handleDownLoadApp');
|
|
919
|
+
this.$emit('handle-down-load-app');
|
|
917
920
|
}
|
|
918
921
|
} else {
|
|
919
922
|
this.showDownLoadApp = true;
|
|
@@ -934,39 +937,37 @@ export default {
|
|
|
934
937
|
return this.loginType.indexOf(res) > -1;
|
|
935
938
|
},
|
|
936
939
|
getLogin() {
|
|
937
|
-
const config =
|
|
940
|
+
const config = util.getStorage('initLogin');
|
|
938
941
|
if (config) {
|
|
939
942
|
this.setConfig(config);
|
|
940
|
-
} else {
|
|
941
|
-
util
|
|
942
|
-
.ajax({ url: this.initLogin })
|
|
943
|
-
.then((res) => {
|
|
944
|
-
if (res && res.rCode === 0) {
|
|
945
|
-
store.set('initLogin', res.results);
|
|
946
|
-
util.setStorage({
|
|
947
|
-
type: this.storage,
|
|
948
|
-
key: 'initLogin',
|
|
949
|
-
value: JSON.stringify(res.results)
|
|
950
|
-
});
|
|
951
|
-
this.setConfig(res.results);
|
|
952
|
-
} else {
|
|
953
|
-
this.$message({
|
|
954
|
-
message: res.msg || '系统错误,请联系管理员!',
|
|
955
|
-
type: 'error',
|
|
956
|
-
duration: 2000
|
|
957
|
-
});
|
|
958
|
-
}
|
|
959
|
-
})
|
|
960
|
-
.catch((err) => {
|
|
961
|
-
if (err.message && err.message !== 'canceled') {
|
|
962
|
-
this.$message.error(err.message);
|
|
963
|
-
}
|
|
964
|
-
});
|
|
965
943
|
}
|
|
944
|
+
util
|
|
945
|
+
.ajax({ url: this.initLogin })
|
|
946
|
+
.then((res) => {
|
|
947
|
+
if (res && res.rCode === 0) {
|
|
948
|
+
store.set('initLogin', res.results);
|
|
949
|
+
util.setStorage({
|
|
950
|
+
type: 'localStorage',
|
|
951
|
+
key: 'initLogin',
|
|
952
|
+
value: JSON.stringify(res.results)
|
|
953
|
+
});
|
|
954
|
+
this.setConfig(res.results);
|
|
955
|
+
} else {
|
|
956
|
+
this.$message({
|
|
957
|
+
message: res.msg || '系统错误,请联系管理员!',
|
|
958
|
+
type: 'error',
|
|
959
|
+
duration: 2000
|
|
960
|
+
});
|
|
961
|
+
}
|
|
962
|
+
})
|
|
963
|
+
.catch((err) => {
|
|
964
|
+
if (err.message && err.message !== 'canceled') {
|
|
965
|
+
this.$message.error(err.message);
|
|
966
|
+
}
|
|
967
|
+
});
|
|
966
968
|
},
|
|
967
969
|
setConfig(res) {
|
|
968
|
-
|
|
969
|
-
this.identifyingId = res.identifyingId;
|
|
970
|
+
this.identifyingId = res.identifyingId || '';
|
|
970
971
|
this.getImgCode();
|
|
971
972
|
let downloads = {};
|
|
972
973
|
if (res.androidDownloadUrl) {
|
|
@@ -996,9 +997,12 @@ export default {
|
|
|
996
997
|
? res.loginBackgroundUrl.split(',')
|
|
997
998
|
: null;
|
|
998
999
|
this.loginLogoImg = res.loginLogoUrl ? res.loginLogoUrl : null;
|
|
1000
|
+
res.loginPage && sessionStorage.setItem('loginPage', res.loginPage);
|
|
999
1001
|
if (res.subsystemExtend && Object.keys(res.subsystemExtend).length) {
|
|
1000
1002
|
this.icpInfo = res.subsystemExtend;
|
|
1001
1003
|
this.forgetUrl = res.subsystemExtend.look_pass_url;
|
|
1004
|
+
res.subsystemExtend.loginPage &&
|
|
1005
|
+
sessionStorage.setItem('loginPage', res.subsystemExtend.loginPage);
|
|
1002
1006
|
if (res.subsystemExtend.login_url) {
|
|
1003
1007
|
this.actionUrl = res.subsystemExtend.login_url;
|
|
1004
1008
|
}
|
|
@@ -1221,7 +1225,7 @@ export default {
|
|
|
1221
1225
|
.then((res) => {
|
|
1222
1226
|
this.submit = false;
|
|
1223
1227
|
if (res.rCode == 0) {
|
|
1224
|
-
|
|
1228
|
+
util.removeStorage('extUserBindHandleId');
|
|
1225
1229
|
this.handleRemember();
|
|
1226
1230
|
const results = res.results;
|
|
1227
1231
|
this.handleResults(results);
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
<script>
|
|
14
14
|
import { importScript } from 'runtime-import';
|
|
15
|
-
import util from 'eoss-ui/src/utils/util'
|
|
15
|
+
import util from 'eoss-ui/src/utils/util';
|
|
16
16
|
export default {
|
|
17
17
|
name: 'AsyncComponent',
|
|
18
18
|
inheritAttrs: true,
|
|
@@ -30,7 +30,7 @@ export default {
|
|
|
30
30
|
watch: {
|
|
31
31
|
componentRenderUrl: {
|
|
32
32
|
immediate: true,
|
|
33
|
-
handler: function(newVal) {
|
|
33
|
+
handler: function (newVal) {
|
|
34
34
|
this.handleImport(newVal);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -52,6 +52,7 @@ export default {
|
|
|
52
52
|
this.comp = catchComponent;
|
|
53
53
|
// 回传props内容
|
|
54
54
|
this.$emit('handleGetProps', this.comp.props);
|
|
55
|
+
this.$emit('handle-get-props', this.comp.props);
|
|
55
56
|
} else {
|
|
56
57
|
// 加载远端umd格式组件内容
|
|
57
58
|
const comp = await importScript(url);
|
|
@@ -64,6 +65,7 @@ export default {
|
|
|
64
65
|
util.win[url] = comp;
|
|
65
66
|
// 回传props内容
|
|
66
67
|
this.$emit('handleGetProps', this.comp.props);
|
|
68
|
+
this.$emit('handle-get-props', this.comp.props);
|
|
67
69
|
}
|
|
68
70
|
} else {
|
|
69
71
|
// 如果不是url则当作文本片段处理
|
|
@@ -267,6 +267,7 @@ import store from 'eoss-ui/src/utils/store';
|
|
|
267
267
|
import util from 'eoss-ui/src/utils/util';
|
|
268
268
|
const isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
269
269
|
const log = util.getParams('console');
|
|
270
|
+
const appCode = util.getParams('appCode');
|
|
270
271
|
export default {
|
|
271
272
|
name: 'EsMain',
|
|
272
273
|
inheritAttrs: false,
|
|
@@ -303,7 +304,12 @@ export default {
|
|
|
303
304
|
type: String,
|
|
304
305
|
default: ''
|
|
305
306
|
},
|
|
306
|
-
param:
|
|
307
|
+
param: {
|
|
308
|
+
type: Object,
|
|
309
|
+
default() {
|
|
310
|
+
return {};
|
|
311
|
+
}
|
|
312
|
+
},
|
|
307
313
|
header: {
|
|
308
314
|
type: Boolean,
|
|
309
315
|
default: true
|
|
@@ -408,7 +414,8 @@ export default {
|
|
|
408
414
|
loadHomePage: {
|
|
409
415
|
type: [Boolean, String],
|
|
410
416
|
default: true
|
|
411
|
-
}
|
|
417
|
+
},
|
|
418
|
+
appCode: String
|
|
412
419
|
},
|
|
413
420
|
computed: {
|
|
414
421
|
showHeader() {
|
|
@@ -535,6 +542,9 @@ export default {
|
|
|
535
542
|
},
|
|
536
543
|
isConsole() {
|
|
537
544
|
return log ? true : this.console;
|
|
545
|
+
},
|
|
546
|
+
menuCode() {
|
|
547
|
+
return appCode || this.appCode;
|
|
538
548
|
}
|
|
539
549
|
},
|
|
540
550
|
watch: {
|
|
@@ -937,8 +947,15 @@ export default {
|
|
|
937
947
|
this.color = unescape(results[i].color).toLowerCase();
|
|
938
948
|
}
|
|
939
949
|
if (i === 'subsystemExtend' && results[i].webPageWatermark) {
|
|
940
|
-
|
|
941
|
-
|
|
950
|
+
try {
|
|
951
|
+
util.win.top.webPageWatermark = results[i].webPageWatermark;
|
|
952
|
+
util.watermark(results[i].webPageWatermark);
|
|
953
|
+
} catch (error) {
|
|
954
|
+
util.win.postMessage(
|
|
955
|
+
{ type: 2, content: results[i].webPageWatermark },
|
|
956
|
+
'*'
|
|
957
|
+
);
|
|
958
|
+
}
|
|
942
959
|
}
|
|
943
960
|
|
|
944
961
|
if (i === 'subsystemExtend' && results[i].loginPage) {
|
|
@@ -1078,8 +1095,10 @@ export default {
|
|
|
1078
1095
|
},
|
|
1079
1096
|
//获取应用导航菜单
|
|
1080
1097
|
getMenu() {
|
|
1098
|
+
let param = this.menuCode ? { menuCode: this.menuCode } : {};
|
|
1099
|
+
let params = { ...this.param, ...param };
|
|
1081
1100
|
util
|
|
1082
|
-
.ajax({ url: this.action, params:
|
|
1101
|
+
.ajax({ url: this.action, params: params })
|
|
1083
1102
|
.then((res) => {
|
|
1084
1103
|
if (res.rCode === 0) {
|
|
1085
1104
|
if (res.results && res.results.length) {
|
|
@@ -2021,33 +2040,39 @@ export default {
|
|
|
2021
2040
|
]);
|
|
2022
2041
|
const loginPage =
|
|
2023
2042
|
util.getStorage('login') || util.getStorage('loginPage');
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
pathname
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2043
|
+
try {
|
|
2044
|
+
if (loginPage) {
|
|
2045
|
+
let src;
|
|
2046
|
+
if (!util.startWith(loginPage, ['http', '/'], true)) {
|
|
2047
|
+
let pathname = util.win.top.location.pathname;
|
|
2048
|
+
if (pathname !== '/') {
|
|
2049
|
+
pathname = pathname.split('/');
|
|
2050
|
+
pathname.splice(pathname.length - 1);
|
|
2051
|
+
pathname = pathname.join('/');
|
|
2052
|
+
src = pathname + '/' + loginPage.replace('./', '');
|
|
2053
|
+
} else {
|
|
2054
|
+
src = pathname + loginPage.replace('./', '');
|
|
2055
|
+
}
|
|
2033
2056
|
} else {
|
|
2034
|
-
src =
|
|
2057
|
+
src = loginPage;
|
|
2035
2058
|
}
|
|
2059
|
+
util.win.top.location.href = src;
|
|
2060
|
+
} else if (
|
|
2061
|
+
util.win.top.location.href.indexOf('main.html') > -1
|
|
2062
|
+
) {
|
|
2063
|
+
util.win.top.location.href = './login.html';
|
|
2036
2064
|
} else {
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
const len = util.win.top.location.href.indexOf(hash);
|
|
2046
|
-
util.win.top.location.href =
|
|
2047
|
-
util.win.location.href.slice(0, len) + '#/login';
|
|
2048
|
-
} else {
|
|
2049
|
-
util.win.top.location.href = '/login.html';
|
|
2065
|
+
const hash = util.win.top.location.hash;
|
|
2066
|
+
if (hash) {
|
|
2067
|
+
const len = util.win.top.location.href.indexOf(hash);
|
|
2068
|
+
util.win.top.location.href =
|
|
2069
|
+
util.win.location.href.slice(0, len) + '#/login';
|
|
2070
|
+
} else {
|
|
2071
|
+
util.win.top.location.href = '/login.html';
|
|
2072
|
+
}
|
|
2050
2073
|
}
|
|
2074
|
+
} catch (error) {
|
|
2075
|
+
util.win.postMessage({ type: 1 }, '*');
|
|
2051
2076
|
}
|
|
2052
2077
|
})
|
|
2053
2078
|
.catch((e) => {
|
|
@@ -2068,8 +2093,15 @@ export default {
|
|
|
2068
2093
|
src = pathname + url.replace('./', '/');
|
|
2069
2094
|
}
|
|
2070
2095
|
if (name) {
|
|
2071
|
-
let w =
|
|
2072
|
-
let h =
|
|
2096
|
+
let w = 0;
|
|
2097
|
+
let h = 0;
|
|
2098
|
+
try {
|
|
2099
|
+
w = width ? width : util.win.top.screen.availWidth - 10;
|
|
2100
|
+
h = height ? height : util.win.top.screen.availHeight - 60;
|
|
2101
|
+
} catch (error) {
|
|
2102
|
+
w = width ? width : util.win.screen.availWidth - 10;
|
|
2103
|
+
h = height ? height : util.win.screen.availHeight - 60;
|
|
2104
|
+
}
|
|
2073
2105
|
return util.win.open(
|
|
2074
2106
|
src,
|
|
2075
2107
|
name,
|
|
@@ -392,35 +392,39 @@ export default {
|
|
|
392
392
|
.then(() => {
|
|
393
393
|
const loginPage =
|
|
394
394
|
util.getStorage('login') || util.getStorage('loginPage');
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
pathname
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
395
|
+
try {
|
|
396
|
+
if (loginPage) {
|
|
397
|
+
let src;
|
|
398
|
+
if (!util.startWith(loginPage, ['http', '/'], true)) {
|
|
399
|
+
let pathname = util.win.top.location.pathname;
|
|
400
|
+
if (pathname !== '/') {
|
|
401
|
+
pathname = pathname.split('/');
|
|
402
|
+
pathname.splice(pathname.length - 1);
|
|
403
|
+
pathname = pathname.join('/');
|
|
404
|
+
src = pathname + '/' + loginPage.replace('./', '');
|
|
405
|
+
} else {
|
|
406
|
+
src = pathname + loginPage.replace('./', '');
|
|
407
|
+
}
|
|
404
408
|
} else {
|
|
405
|
-
src =
|
|
409
|
+
src = loginPage;
|
|
406
410
|
}
|
|
411
|
+
util.win.top.location.href = src;
|
|
412
|
+
} else if (
|
|
413
|
+
util.win.top.location.href.indexOf('main.html') > -1
|
|
414
|
+
) {
|
|
415
|
+
util.win.top.location.href = './login.html';
|
|
407
416
|
} else {
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
const hash = util.win.top.location.hash;
|
|
417
|
-
if (hash) {
|
|
418
|
-
const len = util.win.top.location.href.indexOf(hash);
|
|
419
|
-
util.win.top.location.href =
|
|
420
|
-
util.win.location.href.slice(0, len) + '#/login';
|
|
421
|
-
} else {
|
|
422
|
-
util.win.top.location.href = '/login.html';
|
|
417
|
+
const hash = util.win.top.location.hash;
|
|
418
|
+
if (hash) {
|
|
419
|
+
const len = util.win.top.location.href.indexOf(hash);
|
|
420
|
+
util.win.top.location.href =
|
|
421
|
+
util.win.location.href.slice(0, len) + '#/login';
|
|
422
|
+
} else {
|
|
423
|
+
util.win.top.location.href = '/login.html';
|
|
424
|
+
}
|
|
423
425
|
}
|
|
426
|
+
} catch (error) {
|
|
427
|
+
util.win.postMessage({ type: 1 }, '*');
|
|
424
428
|
}
|
|
425
429
|
})
|
|
426
430
|
.catch((e) => {});
|
|
@@ -171,7 +171,12 @@ export default {
|
|
|
171
171
|
type: 'success'
|
|
172
172
|
});
|
|
173
173
|
this.msgBox.handleClose();
|
|
174
|
-
|
|
174
|
+
try {
|
|
175
|
+
this.reload && util.win.top.location.reload();
|
|
176
|
+
} catch (error) {
|
|
177
|
+
this.reload && util.win.location.reload();
|
|
178
|
+
util.win.postMessage({ type: 3 }, '*');
|
|
179
|
+
}
|
|
175
180
|
} else {
|
|
176
181
|
this.$message({
|
|
177
182
|
message: msg,
|
|
@@ -249,7 +254,12 @@ export default {
|
|
|
249
254
|
type: 'success'
|
|
250
255
|
});
|
|
251
256
|
this.msgBox.handleClose();
|
|
252
|
-
|
|
257
|
+
try {
|
|
258
|
+
this.reload && util.win.top.location.reload();
|
|
259
|
+
} catch (error) {
|
|
260
|
+
this.reload && util.win.location.reload();
|
|
261
|
+
util.win.postMessage({ type: 3 }, '*');
|
|
262
|
+
}
|
|
253
263
|
} else {
|
|
254
264
|
this.scanCode = setTimeout(() => {
|
|
255
265
|
this.handleScanCodeRetrialAuth();
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
:disabled="typeof item == 'string' ? false : item.disabled"
|
|
17
17
|
:class="{ 'es-radio-delete': genre === 'delete' }"
|
|
18
18
|
:value-key="valueKey"
|
|
19
|
+
:tooltip="item[tipKey]"
|
|
19
20
|
>
|
|
20
21
|
{{ typeof item == 'string' ? item : getLabel(item) }}</el-radio
|
|
21
22
|
>
|
|
@@ -37,6 +38,7 @@
|
|
|
37
38
|
:disabled="typeof item == 'string' ? false : item.disabled"
|
|
38
39
|
:class="{ 'es-checkbox-delete': genre === 'delete' }"
|
|
39
40
|
:value-key="valueKey"
|
|
41
|
+
:tooltip="item[tipKey]"
|
|
40
42
|
>
|
|
41
43
|
{{ typeof item == 'string' ? item : getLabel(item) }}
|
|
42
44
|
<i v-show="genre === 'delete'" class="el-icon-circle-close"></i>
|
|
@@ -61,6 +63,10 @@ export default {
|
|
|
61
63
|
type: String,
|
|
62
64
|
default: 'showname'
|
|
63
65
|
},
|
|
66
|
+
tipKey: {
|
|
67
|
+
type: String,
|
|
68
|
+
default: 'pathname'
|
|
69
|
+
},
|
|
64
70
|
valueType: {
|
|
65
71
|
type: String,
|
|
66
72
|
default: 'object',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.es-data-table,.es-data-table-content .es-table .el-table__body-wrapper .el-table__body{position:relative}.es-data-table .es-toolbar+.es-data-table-content{padding:16px}.es-data-table-content{background-color:#fafafa}.es-data-table-content .es-table:not(.el-table--border){border:1px solid #e1e1e1;border-bottom:0}.es-data-table-content .es-table thead th,.es-data-table-content .es-table thead tr{background-color:#f8f8f8;border-color:#e1e1e1}.es-data-table-content .es-table th,.es-data-table-content .es-table thead tr{padding:6px 0;text-align:center}.es-data-table-content .es-table th .cell,.es-data-table-content .es-table thead tr .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td{padding:6px 0}.es-data-table-content .es-table td.es-table-handle-box .cell,.es-data-table-content .es-table td.is-center .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table .es-table-handle-box{text-align:center}.es-data-table-content .es-table+.es-table-page{margin-top:-1px}.es-data-table-content .es-table .el-table__fixed-right::before,.es-data-table-content .es-table .el-table__fixed::before{background-color:transparent}.es-data-table-content .es-table .cell{min-height:28px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.es-data-table-content .es-table .cell:not(.el-tooltip){display:-webkit-box;display:-ms-flexbox;display:flex}.es-data-table-content .es-table .cell.el-tooltip{line-height:28px}.es-data-table-content .es-table .el-form-item{margin-bottom:0;width:100%}.es-data-table-content .es-table .el-form-item .el-input:not(.el-input--prefix) .el-input__inner{padding:0 8px;margin-top:0}.es-data-table-content .es-table .el-form-item .el-input-number,.es-data-table-content .es-table .el-form-item .el-select{width:100%}.es-data-table-content .el-table__header,.es-data-table-content .el-table__header thead{color:#404040}.es-data-table-content .el-table__body tr.hover-row.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped>td,.es-data-table-content .el-table__body tr.hover-row>td,.es-data-table-content .el-table__body tr:hover>td{background-color:#e6f7ff}.es-data-table-content .el-table__body tr.current-row>td{background-color:#91d5ff}.es-data-table-content .es-table-page{height:46px;border:1px solid #e1e1e1;padding:8px 12px;background-color:#f8f8f8}.es-data-table-content .es-thead-border .el-table__header th:not(.gutter){border-right:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__header thead:not(.is-group) th:last-child{border-right:0;border-bottom:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:1px solid #e1e1e1}.es-data-table-content .es-thead-border .is-scrolling-right~.el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:0}.es-data-table-content .el-form-item__error{top:unset;bottom:0}.es-data-table-content .es-table:not(.el-table--border) .el-table--border td,.es-data-table-content .es-table:not(.el-table--border) .el-table--border th,.es-data-table-content .es-table:not(.el-table--border) .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:0}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td{border-right:1px solid #e1e1e1}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td:last-child{border-right:0}.el-table--border::after,.el-table--group::after,.el-table::before{z-index:5}.sizer-btn-box{text-align:right;margin-top:7px}
|
|
1
|
+
@charset "UTF-8";.es-data-table,.es-data-table-content .es-table .el-table__body-wrapper .el-table__body{position:relative}.es-data-table .es-toolbar+.es-data-table-content{padding:16px}.es-data-table-content{background-color:#fafafa}.es-data-table-content .es-table:not(.el-table--border){border:1px solid #e1e1e1;border-bottom:0}.es-data-table-content .es-table thead th,.es-data-table-content .es-table thead tr{background-color:#f8f8f8;border-color:#e1e1e1}.es-data-table-content .es-table th,.es-data-table-content .es-table thead tr{padding:6px 0;text-align:center}.es-data-table-content .es-table th .cell,.es-data-table-content .es-table thead tr .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td{padding:6px 0}.es-data-table-content .es-table td.es-table-handle-box .cell,.es-data-table-content .es-table td.is-center .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table .es-table-handle-box{text-align:center}.es-data-table-content .es-table+.es-table-page{margin-top:-1px}.es-data-table-content .es-table .el-table__fixed-right::before,.es-data-table-content .es-table .el-table__fixed::before{background-color:transparent}.es-data-table-content .es-table .cell{min-height:28px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.es-data-table-content .es-table .cell:not(.el-tooltip){display:-webkit-box;display:-ms-flexbox;display:flex}.es-data-table-content .es-table .cell.el-tooltip{line-height:28px}.es-data-table-content .es-table .el-form-item{margin-bottom:0;width:100%}.es-data-table-content .es-table .el-form-item .el-input:not(.el-input--prefix) .el-input__inner{padding:0 8px;margin-top:0}.es-data-table-content .es-table .el-form-item .el-input-number,.es-data-table-content .es-table .el-form-item .el-select{width:100%}.es-data-table-content .el-table__header,.es-data-table-content .el-table__header thead{color:#404040}.es-data-table-content .el-table__body tr.hover-row.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped>td,.es-data-table-content .el-table__body tr.hover-row>td,.es-data-table-content .el-table__body tr:hover>td{background-color:#e6f7ff}.es-data-table-content .el-table__body tr.current-row>td{background-color:#91d5ff}.es-data-table-content .es-table-page{height:46px;border:1px solid #e1e1e1;padding:8px 12px;background-color:#f8f8f8}.es-data-table-content .es-table-page.es-loading-page{line-height:30px;font-size:14px;font-weight:400;color:rgba(0,0,0,.75)}.es-data-table-content .es-thead-border .el-table__header th:not(.gutter){border-right:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__header thead:not(.is-group) th:last-child{border-right:0;border-bottom:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:1px solid #e1e1e1}.es-data-table-content .es-thead-border .is-scrolling-right~.el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:0}.es-data-table-content .el-form-item__error{top:unset;bottom:0}.es-data-table-content .es-table:not(.el-table--border) .el-table--border td,.es-data-table-content .es-table:not(.el-table--border) .el-table--border th,.es-data-table-content .es-table:not(.el-table--border) .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:0}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td{border-right:1px solid #e1e1e1}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td:last-child{border-right:0}.el-table--border::after,.el-table--group::after,.el-table::before{z-index:5}.sizer-btn-box{text-align:right;margin-top:7px}
|