element-ui-root 2.5.3 → 2.6.8
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/dist/index.common.js +207 -139
- package/dist/index.css +1 -1
- package/dist/index.umd.js +207 -139
- package/dist/index.umd.min.js +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -5026,6 +5026,92 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5026
5026
|
|
|
5027
5027
|
/***/ }),
|
|
5028
5028
|
|
|
5029
|
+
/***/ "0a21":
|
|
5030
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5031
|
+
|
|
5032
|
+
"use strict";
|
|
5033
|
+
__webpack_require__.r(__webpack_exports__);
|
|
5034
|
+
/* harmony import */ var _index_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c51d");
|
|
5035
|
+
/* harmony import */ var _index_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_index_css__WEBPACK_IMPORTED_MODULE_0__);
|
|
5036
|
+
|
|
5037
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
5038
|
+
name: 'AtianMap',
|
|
5039
|
+
props: {
|
|
5040
|
+
id: {
|
|
5041
|
+
type: String,
|
|
5042
|
+
default: () => `a-tian-map-${Math.random()}`
|
|
5043
|
+
},
|
|
5044
|
+
center: {
|
|
5045
|
+
type: Array,
|
|
5046
|
+
default: () => [116.40769, 39.89945]
|
|
5047
|
+
},
|
|
5048
|
+
zoom: {
|
|
5049
|
+
type: String,
|
|
5050
|
+
default: () => '12'
|
|
5051
|
+
},
|
|
5052
|
+
margin: {
|
|
5053
|
+
type: String,
|
|
5054
|
+
default: () => '0'
|
|
5055
|
+
},
|
|
5056
|
+
width: {
|
|
5057
|
+
type: String,
|
|
5058
|
+
default: () => '100%'
|
|
5059
|
+
},
|
|
5060
|
+
height: {
|
|
5061
|
+
type: String,
|
|
5062
|
+
default: () => '42vh'
|
|
5063
|
+
}
|
|
5064
|
+
},
|
|
5065
|
+
|
|
5066
|
+
data() {
|
|
5067
|
+
return {
|
|
5068
|
+
map: null
|
|
5069
|
+
};
|
|
5070
|
+
},
|
|
5071
|
+
|
|
5072
|
+
mounted() {
|
|
5073
|
+
this.create();
|
|
5074
|
+
},
|
|
5075
|
+
|
|
5076
|
+
destroyed() {
|
|
5077
|
+
this.cancel();
|
|
5078
|
+
},
|
|
5079
|
+
|
|
5080
|
+
methods: {
|
|
5081
|
+
create() {
|
|
5082
|
+
if (window && window.T) {
|
|
5083
|
+
this.map = new T.Map(this.id);
|
|
5084
|
+
this.map.centerAndZoom(new T.LngLat(...this.center), this.zoom);
|
|
5085
|
+
}
|
|
5086
|
+
},
|
|
5087
|
+
|
|
5088
|
+
cancel() {
|
|
5089
|
+
this.map = null;
|
|
5090
|
+
}
|
|
5091
|
+
|
|
5092
|
+
},
|
|
5093
|
+
|
|
5094
|
+
render() {
|
|
5095
|
+
const h = arguments[0];
|
|
5096
|
+
return h("div", {
|
|
5097
|
+
"class": "a-tian-map",
|
|
5098
|
+
"style": {
|
|
5099
|
+
padding: this.margin,
|
|
5100
|
+
width: this.width,
|
|
5101
|
+
height: this.height
|
|
5102
|
+
}
|
|
5103
|
+
}, [h("div", {
|
|
5104
|
+
"attrs": {
|
|
5105
|
+
"id": this.id
|
|
5106
|
+
},
|
|
5107
|
+
"class": "a-tian-map-main"
|
|
5108
|
+
})]);
|
|
5109
|
+
}
|
|
5110
|
+
|
|
5111
|
+
});
|
|
5112
|
+
|
|
5113
|
+
/***/ }),
|
|
5114
|
+
|
|
5029
5115
|
/***/ "0a59":
|
|
5030
5116
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5031
5117
|
|
|
@@ -13096,6 +13182,11 @@ var map = {
|
|
|
13096
13182
|
"./Atags/index": "cd95",
|
|
13097
13183
|
"./Atags/index.css": "13a9",
|
|
13098
13184
|
"./Atags/index.js": "cd95",
|
|
13185
|
+
"./AtianMap": "0a21",
|
|
13186
|
+
"./AtianMap/": "0a21",
|
|
13187
|
+
"./AtianMap/index": "0a21",
|
|
13188
|
+
"./AtianMap/index.css": "c51d",
|
|
13189
|
+
"./AtianMap/index.js": "0a21",
|
|
13099
13190
|
"./Atitle": "8848",
|
|
13100
13191
|
"./Atitle/": "8848",
|
|
13101
13192
|
"./Atitle/index": "8848",
|
|
@@ -13481,12 +13572,13 @@ const AformItem = a => Promise.resolve(/* AMD require */).then(function() { var
|
|
|
13481
13572
|
// 格式化属性为模糊查询属性
|
|
13482
13573
|
for (let a in this.config) {
|
|
13483
13574
|
if (this.config[a] != '' && this.config[a].like && this.form[a] != '' && this.form[a] != null && this.form[a] != undefined) {
|
|
13484
|
-
data[a] = '%' + this.form[a]
|
|
13575
|
+
if (this.config[a].like == 'left') data[a] = '%' + this.form[a];
|
|
13576
|
+
if (this.config[a].like == 'right') data[a] = this.form[a] + '%';else data[a] = '%' + this.form[a] + '%';
|
|
13485
13577
|
} else {
|
|
13486
13578
|
if (this.config[a] != '' && (this.config[a].than || this.config[a].range || this.config[a].scope)) {
|
|
13487
13579
|
data[`${a}LE`] = this.form[`${a}LE`];
|
|
13488
13580
|
data[`${a}GE`] = this.form[`${a}GE`];
|
|
13489
|
-
} else data[a] = this.form[a];
|
|
13581
|
+
} else if (this.form[a].includes(' 00:00:00')) data[a] = '%' + this.form[a].split(' 00:00:00')[0] + '%';else data[a] = this.form[a];
|
|
13490
13582
|
}
|
|
13491
13583
|
}
|
|
13492
13584
|
}
|
|
@@ -18672,9 +18764,9 @@ const Aupload = a => Promise.resolve(/* AMD require */).then(function() { var __
|
|
|
18672
18764
|
const h = this.$createElement;
|
|
18673
18765
|
const words = text || label || title;
|
|
18674
18766
|
|
|
18675
|
-
const labels = (a = {}) =>
|
|
18767
|
+
const labels = (a = {}) => typeof a == 'string' ? a : a.label || a.title || a.name || a.text;
|
|
18676
18768
|
|
|
18677
|
-
const values = (a = {}) =>
|
|
18769
|
+
const values = (a = {}) => typeof a == 'string' ? a : a.value || a.code || a.id;
|
|
18678
18770
|
|
|
18679
18771
|
if (!props.type) return h("el-input", {
|
|
18680
18772
|
"attrs": {
|
|
@@ -18939,6 +19031,8 @@ const Aupload = a => Promise.resolve(/* AMD require */).then(function() { var __
|
|
|
18939
19031
|
return h("el-date-picker", {
|
|
18940
19032
|
"attrs": {
|
|
18941
19033
|
"align": "center",
|
|
19034
|
+
"format": "yyyy-MM-dd",
|
|
19035
|
+
"value-format": "yyyy-MM-dd HH:mm:ss",
|
|
18942
19036
|
"type": props.type,
|
|
18943
19037
|
"clearable": true,
|
|
18944
19038
|
"placeholder": props.placeholder || `请选择${words}`,
|
|
@@ -18966,6 +19060,8 @@ const Aupload = a => Promise.resolve(/* AMD require */).then(function() { var __
|
|
|
18966
19060
|
return h("el-date-picker", {
|
|
18967
19061
|
"attrs": {
|
|
18968
19062
|
"align": "center",
|
|
19063
|
+
"format": "yyyy-MM-dd",
|
|
19064
|
+
"value-format": "yyyy-MM-dd HH:mm:ss",
|
|
18969
19065
|
"type": props.type,
|
|
18970
19066
|
"clearable": true,
|
|
18971
19067
|
"placeholder": props.placeholder || `请选择${words}`
|
|
@@ -21231,9 +21327,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21231
21327
|
|
|
21232
21328
|
"use strict";
|
|
21233
21329
|
__webpack_require__.r(__webpack_exports__);
|
|
21234
|
-
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
21235
|
-
// const Aecharts = () => import('@/components/Aecharts');
|
|
21236
|
-
|
|
21237
21330
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
21238
21331
|
|
|
21239
21332
|
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
@@ -21243,47 +21336,35 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
21243
21336
|
type: Array,
|
|
21244
21337
|
default: () => [{
|
|
21245
21338
|
name: '栏目一',
|
|
21246
|
-
value: '20'
|
|
21247
|
-
color: '#2f7ed8'
|
|
21339
|
+
value: '20'
|
|
21248
21340
|
}, {
|
|
21249
21341
|
name: '栏目二',
|
|
21250
|
-
value: '60'
|
|
21251
|
-
color: '#1ed76d'
|
|
21342
|
+
value: '60'
|
|
21252
21343
|
}, {
|
|
21253
21344
|
name: '栏目三',
|
|
21254
|
-
value: '30'
|
|
21255
|
-
color: '#8bbc21'
|
|
21345
|
+
value: '30'
|
|
21256
21346
|
}, {
|
|
21257
21347
|
name: '栏目四',
|
|
21258
|
-
value: '50'
|
|
21259
|
-
color: '#910000'
|
|
21348
|
+
value: '50'
|
|
21260
21349
|
}, {
|
|
21261
21350
|
name: '栏目五',
|
|
21262
|
-
value: '80'
|
|
21263
|
-
color: '#1aadce'
|
|
21351
|
+
value: '80'
|
|
21264
21352
|
}, {
|
|
21265
21353
|
name: '栏目六',
|
|
21266
|
-
value: '10'
|
|
21267
|
-
color: '#492970'
|
|
21354
|
+
value: '10'
|
|
21268
21355
|
}, {
|
|
21269
21356
|
name: '栏目七',
|
|
21270
|
-
value: '15'
|
|
21271
|
-
color: '#f28f43'
|
|
21357
|
+
value: '15'
|
|
21272
21358
|
}, {
|
|
21273
21359
|
name: '栏目八',
|
|
21274
|
-
value: '25'
|
|
21275
|
-
color: '#77a1e5'
|
|
21360
|
+
value: '25'
|
|
21276
21361
|
}]
|
|
21277
21362
|
},
|
|
21278
21363
|
title: {
|
|
21279
|
-
type: String,
|
|
21280
|
-
default: () => '标题'
|
|
21281
|
-
},
|
|
21282
|
-
name: {
|
|
21283
21364
|
type: String,
|
|
21284
21365
|
default: () => ''
|
|
21285
21366
|
},
|
|
21286
|
-
|
|
21367
|
+
name: {
|
|
21287
21368
|
type: String,
|
|
21288
21369
|
default: () => ''
|
|
21289
21370
|
},
|
|
@@ -21293,12 +21374,13 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
21293
21374
|
},
|
|
21294
21375
|
radius: {
|
|
21295
21376
|
type: Array,
|
|
21296
|
-
default: () => ['
|
|
21377
|
+
default: () => ['30%', '60%']
|
|
21297
21378
|
},
|
|
21298
21379
|
roseType: {
|
|
21299
21380
|
type: String,
|
|
21300
|
-
default: () => '
|
|
21381
|
+
default: () => ''
|
|
21301
21382
|
},
|
|
21383
|
+
// radius
|
|
21302
21384
|
showLegend: {
|
|
21303
21385
|
type: Boolean,
|
|
21304
21386
|
default: () => false
|
|
@@ -21319,6 +21401,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
21319
21401
|
};
|
|
21320
21402
|
},
|
|
21321
21403
|
|
|
21404
|
+
watch: {
|
|
21405
|
+
data: {
|
|
21406
|
+
deep: true,
|
|
21407
|
+
|
|
21408
|
+
handler() {
|
|
21409
|
+
this.create();
|
|
21410
|
+
}
|
|
21411
|
+
|
|
21412
|
+
}
|
|
21413
|
+
},
|
|
21414
|
+
|
|
21322
21415
|
created() {
|
|
21323
21416
|
this.create();
|
|
21324
21417
|
},
|
|
@@ -21330,21 +21423,18 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
21330
21423
|
type: this.type,
|
|
21331
21424
|
radius: this.radius,
|
|
21332
21425
|
roseType: this.roseType,
|
|
21333
|
-
center: ['50%', '
|
|
21426
|
+
center: ['50%', '55%'],
|
|
21334
21427
|
data: this.data.length > 0 && this.data.map((a, b) => ({
|
|
21335
21428
|
selected: false,
|
|
21336
21429
|
label: {},
|
|
21337
21430
|
labelLine: {
|
|
21338
|
-
lineStyle: {
|
|
21339
|
-
color: 'rgba(255, 255, 255, 0.3)'
|
|
21340
|
-
},
|
|
21341
21431
|
smooth: 0.2,
|
|
21342
21432
|
length: 10,
|
|
21343
21433
|
length2: 20
|
|
21344
21434
|
},
|
|
21345
21435
|
itemStyle: {
|
|
21346
21436
|
normal: {
|
|
21347
|
-
color: a.color
|
|
21437
|
+
color: a.color,
|
|
21348
21438
|
shadowBlur: 200,
|
|
21349
21439
|
shadowColor: 'rgba(0, 0, 0, 0.4)',
|
|
21350
21440
|
shadowOffsetX: -4,
|
|
@@ -21359,11 +21449,12 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
21359
21449
|
}
|
|
21360
21450
|
},
|
|
21361
21451
|
animationDelay: c => c * b * 100,
|
|
21452
|
+
name: a.text || a.label || a.title,
|
|
21362
21453
|
...a
|
|
21363
21454
|
})).sort((a, b) => a.value - b.value),
|
|
21364
21455
|
animationType: 'scale',
|
|
21365
21456
|
animationEasing: 'elasticOut',
|
|
21366
|
-
animationDelay:
|
|
21457
|
+
animationDelay: () => Math.random() * 200
|
|
21367
21458
|
}];
|
|
21368
21459
|
this.option = {
|
|
21369
21460
|
backgroundColor: this.backgroundColor,
|
|
@@ -21378,7 +21469,9 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
21378
21469
|
tooltip: {
|
|
21379
21470
|
trigger: 'item'
|
|
21380
21471
|
},
|
|
21381
|
-
legend:
|
|
21472
|
+
legend: {
|
|
21473
|
+
left: 'center'
|
|
21474
|
+
},
|
|
21382
21475
|
series
|
|
21383
21476
|
};
|
|
21384
21477
|
}
|
|
@@ -22302,14 +22395,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22302
22395
|
};
|
|
22303
22396
|
},
|
|
22304
22397
|
|
|
22305
|
-
// watch: {
|
|
22306
|
-
// data: {
|
|
22307
|
-
// deep: true,
|
|
22308
|
-
// handler(prev, next) {
|
|
22309
|
-
// if (JSON.stringify(prev) != JSON.stringify(next)) this.create();
|
|
22310
|
-
// }
|
|
22311
|
-
// },
|
|
22312
|
-
// },
|
|
22313
22398
|
watch: {
|
|
22314
22399
|
data(prev, next) {
|
|
22315
22400
|
if (JSON.stringify(prev) != JSON.stringify(next)) this.create();
|
|
@@ -25079,10 +25164,8 @@ module.exports = _default;
|
|
|
25079
25164
|
|
|
25080
25165
|
"use strict";
|
|
25081
25166
|
__webpack_require__.r(__webpack_exports__);
|
|
25082
|
-
/* harmony import */ var
|
|
25083
|
-
/* harmony import */ var _const__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("415d");
|
|
25167
|
+
/* harmony import */ var _const__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("415d");
|
|
25084
25168
|
|
|
25085
|
-
// const Aecharts = () => import('@/components/Aecharts');
|
|
25086
25169
|
|
|
25087
25170
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
25088
25171
|
|
|
@@ -25186,7 +25269,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
25186
25269
|
barWidth: 14,
|
|
25187
25270
|
...a
|
|
25188
25271
|
}));
|
|
25189
|
-
this.option = { ...Object(
|
|
25272
|
+
this.option = { ...Object(_const__WEBPACK_IMPORTED_MODULE_0__["common"])(this._props),
|
|
25190
25273
|
series: [{
|
|
25191
25274
|
type: 'bar',
|
|
25192
25275
|
barWidth: 10,
|
|
@@ -27221,7 +27304,7 @@ __webpack_require__("e659");
|
|
|
27221
27304
|
"use strict";
|
|
27222
27305
|
__webpack_require__.r(__webpack_exports__);
|
|
27223
27306
|
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
27224
|
-
|
|
27307
|
+
|
|
27225
27308
|
|
|
27226
27309
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
27227
27310
|
|
|
@@ -35606,6 +35689,7 @@ var map = {
|
|
|
35606
35689
|
"./Atable/index.js": "bd9e",
|
|
35607
35690
|
"./Atabs/index.js": "3766",
|
|
35608
35691
|
"./Atags/index.js": "cd95",
|
|
35692
|
+
"./AtianMap/index.js": "0a21",
|
|
35609
35693
|
"./Atitle/index.js": "8848",
|
|
35610
35694
|
"./Atooltip/index.js": "fbc2",
|
|
35611
35695
|
"./Atransfer/index.js": "6bde",
|
|
@@ -45695,7 +45779,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
45695
45779
|
"use strict";
|
|
45696
45780
|
__webpack_require__.r(__webpack_exports__);
|
|
45697
45781
|
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
45698
|
-
|
|
45782
|
+
|
|
45699
45783
|
|
|
45700
45784
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
45701
45785
|
|
|
@@ -51162,7 +51246,7 @@ exports.getViewRect = getViewRect;
|
|
|
51162
51246
|
"use strict";
|
|
51163
51247
|
__webpack_require__.r(__webpack_exports__);
|
|
51164
51248
|
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
51165
|
-
|
|
51249
|
+
|
|
51166
51250
|
|
|
51167
51251
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
51168
51252
|
|
|
@@ -51171,8 +51255,13 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
51171
51255
|
props: {
|
|
51172
51256
|
data: {
|
|
51173
51257
|
type: Array,
|
|
51174
|
-
default: () => [
|
|
51175
|
-
|
|
51258
|
+
default: () => [{
|
|
51259
|
+
id: 1,
|
|
51260
|
+
name: '栏目一',
|
|
51261
|
+
type: 'bar',
|
|
51262
|
+
value: [55, 43, 44, 32, 54, 31, 56, 23, 53, 12, 11, 21],
|
|
51263
|
+
color: ''
|
|
51264
|
+
}, {
|
|
51176
51265
|
id: 2,
|
|
51177
51266
|
name: '栏目一',
|
|
51178
51267
|
type: 'line',
|
|
@@ -58924,9 +59013,6 @@ module.exports = _default;
|
|
|
58924
59013
|
|
|
58925
59014
|
"use strict";
|
|
58926
59015
|
__webpack_require__.r(__webpack_exports__);
|
|
58927
|
-
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
58928
|
-
// const Aecharts = () => import('@/components/Aecharts');
|
|
58929
|
-
|
|
58930
59016
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
58931
59017
|
|
|
58932
59018
|
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
@@ -59010,7 +59096,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
59010
59096
|
},
|
|
59011
59097
|
color: {
|
|
59012
59098
|
type: String,
|
|
59013
|
-
default: () => '
|
|
59099
|
+
default: () => ''
|
|
59014
59100
|
},
|
|
59015
59101
|
colors: {
|
|
59016
59102
|
type: Array,
|
|
@@ -59036,6 +59122,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
59036
59122
|
};
|
|
59037
59123
|
},
|
|
59038
59124
|
|
|
59125
|
+
watch: {
|
|
59126
|
+
data: {
|
|
59127
|
+
deep: true,
|
|
59128
|
+
|
|
59129
|
+
handler() {
|
|
59130
|
+
this.create();
|
|
59131
|
+
}
|
|
59132
|
+
|
|
59133
|
+
}
|
|
59134
|
+
},
|
|
59135
|
+
|
|
59039
59136
|
created() {
|
|
59040
59137
|
this.create();
|
|
59041
59138
|
},
|
|
@@ -59051,7 +59148,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
59051
59148
|
name: a.label ? a.label : a.title ? a.title : a.text ? a.text : a.name ? a.name : '匿名',
|
|
59052
59149
|
value: a.value ? a.value : a.number ? a.number : a.code ? a.code : '0',
|
|
59053
59150
|
itemStyle: {
|
|
59054
|
-
color: a.color ? a.color : colors[b],
|
|
59151
|
+
color: a.color ? a.color : this.color != '' ? this.color : colors[b],
|
|
59055
59152
|
borderWidth: 10
|
|
59056
59153
|
},
|
|
59057
59154
|
...a
|
|
@@ -59066,14 +59163,12 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
59066
59163
|
bottom: 0,
|
|
59067
59164
|
containLabel: true
|
|
59068
59165
|
},
|
|
59069
|
-
// legend: getLegend(false, this.type),
|
|
59070
59166
|
xAxis: {
|
|
59071
59167
|
show: true,
|
|
59072
59168
|
type: 'category',
|
|
59073
59169
|
data: labels,
|
|
59074
59170
|
splitLine: {
|
|
59075
|
-
show: false
|
|
59076
|
-
|
|
59171
|
+
show: false
|
|
59077
59172
|
},
|
|
59078
59173
|
axisPointer: {
|
|
59079
59174
|
type: 'shadow'
|
|
@@ -59082,10 +59177,16 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
59082
59177
|
yAxis: {
|
|
59083
59178
|
show: true,
|
|
59084
59179
|
splitLine: {
|
|
59085
|
-
show: false
|
|
59086
|
-
|
|
59180
|
+
show: false
|
|
59087
59181
|
}
|
|
59088
59182
|
},
|
|
59183
|
+
dataZoom: {
|
|
59184
|
+
show: true,
|
|
59185
|
+
type: 'slider',
|
|
59186
|
+
height: 20,
|
|
59187
|
+
start: 0,
|
|
59188
|
+
end: 40
|
|
59189
|
+
},
|
|
59089
59190
|
series: [{
|
|
59090
59191
|
type: this.type,
|
|
59091
59192
|
data: values,
|
|
@@ -130725,6 +130826,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
130725
130826
|
};
|
|
130726
130827
|
},
|
|
130727
130828
|
|
|
130829
|
+
watch: {
|
|
130830
|
+
data: {
|
|
130831
|
+
deep: true,
|
|
130832
|
+
|
|
130833
|
+
handler() {
|
|
130834
|
+
this.create();
|
|
130835
|
+
}
|
|
130836
|
+
|
|
130837
|
+
}
|
|
130838
|
+
},
|
|
130839
|
+
|
|
130728
130840
|
created() {
|
|
130729
130841
|
this.create();
|
|
130730
130842
|
},
|
|
@@ -133052,7 +133164,7 @@ ComponentView.extend({
|
|
|
133052
133164
|
"use strict";
|
|
133053
133165
|
__webpack_require__.r(__webpack_exports__);
|
|
133054
133166
|
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
133055
|
-
|
|
133167
|
+
|
|
133056
133168
|
|
|
133057
133169
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
133058
133170
|
|
|
@@ -133066,12 +133178,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
133066
133178
|
name: '栏目一',
|
|
133067
133179
|
value: [55, 43, 44, 32, 54, 31, 56, 23, 53, 12, 11, 21],
|
|
133068
133180
|
color: ''
|
|
133069
|
-
}
|
|
133070
|
-
// { id: 3, label: '栏目三', value: [67, 6, 44, 13, 54, 12, 32, 11, 32, 56, 32, 32], color: '' },
|
|
133071
|
-
// { id: 4, label: '栏目四', value: [70, 32, 55, 42, 58, 12, 13, 42, 53, 56, 77, 54], color: '' },
|
|
133072
|
-
// { id: 14, label: '栏目五', value: [21, 81, 78, 87, 55, 12, 13, 41, 53, 56, 89, 65], color: '' },
|
|
133073
|
-
// { id: 15, label: '栏目六', value: [67, 31, 44, 13, 53, 12, 55, 23, 53, 56, 16, 76], color: '' },
|
|
133074
|
-
]
|
|
133181
|
+
}]
|
|
133075
133182
|
},
|
|
133076
133183
|
type: {
|
|
133077
133184
|
type: String,
|
|
@@ -133113,6 +133220,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
133113
133220
|
};
|
|
133114
133221
|
},
|
|
133115
133222
|
|
|
133223
|
+
watch: {
|
|
133224
|
+
data: {
|
|
133225
|
+
deep: true,
|
|
133226
|
+
|
|
133227
|
+
handler() {
|
|
133228
|
+
this.create();
|
|
133229
|
+
}
|
|
133230
|
+
|
|
133231
|
+
}
|
|
133232
|
+
},
|
|
133233
|
+
|
|
133116
133234
|
created() {
|
|
133117
133235
|
this.create();
|
|
133118
133236
|
},
|
|
@@ -134795,7 +134913,6 @@ const Aempty = a => Promise.resolve(/* AMD require */).then(function() { var __W
|
|
|
134795
134913
|
|
|
134796
134914
|
"use strict";
|
|
134797
134915
|
__webpack_require__.r(__webpack_exports__);
|
|
134798
|
-
// const Aecharts = () => import('@/components/Aecharts');
|
|
134799
134916
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
134800
134917
|
|
|
134801
134918
|
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
@@ -137058,7 +137175,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
137058
137175
|
/* harmony import */ var echarts_gl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(echarts_gl__WEBPACK_IMPORTED_MODULE_0__);
|
|
137059
137176
|
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("a0e9");
|
|
137060
137177
|
|
|
137061
|
-
|
|
137178
|
+
|
|
137062
137179
|
|
|
137063
137180
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
137064
137181
|
|
|
@@ -139989,6 +140106,13 @@ module.exports = _default;
|
|
|
139989
140106
|
|
|
139990
140107
|
/***/ }),
|
|
139991
140108
|
|
|
140109
|
+
/***/ "c51d":
|
|
140110
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
140111
|
+
|
|
140112
|
+
// extracted by mini-css-extract-plugin
|
|
140113
|
+
|
|
140114
|
+
/***/ }),
|
|
140115
|
+
|
|
139992
140116
|
/***/ "c60a":
|
|
139993
140117
|
/***/ (function(module, exports, __webpack_require__) {
|
|
139994
140118
|
|
|
@@ -154396,9 +154520,6 @@ echarts.registerVisual({
|
|
|
154396
154520
|
|
|
154397
154521
|
"use strict";
|
|
154398
154522
|
__webpack_require__.r(__webpack_exports__);
|
|
154399
|
-
/* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
|
|
154400
|
-
// const Aecharts = () => import('@/components/Aecharts');
|
|
154401
|
-
|
|
154402
154523
|
const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__("65d8")]; (a).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}.bind(this)).catch(__webpack_require__.oe);
|
|
154403
154524
|
|
|
154404
154525
|
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
@@ -154481,49 +154602,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
154481
154602
|
|
|
154482
154603
|
methods: {
|
|
154483
154604
|
create() {
|
|
154484
|
-
let series = [
|
|
154485
|
-
// name: this.title,
|
|
154486
|
-
// type: this.type,
|
|
154487
|
-
// radius: this.radius,
|
|
154488
|
-
// roseType: this.roseType,
|
|
154489
|
-
// center: ['50%', '50%'], // 位置调整
|
|
154490
|
-
// data: this.data.length > 0 && this.data.map((a, b) => ({
|
|
154491
|
-
// selected: false,
|
|
154492
|
-
// label: {
|
|
154493
|
-
// formatter: ({ name, value }) => value + '%',
|
|
154494
|
-
// },
|
|
154495
|
-
// labelLine: {
|
|
154496
|
-
// lineStyle: {
|
|
154497
|
-
// color: 'rgba(255, 255, 255, 0)'
|
|
154498
|
-
// },
|
|
154499
|
-
// smooth: 0.2,
|
|
154500
|
-
// length: 10,
|
|
154501
|
-
// length2: 10,
|
|
154502
|
-
// },
|
|
154503
|
-
// itemStyle: {
|
|
154504
|
-
// normal: {
|
|
154505
|
-
// color: a.color ? a.color : this.colors[b],
|
|
154506
|
-
// shadowBlur: 200,
|
|
154507
|
-
// shadowColor: 'rgba(0, 0, 0, 0.4)',
|
|
154508
|
-
// shadowOffsetX: -4,
|
|
154509
|
-
// shadowOffsetY: 4,
|
|
154510
|
-
// },
|
|
154511
|
-
// },
|
|
154512
|
-
// emphasis: {
|
|
154513
|
-
// itemStyle: {
|
|
154514
|
-
// shadowBlur: 10,
|
|
154515
|
-
// shadowOffsetX: 0,
|
|
154516
|
-
// shadowColor: 'rgba(0, 0, 0, 0.5)',
|
|
154517
|
-
// }
|
|
154518
|
-
// },
|
|
154519
|
-
// animationDelay: c => c * b * 100,
|
|
154520
|
-
// ...a,
|
|
154521
|
-
// })).sort((a, b) => (a.value - b.value)),
|
|
154522
|
-
// animationType: 'expansion',
|
|
154523
|
-
// animationEasing: 'elasticOut',
|
|
154524
|
-
// animationDelay: (idx) => idx * 200,
|
|
154525
|
-
// },
|
|
154526
|
-
{
|
|
154605
|
+
let series = [{
|
|
154527
154606
|
name: 'Access From',
|
|
154528
154607
|
type: 'pie',
|
|
154529
154608
|
radius: ['40%', '70%'],
|
|
@@ -154590,24 +154669,10 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
|
|
|
154590
154669
|
data: this.data.map(a => a.name)
|
|
154591
154670
|
},
|
|
154592
154671
|
calculable: true,
|
|
154593
|
-
// graphic: { // 添加原生图形元素组件
|
|
154594
|
-
// elements: [{
|
|
154595
|
-
// type: 'text', // 组件类型
|
|
154596
|
-
// left: 'center', //定位
|
|
154597
|
-
// top: '40%', // 定位
|
|
154598
|
-
// style: { // 样式
|
|
154599
|
-
// text: this.title, //文字
|
|
154600
|
-
// fontSize: 12, //文字大小
|
|
154601
|
-
// textAlign: 'center', //定位
|
|
154602
|
-
// fill: 'darkgray' // 字体颜色
|
|
154603
|
-
// }
|
|
154604
|
-
// }],
|
|
154605
|
-
// },
|
|
154606
154672
|
tooltip: {
|
|
154607
154673
|
trigger: 'item'
|
|
154608
154674
|
},
|
|
154609
154675
|
legend: {
|
|
154610
|
-
// top: '5%',
|
|
154611
154676
|
left: 'center'
|
|
154612
154677
|
},
|
|
154613
154678
|
series
|
|
@@ -160364,8 +160429,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
160364
160429
|
const h = arguments[0];
|
|
160365
160430
|
return h("div", {
|
|
160366
160431
|
"attrs": {
|
|
160367
|
-
"id": this.id
|
|
160368
|
-
"draggable": this.draggable
|
|
160432
|
+
"id": this.id
|
|
160369
160433
|
},
|
|
160370
160434
|
"class": "a-card",
|
|
160371
160435
|
"directives": [{
|
|
@@ -160383,12 +160447,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
160383
160447
|
},
|
|
160384
160448
|
"style": {
|
|
160385
160449
|
color: this.color,
|
|
160386
|
-
|
|
160450
|
+
minHeight: this.height,
|
|
160387
160451
|
background: this.background,
|
|
160388
160452
|
...this.styles
|
|
160389
160453
|
}
|
|
160390
160454
|
}, [this.title && h("div", {
|
|
160391
|
-
"class": "a-card-head"
|
|
160455
|
+
"class": "a-card-head",
|
|
160456
|
+
"attrs": {
|
|
160457
|
+
"draggable": this.draggable
|
|
160458
|
+
}
|
|
160392
160459
|
}, [h("span", {
|
|
160393
160460
|
"class": "text"
|
|
160394
160461
|
}, [this.title]), this.reviewText != '' && h("span", {
|
|
@@ -164941,12 +165008,13 @@ const AformItem = a => Promise.resolve(/* AMD require */).then(function() { var
|
|
|
164941
165008
|
// 格式化属性为模糊查询属性
|
|
164942
165009
|
for (let a in this.config) {
|
|
164943
165010
|
if (this.config[a] != '' && this.config[a].like && this.form[a] != '' && this.form[a] != null && this.form[a] != undefined) {
|
|
164944
|
-
data[a] = '%' + this.form[a]
|
|
165011
|
+
if (this.config[a].like == 'left') data[a] = '%' + this.form[a];
|
|
165012
|
+
if (this.config[a].like == 'right') data[a] = this.form[a] + '%';else data[a] = '%' + this.form[a] + '%';
|
|
164945
165013
|
} else {
|
|
164946
165014
|
if (this.config[a] != '' && (this.config[a].than || this.config[a].range || this.config[a].scope)) {
|
|
164947
165015
|
data[`${a}LE`] = this.form[`${a}LE`];
|
|
164948
165016
|
data[`${a}GE`] = this.form[`${a}GE`];
|
|
164949
|
-
} else data[a] = this.form[a];
|
|
165017
|
+
} else if (this.form[a].includes(' 00:00:00')) data[a] = '%' + this.form[a].split(' 00:00:00')[0] + '%';else data[a] = this.form[a];
|
|
164950
165018
|
}
|
|
164951
165019
|
}
|
|
164952
165020
|
}
|