n20-common-lib 2.4.80 → 2.4.82
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/assets/css/el-table.scss +4 -0
- package/src/plugins/Sign/InfosecNetSignCNGAgent.min.js +2 -2
- package/style/index.css +1 -1
- package/style/index.css.map +1 -1
- package/theme/blue.css +1 -1
- package/theme/cctcRed.css +1 -1
- package/theme/green.css +1 -1
- package/theme/lightBlue.css +1 -1
- package/theme/orange.css +1 -1
- package/theme/purple.css +1 -1
- package/theme/red.css +1 -1
- package/theme/yellow.css +1 -1
package/package.json
CHANGED
|
@@ -160,6 +160,10 @@ th.vxe-header--column {
|
|
|
160
160
|
.cell-default-set-- .vxe-table--body-wrapper .vxe-body--row .vxe-body--column .vxe-cell .vxe-cell--label:empty::before {
|
|
161
161
|
content: '--';
|
|
162
162
|
}
|
|
163
|
+
.vxe-table--render-default {
|
|
164
|
+
font-family: PingFang SC, Microsoft YaHei, Arial, sans-serif !important;
|
|
165
|
+
color: #333;
|
|
166
|
+
}
|
|
163
167
|
@import '../../components/TableSetSize/style.scss';
|
|
164
168
|
.el-table-set-size-item {
|
|
165
169
|
.icon-mini {
|
|
@@ -167,7 +167,7 @@ function sendAjaxSniffingData(e) {
|
|
|
167
167
|
$ajax({
|
|
168
168
|
url: r,
|
|
169
169
|
type: 'GET',
|
|
170
|
-
timeout:
|
|
170
|
+
timeout: 1000,
|
|
171
171
|
async: false,
|
|
172
172
|
dataType: 'json',
|
|
173
173
|
error: function (e, t, r) {
|
|
@@ -192,7 +192,7 @@ function sendAjaxSniffingDataAsync(e) {
|
|
|
192
192
|
$ajax({
|
|
193
193
|
url: r,
|
|
194
194
|
type: 'GET',
|
|
195
|
-
timeout:
|
|
195
|
+
timeout: 1000,
|
|
196
196
|
async: true,
|
|
197
197
|
dataType: 'json',
|
|
198
198
|
error: function (e, t, r) {},
|