centaline-data-driven 1.2.42 → 1.2.43
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 +1 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +1 -47
- package/src/centaline/templateControls/src/dynamicTableCurrency.vue +1 -2
- package/wwwroot/static/centaline/centaline-data-driven.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
|
@@ -955,17 +955,14 @@
|
|
|
955
955
|
outline: 0;
|
|
956
956
|
border-top: 1px solid #fff;
|
|
957
957
|
}
|
|
958
|
-
|
|
959
958
|
.ct-searchtable .ct-table {
|
|
960
959
|
min-width: 100%;
|
|
961
960
|
border-collapse: collapse;
|
|
962
961
|
}
|
|
963
|
-
|
|
964
962
|
.ct-searchtable .ct-table th {
|
|
965
963
|
background-color: #f4f7fa !important;
|
|
966
964
|
border-top: 1px solid #ebeef5;
|
|
967
965
|
}
|
|
968
|
-
|
|
969
966
|
.ct-searchtable .ct-tr > .ct-td {
|
|
970
967
|
/*border: 1px solid #e7e8eb;
|
|
971
968
|
border-bottom: 1px solid #e7e8eb;
|
|
@@ -975,69 +972,53 @@
|
|
|
975
972
|
cursor: default;
|
|
976
973
|
background-color: #ffffff;
|
|
977
974
|
}
|
|
978
|
-
|
|
979
975
|
.ct-searchtable .ct-tr > .ct-td1 {
|
|
980
976
|
border-right: 1px solid #e7e8eb;
|
|
981
977
|
border-left: 1px solid #e7e8eb;
|
|
982
978
|
}
|
|
983
|
-
|
|
984
979
|
.ct-searchtable .ct-tr:last-child > .ct-td1 {
|
|
985
980
|
border-bottom: 1px solid #e7e8eb;
|
|
986
981
|
}
|
|
987
|
-
|
|
988
982
|
.ct-searchtable .ct-tr > .ct-td2 {
|
|
989
983
|
border-bottom: 1px solid #e7e8eb;
|
|
990
984
|
}
|
|
991
|
-
|
|
992
985
|
.ct-searchtable .ct-tr > .ct-td3 {
|
|
993
986
|
border: 1px solid #e7e8eb;
|
|
994
987
|
}
|
|
995
|
-
|
|
996
988
|
.shadowLeft {
|
|
997
989
|
border-right: 1px solid #e7e8eb;
|
|
998
990
|
box-shadow: 2px 0 3px -1px rgba(0,0,0,0.1);
|
|
999
991
|
}
|
|
1000
|
-
|
|
1001
992
|
.shadowRight {
|
|
1002
993
|
box-shadow: -2px 0 3px -1px rgba(0,0,0,0.1);
|
|
1003
994
|
}
|
|
1004
|
-
|
|
1005
995
|
.ct-searchtable body:last-child > .ct-td {
|
|
1006
996
|
border-bottom: 0px;
|
|
1007
997
|
}
|
|
1008
|
-
|
|
1009
998
|
.ct-searchtable .ct-tr > .ct-td.nowidth {
|
|
1010
999
|
white-space: nowrap;
|
|
1011
1000
|
}
|
|
1012
|
-
/*.ct-searchtable tbody .ct-tr:hover .ct-td {
|
|
1013
|
-
background-color: #ebeef5 !important;
|
|
1014
|
-
}*/
|
|
1015
|
-
|
|
1016
1001
|
.ct-table {
|
|
1017
1002
|
color: #606266;
|
|
1018
1003
|
font-size: 18px;
|
|
1019
1004
|
line-height: 40px;
|
|
1020
1005
|
min-height: 40px;
|
|
1021
1006
|
}
|
|
1022
|
-
|
|
1023
1007
|
.ct-table-mini {
|
|
1024
1008
|
font-size: 12px;
|
|
1025
1009
|
line-height: 26px;
|
|
1026
1010
|
min-height: 28px;
|
|
1027
1011
|
}
|
|
1028
|
-
|
|
1029
1012
|
.ct-table-small {
|
|
1030
1013
|
font-size: 14px;
|
|
1031
1014
|
line-height: 32px;
|
|
1032
1015
|
min-height: 32px;
|
|
1033
1016
|
}
|
|
1034
|
-
|
|
1035
1017
|
.ct-table-medium {
|
|
1036
1018
|
font-size: 16px;
|
|
1037
1019
|
line-height: 36px;
|
|
1038
1020
|
min-height: 36px;
|
|
1039
1021
|
}
|
|
1040
|
-
|
|
1041
1022
|
.ct-table .ct-td > .caret-wrapper {
|
|
1042
1023
|
display: inline-flex;
|
|
1043
1024
|
flex-direction: column;
|
|
@@ -1049,7 +1030,6 @@
|
|
|
1049
1030
|
overflow: initial;
|
|
1050
1031
|
position: relative;
|
|
1051
1032
|
}
|
|
1052
|
-
|
|
1053
1033
|
.ct-table .ct-td > .caret-wrapper > .sort-caret {
|
|
1054
1034
|
width: 0;
|
|
1055
1035
|
height: 0;
|
|
@@ -1057,36 +1037,28 @@
|
|
|
1057
1037
|
position: absolute;
|
|
1058
1038
|
left: 7px;
|
|
1059
1039
|
}
|
|
1060
|
-
|
|
1061
1040
|
.ct-table .ct-td > .caret-wrapper > .sort-caret.ascending {
|
|
1062
1041
|
border-bottom-color: #c0c4cc;
|
|
1063
1042
|
top: 5px;
|
|
1064
1043
|
}
|
|
1065
|
-
|
|
1066
1044
|
.ct-table .ct-td > .caret-wrapper > .sort-caret.descending {
|
|
1067
1045
|
border-top-color: #c0c4cc;
|
|
1068
1046
|
bottom: 7px;
|
|
1069
1047
|
}
|
|
1070
|
-
|
|
1071
1048
|
.ct-table .ct-td.select {
|
|
1072
1049
|
background-color: #ecf5ff !important;
|
|
1073
1050
|
}
|
|
1074
|
-
|
|
1075
1051
|
.ct-table .ct-tr:hover .ct-td.select {
|
|
1076
1052
|
background-color: #ecf5ff !important;
|
|
1077
1053
|
}
|
|
1078
|
-
|
|
1079
1054
|
.ct-table .ct-td.asc > .caret-wrapper > .sort-caret.ascending {
|
|
1080
1055
|
border-bottom-color: #409eff;
|
|
1081
1056
|
top: 5px;
|
|
1082
1057
|
}
|
|
1083
|
-
|
|
1084
1058
|
.ct-table .ct-td.desc > .caret-wrapper > .sort-caret.descending {
|
|
1085
1059
|
border-top-color: #409eff;
|
|
1086
1060
|
bottom: 7px;
|
|
1087
1061
|
}
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
1062
|
.ct-table .cell {
|
|
1091
1063
|
/*white-space: nowrap;*/
|
|
1092
1064
|
text-overflow: ellipsis;
|
|
@@ -1094,7 +1066,6 @@
|
|
|
1094
1066
|
overflow: hidden;
|
|
1095
1067
|
/*padding-right: 10px;*/
|
|
1096
1068
|
}
|
|
1097
|
-
|
|
1098
1069
|
/*强制换行 todo 可去掉改成强制不换行*/
|
|
1099
1070
|
.ct-table .cell {
|
|
1100
1071
|
/* 这两个在技术上是一样的, 为了兼容了浏览器两个都加上 */
|
|
@@ -1111,53 +1082,35 @@
|
|
|
1111
1082
|
-webkit-hyphens: auto;
|
|
1112
1083
|
hyphens: auto;
|
|
1113
1084
|
}
|
|
1114
|
-
|
|
1115
1085
|
.ct-table .lineFeedCell {
|
|
1116
1086
|
min-width: 40px;
|
|
1117
|
-
/*padding-right: 10px;*/
|
|
1118
1087
|
}
|
|
1119
|
-
|
|
1120
|
-
/*.ct-table .cell.ct-tooltip:hover {
|
|
1121
|
-
text-overflow: inherit;
|
|
1122
|
-
overflow: visible;
|
|
1123
|
-
}*/
|
|
1124
|
-
|
|
1125
1088
|
.ct-table .left-fixation {
|
|
1126
1089
|
position: sticky;
|
|
1127
1090
|
}
|
|
1128
|
-
|
|
1129
1091
|
.ct-table .right-fixation {
|
|
1130
1092
|
position: sticky;
|
|
1131
1093
|
}
|
|
1132
|
-
|
|
1133
1094
|
.ct-table .left-fixation-th {
|
|
1134
1095
|
position: sticky;
|
|
1135
1096
|
top: 0px;
|
|
1136
1097
|
z-index: 99;
|
|
1137
1098
|
}
|
|
1138
|
-
|
|
1139
1099
|
.ct-table .right-fixation-th {
|
|
1140
1100
|
position: sticky;
|
|
1141
1101
|
top: 0px;
|
|
1142
1102
|
z-index: 99;
|
|
1143
1103
|
}
|
|
1144
|
-
|
|
1145
1104
|
.ct-table .right-no-fixation-th {
|
|
1146
1105
|
position: sticky;
|
|
1147
1106
|
top: 0px;
|
|
1148
1107
|
z-index: 50;
|
|
1149
1108
|
}
|
|
1150
|
-
|
|
1151
|
-
.ct-table .ct-searchtable-th {
|
|
1152
|
-
/*text-align: center*/
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
1109
|
.ct-table .checkbox-td {
|
|
1156
1110
|
min-width: 20px;
|
|
1157
1111
|
width: 20px;
|
|
1158
1112
|
left: 0px;
|
|
1159
1113
|
}
|
|
1160
|
-
|
|
1161
1114
|
.ct-table .checkbox-td .checkbox-td-1 {
|
|
1162
1115
|
vertical-align: inherit;
|
|
1163
1116
|
}
|
|
@@ -1174,6 +1127,7 @@
|
|
|
1174
1127
|
float: none;
|
|
1175
1128
|
display: block;
|
|
1176
1129
|
width: -webkit-fill-available;
|
|
1130
|
+
cursor: pointer;
|
|
1177
1131
|
}
|
|
1178
1132
|
.div_allinline .Stats-popover {
|
|
1179
1133
|
float: right;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel">
|
|
2
|
+
<div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel" @click="clickHandler($event)">
|
|
3
3
|
<img v-if="router.imgUrl && isShowImg" class="ct-tablecurrencyImg ct-tablecurrencyItem" :src="router.imgUrl" :title="router.label" @click="clickHandler($event);" />
|
|
4
4
|
<a v-else href="javascript:void(0);" class="ct-tablecurrencyItem" @click="clickHandler($event)">
|
|
5
5
|
{{label}}
|
|
@@ -63,5 +63,4 @@
|
|
|
63
63
|
width: 24px;
|
|
64
64
|
margin-top: 2px;
|
|
65
65
|
}
|
|
66
|
-
|
|
67
66
|
</style>
|