sh-view 1.7.5 → 2.0.0
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/.eslintrc.js +20 -21
- package/package.json +10 -10
- package/packages/assets/css/animated.scss +167 -2
- package/packages/assets/css/loader.scss +42 -42
- package/packages/assets/css/main.scss +41 -21
- package/packages/assets/css/theme.scss +83 -44
- package/packages/components/global-components/sh-alert/index.vue +173 -0
- package/packages/components/global-components/sh-badge/index.vue +227 -0
- package/packages/components/global-components/sh-card/index.vue +140 -122
- package/packages/components/global-components/sh-code-editor/index.vue +260 -260
- package/packages/components/global-components/sh-col/css/index.scss +76 -0
- package/packages/components/global-components/sh-col/index.vue +83 -0
- package/packages/components/global-components/sh-corner/index.vue +1 -9
- package/packages/components/global-components/sh-count-to/index.vue +102 -46
- package/packages/components/global-components/sh-date/index.vue +40 -0
- package/packages/components/global-components/sh-drawer/index.vue +518 -0
- package/packages/components/global-components/sh-drawer/scrollbar.js +76 -0
- package/packages/components/global-components/sh-empty/index.vue +43 -43
- package/packages/components/global-components/{sh-vxe-form → sh-form}/css/index.scss +6 -6
- package/packages/components/global-components/{sh-vxe-form → sh-form}/index.vue +114 -115
- package/packages/components/global-components/sh-form/js/methods.js +146 -0
- package/packages/components/global-components/{sh-vxe-form → sh-form}/mixin/defaultData.js +32 -33
- package/packages/components/global-components/sh-header/index.vue +293 -269
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.svg +870 -0
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.ttf +0 -0
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.woff +0 -0
- package/packages/components/global-components/sh-icon/css/default/fonts/ionicons.woff2 +0 -0
- package/packages/components/global-components/sh-icon/css/default/icons.scss +2583 -0
- package/packages/components/global-components/sh-icon/css/default/index.scss +27 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.js +1 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.json +247 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.ttf +0 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.woff +0 -0
- package/packages/components/global-components/sh-icon/css/font/fonts/iconfont.woff2 +0 -0
- package/packages/components/global-components/sh-icon/css/font/icons.scss +135 -0
- package/packages/components/global-components/sh-icon/css/font/index.scss +16 -0
- package/packages/components/global-components/sh-icon/icon-default.vue +32 -0
- package/packages/components/global-components/sh-icon/{icons.vue → icon-font.vue} +32 -32
- package/packages/components/global-components/sh-icon/index.vue +28 -27
- package/packages/components/global-components/sh-image/index.vue +123 -0
- package/packages/components/global-components/sh-list/index.vue +141 -0
- package/packages/components/global-components/sh-loading/index.vue +49 -42
- package/packages/components/global-components/{sh-vxe-modal → sh-modal}/index.vue +209 -209
- package/packages/components/global-components/sh-noticebar/index.vue +201 -201
- package/packages/components/global-components/sh-poptip/index.vue +479 -0
- package/packages/components/global-components/sh-poptip/popper.js +115 -0
- package/packages/components/global-components/sh-progress/index.vue +290 -0
- package/packages/components/global-components/sh-pull-refresh/index.vue +290 -290
- package/packages/components/global-components/{sh-vxe-query → sh-query}/index.vue +317 -286
- package/packages/components/global-components/sh-result/index.vue +110 -88
- package/packages/components/global-components/sh-row/css/index.scss +21 -0
- package/packages/components/global-components/sh-row/index.vue +63 -0
- package/packages/components/global-components/sh-split/components/trigger.vue +33 -0
- package/packages/components/global-components/sh-split/index.vue +334 -0
- package/packages/components/global-components/sh-table/components/importModal.vue +351 -0
- package/packages/components/global-components/{sh-vxe-table → sh-table}/css/index.scss +4 -22
- package/packages/components/global-components/{sh-vxe-table → sh-table}/index.vue +329 -351
- package/packages/components/global-components/{sh-vxe-table → sh-table}/js/methods.js +91 -153
- package/packages/components/global-components/{sh-vxe-table → sh-table}/js/props.js +304 -313
- package/packages/components/global-components/{sh-vxe-table → sh-table}/mixin/defaultData.js +94 -116
- package/packages/components/global-components/sh-tabs/index.vue +315 -0
- package/packages/components/global-components/sh-tag/index.vue +163 -0
- package/packages/components/global-components/{sh-vxe-toolbar → sh-toolbar}/index.vue +177 -172
- package/packages/components/global-components/sh-tree/components/table-tree.vue +280 -0
- package/packages/components/global-components/sh-tree/css/index.scss +54 -0
- package/packages/components/global-components/sh-tree/index.vue +195 -0
- package/packages/components/global-components/sh-tree/mixin/treeProps.js +124 -0
- package/packages/components/global-components/sh-upload/index.vue +278 -418
- package/packages/components/global-components/sh-upload/js/ajax.js +80 -0
- package/packages/components/global-components/sh-upload/js/mixin.js +257 -0
- package/packages/components/global-components/sh-water-fall/index.vue +87 -87
- package/packages/components/index.js +85 -59
- package/packages/components/other-components/sh-cron-modal/css/index.scss +2 -2
- package/packages/components/other-components/sh-menu-card/index.vue +224 -224
- package/packages/css/index.js +4 -6
- package/packages/directive/index.js +19 -19
- package/packages/directive/module/click-out.js +14 -0
- package/packages/directive/module/draggable.js +42 -42
- package/packages/directive/module/line-clamp.js +22 -0
- package/packages/directive/module/prevent-click.js +18 -0
- package/packages/directive/module/resize.js +19 -0
- package/packages/directive/module/ripple.js +166 -0
- package/packages/index.js +39 -40
- package/packages/utils/transfer-queue.js +12 -0
- package/packages/vxeTable/css/index.scss +12 -98
- package/packages/vxeTable/css/variable.scss +7 -265
- package/packages/vxeTable/index.js +184 -184
- package/packages/vxeTable/plugins/export.js +450 -0
- package/packages/vxeTable/render/cell/vxe-render-checkgroup.vue +36 -36
- package/packages/vxeTable/render/cell/vxe-render-goption.vue +94 -93
- package/packages/vxeTable/render/cell/vxe-render-img.vue +21 -28
- package/packages/vxeTable/render/cell/vxe-render-input.vue +51 -51
- package/packages/vxeTable/render/cell/vxe-render-progress.vue +19 -19
- package/packages/vxeTable/render/cell/vxe-render-radiogroup.vue +36 -36
- package/packages/vxeTable/render/cell/vxe-render-select.vue +36 -36
- package/packages/vxeTable/render/cell/vxe-render-tree.vue +59 -59
- package/packages/vxeTable/render/globalRenders.jsx +498 -491
- package/packages/assets/icons/demo.css +0 -539
- package/packages/assets/icons/iconfont.css +0 -415
- package/packages/assets/icons/iconfont.js +0 -1
- package/packages/assets/icons/iconfont.json +0 -709
- package/packages/assets/icons/iconfont.ttf +0 -0
- package/packages/assets/icons/iconfont.woff +0 -0
- package/packages/assets/icons/iconfont.woff2 +0 -0
- package/packages/assets/img/image-error.png +0 -0
- package/packages/assets/img/square-image.png +0 -0
- package/packages/components/global-components/sh-iv-form/components/iv-group-item.vue +0 -57
- package/packages/components/global-components/sh-iv-form/components/iv-single-item.vue +0 -76
- package/packages/components/global-components/sh-iv-form/index.vue +0 -255
- package/packages/components/global-components/sh-layout/index.vue +0 -142
- package/packages/components/global-components/sh-upload/components/u-img.vue +0 -63
- package/packages/components/global-components/sh-upload/components/u-list.vue +0 -100
- package/packages/components/global-components/sh-vxe-form/js/methods.js +0 -170
- package/packages/components/global-components/sh-vxe-list/index.vue +0 -129
- package/packages/components/global-components/sh-vxe-table/components/importModal.vue +0 -377
- package/packages/components/global-components/sh-vxe-tree/components/table-tree.vue +0 -233
- package/packages/components/global-components/sh-vxe-tree/css/index.scss +0 -20
- package/packages/components/global-components/sh-vxe-tree/index.vue +0 -85
- package/packages/components/global-components/sh-vxe-tree/js/props.js +0 -120
- package/packages/components/global-components/sh-vxe-tree/js/treeMethods.js +0 -169
- package/packages/components/global-components/sh-vxe-tree/mixin/defaultData.js +0 -54
- package/packages/components/global-components/sh-vxe-tree/vxe-direct-tree.vue +0 -203
- package/packages/components/global-components/sh-vxe-tree/vxe-select-tree.vue +0 -291
- package/packages/components/other-components/sh-markdown/tinymce/langs/ar.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/az.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/bg_BG.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/bn_BD.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ca.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/cs.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/cy.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/da.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/de.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/dv.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/el.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/eo.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/es.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/es_MX.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/et.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/eu.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/fa.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/fi.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/fr_FR.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ga.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/gl.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/he_IL.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hi.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hr.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hu_HU.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/hy.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/id.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/is_IS.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/it.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ja.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/kab.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/kk.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ko_KR.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ku.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/lt.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/lv.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/nb_NO.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ne.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/nl.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/nl_BE.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/oc.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/pl.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/pt_BR.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ro.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ru.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sk.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sl_SI.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sq.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sr.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/sv_SE.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ta.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/tg.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/th_TH.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/tr.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/ug.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/uk.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/langs/vi.js +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/dark/content.css +0 -72
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/dark/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/default/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/document/content.css +0 -72
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/document/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/writer/content.css +0 -68
- package/packages/components/other-components/sh-markdown/tinymce/skins/content/writer/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.css +0 -714
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.inline.css +0 -726
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.inline.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.mobile.css +0 -29
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/content.mobile.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.css +0 -3047
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.mobile.css +0 -673
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.mobile.min.css +0 -7
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +0 -37
- package/packages/components/other-components/sh-markdown/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +0 -7
- package/packages/directive/directives.js +0 -27
- package/packages/iview/css/index.scss +0 -32
- package/packages/iview/index.js +0 -25
- /package/packages/components/global-components/{sh-vxe-form → sh-form}/components/form-item.vue +0 -0
- /package/packages/components/global-components/{sh-vxe-form → sh-form}/js/props.js +0 -0
- /package/packages/components/global-components/{sh-vxe-table → sh-table}/js/excel_to_json.js +0 -0
package/packages/components/global-components/{sh-vxe-table → sh-table}/mixin/defaultData.js
RENAMED
|
@@ -1,116 +1,94 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
data() {
|
|
3
|
-
return {
|
|
4
|
-
// 全局配置
|
|
5
|
-
globalConfigDefault: {
|
|
6
|
-
tableName: '',
|
|
7
|
-
title: false, // 是否显示 tableName
|
|
8
|
-
checkbox: true, // 是否展示复选框
|
|
9
|
-
radio: false, // 是否展示单选框
|
|
10
|
-
seq: true, // 是否展示序号列
|
|
11
|
-
ghost: false, // 是否开启透明
|
|
12
|
-
search: false, // 表格是否开启查询,默认不开启,根据columns配置字段 search 为 true
|
|
13
|
-
globalFilter: false, // 表格是否开启全局过滤
|
|
14
|
-
zoom: false, // 表格是否开启缩放
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
},
|
|
96
|
-
printConfigDefault: {
|
|
97
|
-
mode: 'current',
|
|
98
|
-
original: false,
|
|
99
|
-
message: true,
|
|
100
|
-
isHeader: true,
|
|
101
|
-
isColgroup: true,
|
|
102
|
-
isFooter: false,
|
|
103
|
-
isMerge: false,
|
|
104
|
-
isAllExpand: true,
|
|
105
|
-
download: true,
|
|
106
|
-
useStyle: false,
|
|
107
|
-
columnFilterMethod: this.columnDefaultFilterMethod,
|
|
108
|
-
beforePrintMethod: obj => this.getExportPrintDataByOption(obj, 'print')
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
computed: {},
|
|
113
|
-
methods: {},
|
|
114
|
-
created() {},
|
|
115
|
-
activated() {}
|
|
116
|
-
}
|
|
1
|
+
export default {
|
|
2
|
+
data() {
|
|
3
|
+
return {
|
|
4
|
+
// 全局配置
|
|
5
|
+
globalConfigDefault: {
|
|
6
|
+
tableName: '',
|
|
7
|
+
title: false, // 是否显示 tableName
|
|
8
|
+
checkbox: true, // 是否展示复选框
|
|
9
|
+
radio: false, // 是否展示单选框
|
|
10
|
+
seq: true, // 是否展示序号列
|
|
11
|
+
ghost: false, // 是否开启透明
|
|
12
|
+
search: false, // 表格是否开启查询,默认不开启,根据columns配置字段 search 为 true
|
|
13
|
+
globalFilter: false, // 表格是否开启全局过滤
|
|
14
|
+
zoom: false, // 表格是否开启缩放
|
|
15
|
+
formToggleNum: 4,
|
|
16
|
+
formToggle: true
|
|
17
|
+
},
|
|
18
|
+
// 表头默认值
|
|
19
|
+
columnObjDefault: {
|
|
20
|
+
minWidth: 120,
|
|
21
|
+
sortable: true,
|
|
22
|
+
filter: true
|
|
23
|
+
},
|
|
24
|
+
// 表头默认列
|
|
25
|
+
columnsConfigDefault: [
|
|
26
|
+
{
|
|
27
|
+
title: '',
|
|
28
|
+
type: 'checkbox',
|
|
29
|
+
width: 60,
|
|
30
|
+
align: 'center',
|
|
31
|
+
fixed: 'left',
|
|
32
|
+
sortable: false,
|
|
33
|
+
resizable: false,
|
|
34
|
+
className: 'table-row-checkbox'
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
title: '单选',
|
|
38
|
+
type: 'radio',
|
|
39
|
+
width: 60,
|
|
40
|
+
align: 'center',
|
|
41
|
+
fixed: 'left',
|
|
42
|
+
sortable: false,
|
|
43
|
+
resizable: false,
|
|
44
|
+
className: 'table-row-radio'
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
title: '序号',
|
|
48
|
+
type: 'seq',
|
|
49
|
+
width: 70,
|
|
50
|
+
align: 'center',
|
|
51
|
+
fixed: 'left',
|
|
52
|
+
sortable: false,
|
|
53
|
+
resizable: false,
|
|
54
|
+
className: 'table-row-seq'
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
exportConfigDefault: {
|
|
58
|
+
type: 'xlsx',
|
|
59
|
+
types: ['xlsx', 'csv', 'pdf', 'html', 'xml', 'txt'],
|
|
60
|
+
mode: 'current',
|
|
61
|
+
original: false,
|
|
62
|
+
message: true,
|
|
63
|
+
isHeader: true,
|
|
64
|
+
isColgroup: true,
|
|
65
|
+
isFooter: false,
|
|
66
|
+
isMerge: false,
|
|
67
|
+
isAllExpand: true,
|
|
68
|
+
download: true,
|
|
69
|
+
useStyle: false,
|
|
70
|
+
columnFilterMethod: this.columnDefaultFilterMethod,
|
|
71
|
+
sheetMethod: this.exportSheetMethod,
|
|
72
|
+
beforeExportMethod: obj => this.getExportPrintDataByOption(obj, 'export')
|
|
73
|
+
},
|
|
74
|
+
printConfigDefault: {
|
|
75
|
+
mode: 'current',
|
|
76
|
+
original: false,
|
|
77
|
+
message: true,
|
|
78
|
+
isHeader: true,
|
|
79
|
+
isColgroup: true,
|
|
80
|
+
isFooter: false,
|
|
81
|
+
isMerge: false,
|
|
82
|
+
isAllExpand: true,
|
|
83
|
+
download: true,
|
|
84
|
+
useStyle: false,
|
|
85
|
+
columnFilterMethod: this.columnDefaultFilterMethod,
|
|
86
|
+
beforePrintMethod: obj => this.getExportPrintDataByOption(obj, 'print')
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
computed: {},
|
|
91
|
+
methods: {},
|
|
92
|
+
created() {},
|
|
93
|
+
activated() {}
|
|
94
|
+
}
|
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sh-tabs" :class="{ 'sh-tabs-card': type === 'card' }">
|
|
3
|
+
<div class="sh-tabs-nav">
|
|
4
|
+
<div v-if="$slots.left" class="sh-tabs-nav-slot sh-tabs-nav-left"><slot name="left"></slot></div>
|
|
5
|
+
<div ref="navWrap" v-resize="handleResize" class="sh-tabs-nav-wrap" :class="{ 'sh-tabs-nav-scrollable': scrollable }">
|
|
6
|
+
<span v-if="scrollable" class="sh-tabs-nav-prev" :class="{ 'sh-tabs-nav-btn-disabled': scrollable }" @click="scrollPrev"><sh-icon type="ios-arrow-back"></sh-icon></span>
|
|
7
|
+
<div ref="navScroll" class="sh-tabs-nav-scroll" @DOMMouseScroll="handleScroll" @mousewheel="handleScroll">
|
|
8
|
+
<div ref="nav" v-resize="handleResize" class="sh-tabs-nav-inner" :style="navStyle">
|
|
9
|
+
<template v-for="(tab, tabIndex) in tabList" :key="tabIndex">
|
|
10
|
+
<div class="sh-tab-item" :class="{ 'sh-tab-item-disabled': tab.disabled, 'sh-tab-item-active': tab.value === activeKey }" @click="handleChange(tab)">
|
|
11
|
+
<slot name="tabItem" v-bind="{ ...tab, isActive: tab.value === activeKey }">
|
|
12
|
+
<div v-if="tab.icon" class="sh-tab-icon"><sh-icon :type="tab.icon"></sh-icon></div>
|
|
13
|
+
<div class="sh-tab-label">{{ tab[labelField] }}</div>
|
|
14
|
+
<div v-if="closable && !tab.disabled" class="sh-tab-close" @click.stop="handleClose(tab)"><sh-icon type="ios-close"></sh-icon></div>
|
|
15
|
+
</slot>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
<span v-if="scrollable" class="sh-tabs-nav-next" :class="{ 'sh-tabs-nav-btn-disabled': scrollable }" @click="scrollNext"><sh-icon type="ios-arrow-forward"></sh-icon></span>
|
|
21
|
+
</div>
|
|
22
|
+
<div v-if="$slots.right" class="sh-tabs-nav-slot sh-tabs-nav-right"><slot name="right"></slot></div>
|
|
23
|
+
</div>
|
|
24
|
+
<div v-if="isContent" class="sh-tabs-content">
|
|
25
|
+
<div ref="contentWrap" class="sh-tabs-content-wrap" :class="{ 'sh-tabs-content-animated': animated }" :style="contentStyle">
|
|
26
|
+
<template v-for="(tab, tabIndex) in tabList" :key="tabIndex">
|
|
27
|
+
<div class="sh-tabs-content-item">
|
|
28
|
+
<slot :name="tab.value" v-bind="tab">{{ tab.label }}</slot>
|
|
29
|
+
</div>
|
|
30
|
+
</template>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</template>
|
|
35
|
+
|
|
36
|
+
<script>
|
|
37
|
+
export default {
|
|
38
|
+
name: 'ShTabs',
|
|
39
|
+
props: {
|
|
40
|
+
modelValue: {
|
|
41
|
+
type: [String, Number]
|
|
42
|
+
},
|
|
43
|
+
options: {
|
|
44
|
+
type: Array,
|
|
45
|
+
default() {
|
|
46
|
+
return []
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
labelField: {
|
|
50
|
+
type: String,
|
|
51
|
+
default: 'label'
|
|
52
|
+
},
|
|
53
|
+
type: {
|
|
54
|
+
type: String,
|
|
55
|
+
default: 'line' // 'line', 'card'
|
|
56
|
+
},
|
|
57
|
+
size: {
|
|
58
|
+
type: String,
|
|
59
|
+
default: 'default' // 'small', 'default'
|
|
60
|
+
},
|
|
61
|
+
animated: {
|
|
62
|
+
type: Boolean,
|
|
63
|
+
default: true
|
|
64
|
+
},
|
|
65
|
+
closable: {
|
|
66
|
+
type: Boolean,
|
|
67
|
+
default: false
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
emits: ['update:modelValue', 'close', 'change'],
|
|
71
|
+
data() {
|
|
72
|
+
return {
|
|
73
|
+
activeKey: this.modelValue,
|
|
74
|
+
scrollable: false,
|
|
75
|
+
closedList: [],
|
|
76
|
+
navStyle: { transform: '' }
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
computed: {
|
|
80
|
+
isContent() {
|
|
81
|
+
return this.activeKey && this.options.map(item => item.value).includes(this.activeKey)
|
|
82
|
+
},
|
|
83
|
+
tabList() {
|
|
84
|
+
return this.options.filter(tab => !this.closedList.includes(tab.value)) || []
|
|
85
|
+
},
|
|
86
|
+
contentStyle() {
|
|
87
|
+
const x = this.tabList.findIndex(tab => tab.value === this.activeKey)
|
|
88
|
+
const p = x === 0 ? '0%' : `-${x}00%`
|
|
89
|
+
let style = {}
|
|
90
|
+
if (x > -1) {
|
|
91
|
+
style = {
|
|
92
|
+
transform: `translateX(${p}) translateZ(0px)`
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
return style
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
watch: {
|
|
99
|
+
modelValue(val) {
|
|
100
|
+
this.activeKey = val
|
|
101
|
+
},
|
|
102
|
+
activeKey(val) {
|
|
103
|
+
this.$emit('update:modelValue', val)
|
|
104
|
+
},
|
|
105
|
+
options() {
|
|
106
|
+
this.closedList = []
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
mounted() {},
|
|
110
|
+
beforeUnmount() {},
|
|
111
|
+
methods: {
|
|
112
|
+
scrollPrev() {
|
|
113
|
+
const containerWidth = this.$refs.navScroll.offsetWidth
|
|
114
|
+
const currentOffset = this.getCurrentScrollOffset()
|
|
115
|
+
if (!currentOffset) return
|
|
116
|
+
let newOffset = currentOffset > containerWidth ? currentOffset - containerWidth : 0
|
|
117
|
+
this.setOffset(newOffset)
|
|
118
|
+
},
|
|
119
|
+
scrollNext() {
|
|
120
|
+
const navWidth = this.$refs.nav.offsetWidth
|
|
121
|
+
const containerWidth = this.$refs.navScroll.offsetWidth
|
|
122
|
+
const currentOffset = this.getCurrentScrollOffset()
|
|
123
|
+
if (navWidth - currentOffset <= containerWidth) return
|
|
124
|
+
let newOffset = navWidth - currentOffset > containerWidth * 2 ? currentOffset + containerWidth : navWidth - containerWidth
|
|
125
|
+
this.setOffset(newOffset)
|
|
126
|
+
},
|
|
127
|
+
setOffset(value) {
|
|
128
|
+
this.navStyle.transform = `translateX(-${value}px)`
|
|
129
|
+
},
|
|
130
|
+
getCurrentScrollOffset() {
|
|
131
|
+
const { navStyle } = this
|
|
132
|
+
return navStyle.transform ? Number(navStyle.transform.match(/translateX\(-(\d+(\.\d+)*)px\)/)[1]) : 0
|
|
133
|
+
},
|
|
134
|
+
handleResize(e) {
|
|
135
|
+
const navWidth = this.$refs.nav.offsetWidth
|
|
136
|
+
const containerWidth = this.$refs.navScroll.offsetWidth
|
|
137
|
+
const currentOffset = this.getCurrentScrollOffset()
|
|
138
|
+
if (containerWidth < navWidth) {
|
|
139
|
+
this.scrollable = true
|
|
140
|
+
if (navWidth - currentOffset < containerWidth) {
|
|
141
|
+
this.setOffset(navWidth - containerWidth)
|
|
142
|
+
}
|
|
143
|
+
} else {
|
|
144
|
+
this.scrollable = false
|
|
145
|
+
if (currentOffset > 0) {
|
|
146
|
+
this.setOffset(0)
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
handleScroll(e) {
|
|
151
|
+
e.preventDefault()
|
|
152
|
+
e.stopPropagation()
|
|
153
|
+
let delta = 0
|
|
154
|
+
if (e.type === 'DOMMouseScroll' || e.type === 'mousewheel') {
|
|
155
|
+
delta = e.wheelDelta ? e.wheelDelta : -(e.detail || 0) * 40
|
|
156
|
+
}
|
|
157
|
+
if (delta > 0) {
|
|
158
|
+
this.scrollPrev()
|
|
159
|
+
} else {
|
|
160
|
+
this.scrollNext()
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
handleChange(tab) {
|
|
164
|
+
if (!tab || tab.disabled) return
|
|
165
|
+
this.activeKey = tab.value
|
|
166
|
+
this.$emit('change', tab)
|
|
167
|
+
if (!this.scrollable) return
|
|
168
|
+
const navWidth = this.$refs.nav.offsetWidth
|
|
169
|
+
const containerWidth = this.$refs.navScroll.offsetWidth
|
|
170
|
+
const prevTabs = this.$refs.nav.querySelectorAll('.sh-tab-item')
|
|
171
|
+
const tabIndex = this.tabList.findIndex(tb => tb.value === tab.value)
|
|
172
|
+
let barOffset = 0
|
|
173
|
+
if (tabIndex > 0) {
|
|
174
|
+
const gutter = 5
|
|
175
|
+
let offset = 0
|
|
176
|
+
for (let i = 0; i < tabIndex; i++) {
|
|
177
|
+
offset += parseFloat(prevTabs[i].offsetWidth) + gutter
|
|
178
|
+
}
|
|
179
|
+
barOffset = offset
|
|
180
|
+
}
|
|
181
|
+
let navOffset = navWidth - barOffset < containerWidth ? navWidth - containerWidth : barOffset
|
|
182
|
+
this.setOffset(navOffset)
|
|
183
|
+
},
|
|
184
|
+
handleClose(tab) {
|
|
185
|
+
this.closedList.push(tab.value)
|
|
186
|
+
if (tab.value === this.activeKey) {
|
|
187
|
+
let isNotDisabledList = this.tabList.filter(tab => !tab.disabled)
|
|
188
|
+
this.activeKey = isNotDisabledList.length ? isNotDisabledList[0].value : ''
|
|
189
|
+
}
|
|
190
|
+
this.$emit('close', tab)
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
</script>
|
|
195
|
+
|
|
196
|
+
<style scoped lang="scss">
|
|
197
|
+
.sh-tabs {
|
|
198
|
+
width: 100%;
|
|
199
|
+
display: block;
|
|
200
|
+
position: relative;
|
|
201
|
+
.sh-tab-close {
|
|
202
|
+
display: inline-flex;
|
|
203
|
+
align-items: center;
|
|
204
|
+
padding: 0 1px;
|
|
205
|
+
&:hover {
|
|
206
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
&-nav {
|
|
210
|
+
display: flex;
|
|
211
|
+
&-slot {
|
|
212
|
+
display: inline-flex;
|
|
213
|
+
align-items: center;
|
|
214
|
+
}
|
|
215
|
+
&-wrap {
|
|
216
|
+
flex: 1;
|
|
217
|
+
display: flex;
|
|
218
|
+
align-items: stretch;
|
|
219
|
+
overflow: hidden;
|
|
220
|
+
}
|
|
221
|
+
&-prev,
|
|
222
|
+
&-next {
|
|
223
|
+
width: 30px;
|
|
224
|
+
height: 100%;
|
|
225
|
+
display: inline-flex;
|
|
226
|
+
align-items: center;
|
|
227
|
+
justify-content: center;
|
|
228
|
+
box-shadow: 0 1px 8px #999;
|
|
229
|
+
position: relative;
|
|
230
|
+
z-index: 10;
|
|
231
|
+
&:hover {
|
|
232
|
+
color: var(--vxe-primary-color);
|
|
233
|
+
}
|
|
234
|
+
&.sh-tabs-nav-btn-disabled {
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
&-scroll {
|
|
238
|
+
flex: 1;
|
|
239
|
+
overflow: hidden;
|
|
240
|
+
}
|
|
241
|
+
&-inner {
|
|
242
|
+
display: block;
|
|
243
|
+
width: fit-content;
|
|
244
|
+
white-space: nowrap;
|
|
245
|
+
transition: transform 0.2s ease-in-out;
|
|
246
|
+
.sh-tab-item {
|
|
247
|
+
display: inline-flex;
|
|
248
|
+
align-items: stretch;
|
|
249
|
+
cursor: pointer;
|
|
250
|
+
line-height: 20px;
|
|
251
|
+
box-sizing: border-box;
|
|
252
|
+
border-bottom: 2px solid transparent;
|
|
253
|
+
&:hover {
|
|
254
|
+
color: var(--vxe-primary-color);
|
|
255
|
+
}
|
|
256
|
+
& + .sh-tab-item {
|
|
257
|
+
margin-left: 5px;
|
|
258
|
+
}
|
|
259
|
+
&.sh-tab-item-active {
|
|
260
|
+
border-bottom: 2px solid var(--vxe-primary-darken-color);
|
|
261
|
+
color: var(--vxe-primary-color) !important;
|
|
262
|
+
}
|
|
263
|
+
&.sh-tab-item-disabled {
|
|
264
|
+
cursor: not-allowed;
|
|
265
|
+
color: var(--vxe-input-disabled-color) !important;
|
|
266
|
+
}
|
|
267
|
+
.sh-tab-icon {
|
|
268
|
+
display: inline-flex;
|
|
269
|
+
align-items: center;
|
|
270
|
+
padding: 0 2px 0 5px;
|
|
271
|
+
}
|
|
272
|
+
.sh-tab-label {
|
|
273
|
+
flex: 1;
|
|
274
|
+
padding: 5px;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
&.sh-tabs-card {
|
|
280
|
+
.sh-tabs-nav-prev,
|
|
281
|
+
.sh-tabs-nav-next {
|
|
282
|
+
border: 1px solid var(--vxe-table-border-color);
|
|
283
|
+
}
|
|
284
|
+
.sh-tabs-nav-inner {
|
|
285
|
+
.sh-tab-item {
|
|
286
|
+
border: 1px solid var(--vxe-table-border-color);
|
|
287
|
+
}
|
|
288
|
+
.sh-tab-item-active {
|
|
289
|
+
background-color: var(--vxe-primary-color);
|
|
290
|
+
border-color: var(--vxe-primary-darken-color);
|
|
291
|
+
color: #fff !important;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
&-content {
|
|
296
|
+
display: flex;
|
|
297
|
+
overflow-x: hidden;
|
|
298
|
+
width: 100%;
|
|
299
|
+
&-wrap {
|
|
300
|
+
flex: 1;
|
|
301
|
+
width: fit-content;
|
|
302
|
+
white-space: nowrap;
|
|
303
|
+
&.sh-tabs-content-animated {
|
|
304
|
+
transition: transform 0.2s ease-in-out;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
&-item {
|
|
308
|
+
display: inline-block;
|
|
309
|
+
min-width: 100%;
|
|
310
|
+
vertical-align: top;
|
|
311
|
+
position: relative;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
</style>
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="sh-tag" :class="classes" :style="[borderStyle, backgroundStyle]" @click.stop="check">
|
|
3
|
+
<span v-if="type === 'dot'" class="sh-tag-dot" :style="[backgroundStyle]"></span>
|
|
4
|
+
<span class="sh-tag-text" :class="textClasses" :style="[fontStyle]"><slot></slot></span>
|
|
5
|
+
<a v-if="closable" class="sh-tag-close" :style="[borderStyle]" @click="close">
|
|
6
|
+
<slot name="close"><sh-icon type="ios-close"></sh-icon></slot>
|
|
7
|
+
</a>
|
|
8
|
+
</div>
|
|
9
|
+
</template>
|
|
10
|
+
|
|
11
|
+
<script>
|
|
12
|
+
const colorMap = {
|
|
13
|
+
default: 'var(-vxe-table-header-background-color)',
|
|
14
|
+
primary: 'var(--vxe-primary-color)',
|
|
15
|
+
success: 'var(--vxe-success-color)',
|
|
16
|
+
warning: 'var(--vxe-warning-color)',
|
|
17
|
+
error: 'var(--vxe-danger-color)'
|
|
18
|
+
}
|
|
19
|
+
const fontColorMap = {
|
|
20
|
+
default: 'var(--vxe-font-color)'
|
|
21
|
+
}
|
|
22
|
+
const borderColorMap = {
|
|
23
|
+
default: 'null'
|
|
24
|
+
}
|
|
25
|
+
export default {
|
|
26
|
+
name: 'ShTag',
|
|
27
|
+
props: {
|
|
28
|
+
closable: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: false
|
|
31
|
+
},
|
|
32
|
+
checkable: {
|
|
33
|
+
type: Boolean,
|
|
34
|
+
default: false
|
|
35
|
+
},
|
|
36
|
+
checked: {
|
|
37
|
+
type: Boolean,
|
|
38
|
+
default: false
|
|
39
|
+
},
|
|
40
|
+
color: {
|
|
41
|
+
type: String
|
|
42
|
+
},
|
|
43
|
+
type: {
|
|
44
|
+
type: String,
|
|
45
|
+
default: '' // 'border', 'dot'
|
|
46
|
+
},
|
|
47
|
+
name: {
|
|
48
|
+
type: [String, Number]
|
|
49
|
+
},
|
|
50
|
+
size: {
|
|
51
|
+
type: String,
|
|
52
|
+
default: 'default' // medium / small / mini
|
|
53
|
+
},
|
|
54
|
+
opacity: {
|
|
55
|
+
type: Number,
|
|
56
|
+
default: 75
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
emits: ['change', 'close'],
|
|
60
|
+
data() {
|
|
61
|
+
return {
|
|
62
|
+
isChecked: this.checked
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
computed: {
|
|
66
|
+
colorIn() {
|
|
67
|
+
return this.color || 'default'
|
|
68
|
+
},
|
|
69
|
+
colorRgb() {
|
|
70
|
+
return colorMap[this.colorIn] || this.$vUtils.lighten(this.colorIn)
|
|
71
|
+
},
|
|
72
|
+
isCustom() {
|
|
73
|
+
return !!colorMap[this.colorIn]
|
|
74
|
+
},
|
|
75
|
+
fontStyle() {
|
|
76
|
+
return { color: this.isCustom && !this.type ? fontColorMap[this.colorIn] || '#fff' : this.colorRgb }
|
|
77
|
+
},
|
|
78
|
+
borderStyle() {
|
|
79
|
+
return { borderWidth: '1px', borderStyle: 'solid', borderColor: borderColorMap[this.colorIn] || this.colorRgb }
|
|
80
|
+
},
|
|
81
|
+
backgroundStyle() {
|
|
82
|
+
if (this.isCustom) return { backgroundColor: this.colorRgb, color: '#fff' }
|
|
83
|
+
return { backgroundColor: this.$vUtils.lighten(this.colorIn, this.opacity) }
|
|
84
|
+
},
|
|
85
|
+
classes() {
|
|
86
|
+
return {
|
|
87
|
+
[`${this.size}`]: !!this.size,
|
|
88
|
+
[`${this.type}`]: !!this.type,
|
|
89
|
+
[`closable`]: this.closable,
|
|
90
|
+
[`checked`]: this.isChecked,
|
|
91
|
+
[`checkable`]: this.checkable
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
textClasses() {
|
|
95
|
+
return {}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
watch: {
|
|
99
|
+
checked(val) {
|
|
100
|
+
this.isChecked = val
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
methods: {
|
|
104
|
+
close(event) {
|
|
105
|
+
this.$emit('close', event, this.name)
|
|
106
|
+
},
|
|
107
|
+
check() {
|
|
108
|
+
if (!this.checkable) return
|
|
109
|
+
const checked = !this.isChecked
|
|
110
|
+
this.isChecked = checked
|
|
111
|
+
this.$emit('change', checked, this.name)
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
</script>
|
|
116
|
+
|
|
117
|
+
<style scoped lang="scss">
|
|
118
|
+
$default-color: #f7f7f7;
|
|
119
|
+
.sh-tag {
|
|
120
|
+
display: inline-flex;
|
|
121
|
+
align-items: center;
|
|
122
|
+
margin: 2px 4px 2px 0;
|
|
123
|
+
border: 1px solid var(--vxe-table-border-color);
|
|
124
|
+
border-radius: var(--vxe-border-radius);
|
|
125
|
+
background-color: $default-color;
|
|
126
|
+
vertical-align: top;
|
|
127
|
+
overflow: hidden;
|
|
128
|
+
&.border,
|
|
129
|
+
&.dot {
|
|
130
|
+
background-color: transparent !important;
|
|
131
|
+
color: var(--vxe-font-color) !important;
|
|
132
|
+
}
|
|
133
|
+
&.dot {
|
|
134
|
+
border-color: var(--vxe-table-border-color) !important;
|
|
135
|
+
color: var(--vxe-font-color) !important;
|
|
136
|
+
.sh-tag-text {
|
|
137
|
+
color: inherit !important;
|
|
138
|
+
line-height: 30px;
|
|
139
|
+
}
|
|
140
|
+
.sh-tag-close {
|
|
141
|
+
border: none !important;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
&-dot {
|
|
145
|
+
display: inline-block;
|
|
146
|
+
width: 12px;
|
|
147
|
+
height: 12px;
|
|
148
|
+
border-radius: 50%;
|
|
149
|
+
background-color: #ccc;
|
|
150
|
+
margin: 0 5px 0 12px;
|
|
151
|
+
}
|
|
152
|
+
&-text {
|
|
153
|
+
padding: 0 8px;
|
|
154
|
+
flex: 1;
|
|
155
|
+
}
|
|
156
|
+
&-close {
|
|
157
|
+
padding: 0 3px;
|
|
158
|
+
border-top: none !important;
|
|
159
|
+
border-right: none !important;
|
|
160
|
+
border-bottom: none !important;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
</style>
|