element-ui-root 2.5.3 → 2.6.7

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.umd.js CHANGED
@@ -13490,12 +13490,13 @@ const AformItem = a => Promise.resolve(/* AMD require */).then(function() { var
13490
13490
  // 格式化属性为模糊查询属性
13491
13491
  for (let a in this.config) {
13492
13492
  if (this.config[a] != '' && this.config[a].like && this.form[a] != '' && this.form[a] != null && this.form[a] != undefined) {
13493
- data[a] = '%' + this.form[a] + '%';
13493
+ if (this.config[a].like == 'left') data[a] = '%' + this.form[a];
13494
+ if (this.config[a].like == 'right') data[a] = this.form[a] + '%';else data[a] = '%' + this.form[a] + '%';
13494
13495
  } else {
13495
13496
  if (this.config[a] != '' && (this.config[a].than || this.config[a].range || this.config[a].scope)) {
13496
13497
  data[`${a}LE`] = this.form[`${a}LE`];
13497
13498
  data[`${a}GE`] = this.form[`${a}GE`];
13498
- } else data[a] = this.form[a];
13499
+ } 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];
13499
13500
  }
13500
13501
  }
13501
13502
  }
@@ -18948,6 +18949,8 @@ const Aupload = a => Promise.resolve(/* AMD require */).then(function() { var __
18948
18949
  return h("el-date-picker", {
18949
18950
  "attrs": {
18950
18951
  "align": "center",
18952
+ "format": "yyyy-MM-dd",
18953
+ "value-format": "yyyy-MM-dd HH:mm:ss",
18951
18954
  "type": props.type,
18952
18955
  "clearable": true,
18953
18956
  "placeholder": props.placeholder || `请选择${words}`,
@@ -18975,6 +18978,8 @@ const Aupload = a => Promise.resolve(/* AMD require */).then(function() { var __
18975
18978
  return h("el-date-picker", {
18976
18979
  "attrs": {
18977
18980
  "align": "center",
18981
+ "format": "yyyy-MM-dd",
18982
+ "value-format": "yyyy-MM-dd HH:mm:ss",
18978
18983
  "type": props.type,
18979
18984
  "clearable": true,
18980
18985
  "placeholder": props.placeholder || `请选择${words}`
@@ -21240,9 +21245,6 @@ __webpack_require__.r(__webpack_exports__);
21240
21245
 
21241
21246
  "use strict";
21242
21247
  __webpack_require__.r(__webpack_exports__);
21243
- /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
21244
- // const Aecharts = () => import('@/components/Aecharts');
21245
-
21246
21248
  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);
21247
21249
 
21248
21250
  /* harmony default export */ __webpack_exports__["default"] = ({
@@ -21252,47 +21254,35 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
21252
21254
  type: Array,
21253
21255
  default: () => [{
21254
21256
  name: '栏目一',
21255
- value: '20',
21256
- color: '#2f7ed8'
21257
+ value: '20'
21257
21258
  }, {
21258
21259
  name: '栏目二',
21259
- value: '60',
21260
- color: '#1ed76d'
21260
+ value: '60'
21261
21261
  }, {
21262
21262
  name: '栏目三',
21263
- value: '30',
21264
- color: '#8bbc21'
21263
+ value: '30'
21265
21264
  }, {
21266
21265
  name: '栏目四',
21267
- value: '50',
21268
- color: '#910000'
21266
+ value: '50'
21269
21267
  }, {
21270
21268
  name: '栏目五',
21271
- value: '80',
21272
- color: '#1aadce'
21269
+ value: '80'
21273
21270
  }, {
21274
21271
  name: '栏目六',
21275
- value: '10',
21276
- color: '#492970'
21272
+ value: '10'
21277
21273
  }, {
21278
21274
  name: '栏目七',
21279
- value: '15',
21280
- color: '#f28f43'
21275
+ value: '15'
21281
21276
  }, {
21282
21277
  name: '栏目八',
21283
- value: '25',
21284
- color: '#77a1e5'
21278
+ value: '25'
21285
21279
  }]
21286
21280
  },
21287
21281
  title: {
21288
- type: String,
21289
- default: () => '标题'
21290
- },
21291
- name: {
21292
21282
  type: String,
21293
21283
  default: () => ''
21294
21284
  },
21295
- color: {
21285
+ name: {
21296
21286
  type: String,
21297
21287
  default: () => ''
21298
21288
  },
@@ -21302,12 +21292,13 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
21302
21292
  },
21303
21293
  radius: {
21304
21294
  type: Array,
21305
- default: () => ['10%', '60%']
21295
+ default: () => ['30%', '60%']
21306
21296
  },
21307
21297
  roseType: {
21308
21298
  type: String,
21309
- default: () => 'radius'
21299
+ default: () => ''
21310
21300
  },
21301
+ // radius
21311
21302
  showLegend: {
21312
21303
  type: Boolean,
21313
21304
  default: () => false
@@ -21328,6 +21319,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
21328
21319
  };
21329
21320
  },
21330
21321
 
21322
+ watch: {
21323
+ data: {
21324
+ deep: true,
21325
+
21326
+ handler() {
21327
+ this.create();
21328
+ }
21329
+
21330
+ }
21331
+ },
21332
+
21331
21333
  created() {
21332
21334
  this.create();
21333
21335
  },
@@ -21339,21 +21341,18 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
21339
21341
  type: this.type,
21340
21342
  radius: this.radius,
21341
21343
  roseType: this.roseType,
21342
- center: ['50%', '50%'],
21344
+ center: ['50%', '55%'],
21343
21345
  data: this.data.length > 0 && this.data.map((a, b) => ({
21344
21346
  selected: false,
21345
21347
  label: {},
21346
21348
  labelLine: {
21347
- lineStyle: {
21348
- color: 'rgba(255, 255, 255, 0.3)'
21349
- },
21350
21349
  smooth: 0.2,
21351
21350
  length: 10,
21352
21351
  length2: 20
21353
21352
  },
21354
21353
  itemStyle: {
21355
21354
  normal: {
21356
- color: a.color ? a.color : this.color,
21355
+ color: a.color,
21357
21356
  shadowBlur: 200,
21358
21357
  shadowColor: 'rgba(0, 0, 0, 0.4)',
21359
21358
  shadowOffsetX: -4,
@@ -21368,11 +21367,12 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
21368
21367
  }
21369
21368
  },
21370
21369
  animationDelay: c => c * b * 100,
21370
+ name: a.text || a.label || a.title,
21371
21371
  ...a
21372
21372
  })).sort((a, b) => a.value - b.value),
21373
21373
  animationType: 'scale',
21374
21374
  animationEasing: 'elasticOut',
21375
- animationDelay: idx => Math.random() * 200
21375
+ animationDelay: () => Math.random() * 200
21376
21376
  }];
21377
21377
  this.option = {
21378
21378
  backgroundColor: this.backgroundColor,
@@ -21387,7 +21387,9 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
21387
21387
  tooltip: {
21388
21388
  trigger: 'item'
21389
21389
  },
21390
- legend: Object(_tools__WEBPACK_IMPORTED_MODULE_0__["getLegend"])(this.showLegend, this.type),
21390
+ legend: {
21391
+ left: 'center'
21392
+ },
21391
21393
  series
21392
21394
  };
21393
21395
  }
@@ -22311,14 +22313,6 @@ __webpack_require__.r(__webpack_exports__);
22311
22313
  };
22312
22314
  },
22313
22315
 
22314
- // watch: {
22315
- // data: {
22316
- // deep: true,
22317
- // handler(prev, next) {
22318
- // if (JSON.stringify(prev) != JSON.stringify(next)) this.create();
22319
- // }
22320
- // },
22321
- // },
22322
22316
  watch: {
22323
22317
  data(prev, next) {
22324
22318
  if (JSON.stringify(prev) != JSON.stringify(next)) this.create();
@@ -25088,10 +25082,8 @@ module.exports = _default;
25088
25082
 
25089
25083
  "use strict";
25090
25084
  __webpack_require__.r(__webpack_exports__);
25091
- /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
25092
- /* harmony import */ var _const__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("415d");
25085
+ /* harmony import */ var _const__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("415d");
25093
25086
 
25094
- // const Aecharts = () => import('@/components/Aecharts');
25095
25087
 
25096
25088
  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);
25097
25089
 
@@ -25195,7 +25187,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
25195
25187
  barWidth: 14,
25196
25188
  ...a
25197
25189
  }));
25198
- this.option = { ...Object(_const__WEBPACK_IMPORTED_MODULE_1__["common"])(this._props),
25190
+ this.option = { ...Object(_const__WEBPACK_IMPORTED_MODULE_0__["common"])(this._props),
25199
25191
  series: [{
25200
25192
  type: 'bar',
25201
25193
  barWidth: 10,
@@ -27230,7 +27222,7 @@ __webpack_require__("e659");
27230
27222
  "use strict";
27231
27223
  __webpack_require__.r(__webpack_exports__);
27232
27224
  /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
27233
- // const Aecharts = () => import('@/components/Aecharts');
27225
+
27234
27226
 
27235
27227
  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);
27236
27228
 
@@ -45704,7 +45696,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
45704
45696
  "use strict";
45705
45697
  __webpack_require__.r(__webpack_exports__);
45706
45698
  /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
45707
- // const Aecharts = () => import('@/components/Aecharts');
45699
+
45708
45700
 
45709
45701
  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);
45710
45702
 
@@ -51171,7 +51163,7 @@ exports.getViewRect = getViewRect;
51171
51163
  "use strict";
51172
51164
  __webpack_require__.r(__webpack_exports__);
51173
51165
  /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
51174
- // const Aecharts = () => import('@/components/Aecharts');
51166
+
51175
51167
 
51176
51168
  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);
51177
51169
 
@@ -51180,8 +51172,13 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
51180
51172
  props: {
51181
51173
  data: {
51182
51174
  type: Array,
51183
- default: () => [// { id: 1, name: '栏目一', type: 'bar', value: [55, 43, 44, 32, 54, 31, 56, 23, 53, 12, 11, 21], color: '' },
51184
- {
51175
+ default: () => [{
51176
+ id: 1,
51177
+ name: '栏目一',
51178
+ type: 'bar',
51179
+ value: [55, 43, 44, 32, 54, 31, 56, 23, 53, 12, 11, 21],
51180
+ color: ''
51181
+ }, {
51185
51182
  id: 2,
51186
51183
  name: '栏目一',
51187
51184
  type: 'line',
@@ -58933,9 +58930,6 @@ module.exports = _default;
58933
58930
 
58934
58931
  "use strict";
58935
58932
  __webpack_require__.r(__webpack_exports__);
58936
- /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
58937
- // const Aecharts = () => import('@/components/Aecharts');
58938
-
58939
58933
  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);
58940
58934
 
58941
58935
  /* harmony default export */ __webpack_exports__["default"] = ({
@@ -59019,7 +59013,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
59019
59013
  },
59020
59014
  color: {
59021
59015
  type: String,
59022
- default: () => 'red'
59016
+ default: () => ''
59023
59017
  },
59024
59018
  colors: {
59025
59019
  type: Array,
@@ -59045,6 +59039,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
59045
59039
  };
59046
59040
  },
59047
59041
 
59042
+ watch: {
59043
+ data: {
59044
+ deep: true,
59045
+
59046
+ handler() {
59047
+ this.create();
59048
+ }
59049
+
59050
+ }
59051
+ },
59052
+
59048
59053
  created() {
59049
59054
  this.create();
59050
59055
  },
@@ -59060,7 +59065,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
59060
59065
  name: a.label ? a.label : a.title ? a.title : a.text ? a.text : a.name ? a.name : '匿名',
59061
59066
  value: a.value ? a.value : a.number ? a.number : a.code ? a.code : '0',
59062
59067
  itemStyle: {
59063
- color: a.color ? a.color : colors[b],
59068
+ color: a.color ? a.color : this.color != '' ? this.color : colors[b],
59064
59069
  borderWidth: 10
59065
59070
  },
59066
59071
  ...a
@@ -59075,14 +59080,12 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
59075
59080
  bottom: 0,
59076
59081
  containLabel: true
59077
59082
  },
59078
- // legend: getLegend(false, this.type),
59079
59083
  xAxis: {
59080
59084
  show: true,
59081
59085
  type: 'category',
59082
59086
  data: labels,
59083
59087
  splitLine: {
59084
- show: false // 是否显示分割线
59085
-
59088
+ show: false
59086
59089
  },
59087
59090
  axisPointer: {
59088
59091
  type: 'shadow'
@@ -59091,10 +59094,16 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
59091
59094
  yAxis: {
59092
59095
  show: true,
59093
59096
  splitLine: {
59094
- show: false // 是否显示分割线
59095
-
59097
+ show: false
59096
59098
  }
59097
59099
  },
59100
+ dataZoom: {
59101
+ show: true,
59102
+ type: 'slider',
59103
+ height: 20,
59104
+ start: 0,
59105
+ end: 40
59106
+ },
59098
59107
  series: [{
59099
59108
  type: this.type,
59100
59109
  data: values,
@@ -130734,6 +130743,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
130734
130743
  };
130735
130744
  },
130736
130745
 
130746
+ watch: {
130747
+ data: {
130748
+ deep: true,
130749
+
130750
+ handler() {
130751
+ this.create();
130752
+ }
130753
+
130754
+ }
130755
+ },
130756
+
130737
130757
  created() {
130738
130758
  this.create();
130739
130759
  },
@@ -133061,7 +133081,7 @@ ComponentView.extend({
133061
133081
  "use strict";
133062
133082
  __webpack_require__.r(__webpack_exports__);
133063
133083
  /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
133064
- // const Aecharts = () => import('@/components/Aecharts');
133084
+
133065
133085
 
133066
133086
  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);
133067
133087
 
@@ -133075,12 +133095,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
133075
133095
  name: '栏目一',
133076
133096
  value: [55, 43, 44, 32, 54, 31, 56, 23, 53, 12, 11, 21],
133077
133097
  color: ''
133078
- } // { id: 2, label: '栏目二', value: [32, 9, 22, 32, 54, 21, 23, 32, 32, 56, 77, 55], color: '' },
133079
- // { id: 3, label: '栏目三', value: [67, 6, 44, 13, 54, 12, 32, 11, 32, 56, 32, 32], color: '' },
133080
- // { id: 4, label: '栏目四', value: [70, 32, 55, 42, 58, 12, 13, 42, 53, 56, 77, 54], color: '' },
133081
- // { id: 14, label: '栏目五', value: [21, 81, 78, 87, 55, 12, 13, 41, 53, 56, 89, 65], color: '' },
133082
- // { id: 15, label: '栏目六', value: [67, 31, 44, 13, 53, 12, 55, 23, 53, 56, 16, 76], color: '' },
133083
- ]
133098
+ }]
133084
133099
  },
133085
133100
  type: {
133086
133101
  type: String,
@@ -133122,6 +133137,17 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
133122
133137
  };
133123
133138
  },
133124
133139
 
133140
+ watch: {
133141
+ data: {
133142
+ deep: true,
133143
+
133144
+ handler() {
133145
+ this.create();
133146
+ }
133147
+
133148
+ }
133149
+ },
133150
+
133125
133151
  created() {
133126
133152
  this.create();
133127
133153
  },
@@ -134804,7 +134830,6 @@ const Aempty = a => Promise.resolve(/* AMD require */).then(function() { var __W
134804
134830
 
134805
134831
  "use strict";
134806
134832
  __webpack_require__.r(__webpack_exports__);
134807
- // const Aecharts = () => import('@/components/Aecharts');
134808
134833
  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);
134809
134834
 
134810
134835
  /* harmony default export */ __webpack_exports__["default"] = ({
@@ -137067,7 +137092,7 @@ __webpack_require__.r(__webpack_exports__);
137067
137092
  /* harmony import */ var echarts_gl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(echarts_gl__WEBPACK_IMPORTED_MODULE_0__);
137068
137093
  /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("a0e9");
137069
137094
 
137070
- // const Aecharts = () => import('@/components/Aecharts');
137095
+
137071
137096
 
137072
137097
  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);
137073
137098
 
@@ -154405,9 +154430,6 @@ echarts.registerVisual({
154405
154430
 
154406
154431
  "use strict";
154407
154432
  __webpack_require__.r(__webpack_exports__);
154408
- /* harmony import */ var _tools__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a0e9");
154409
- // const Aecharts = () => import('@/components/Aecharts');
154410
-
154411
154433
  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);
154412
154434
 
154413
154435
  /* harmony default export */ __webpack_exports__["default"] = ({
@@ -154490,49 +154512,7 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
154490
154512
 
154491
154513
  methods: {
154492
154514
  create() {
154493
- let series = [// {
154494
- // name: this.title,
154495
- // type: this.type,
154496
- // radius: this.radius,
154497
- // roseType: this.roseType,
154498
- // center: ['50%', '50%'], // 位置调整
154499
- // data: this.data.length > 0 && this.data.map((a, b) => ({
154500
- // selected: false,
154501
- // label: {
154502
- // formatter: ({ name, value }) => value + '%',
154503
- // },
154504
- // labelLine: {
154505
- // lineStyle: {
154506
- // color: 'rgba(255, 255, 255, 0)'
154507
- // },
154508
- // smooth: 0.2,
154509
- // length: 10,
154510
- // length2: 10,
154511
- // },
154512
- // itemStyle: {
154513
- // normal: {
154514
- // color: a.color ? a.color : this.colors[b],
154515
- // shadowBlur: 200,
154516
- // shadowColor: 'rgba(0, 0, 0, 0.4)',
154517
- // shadowOffsetX: -4,
154518
- // shadowOffsetY: 4,
154519
- // },
154520
- // },
154521
- // emphasis: {
154522
- // itemStyle: {
154523
- // shadowBlur: 10,
154524
- // shadowOffsetX: 0,
154525
- // shadowColor: 'rgba(0, 0, 0, 0.5)',
154526
- // }
154527
- // },
154528
- // animationDelay: c => c * b * 100,
154529
- // ...a,
154530
- // })).sort((a, b) => (a.value - b.value)),
154531
- // animationType: 'expansion',
154532
- // animationEasing: 'elasticOut',
154533
- // animationDelay: (idx) => idx * 200,
154534
- // },
154535
- {
154515
+ let series = [{
154536
154516
  name: 'Access From',
154537
154517
  type: 'pie',
154538
154518
  radius: ['40%', '70%'],
@@ -154599,24 +154579,10 @@ const Aecharts = a => Promise.resolve(/* AMD require */).then(function() { var _
154599
154579
  data: this.data.map(a => a.name)
154600
154580
  },
154601
154581
  calculable: true,
154602
- // graphic: { // 添加原生图形元素组件
154603
- // elements: [{
154604
- // type: 'text', // 组件类型
154605
- // left: 'center', //定位
154606
- // top: '40%', // 定位
154607
- // style: { // 样式
154608
- // text: this.title, //文字
154609
- // fontSize: 12, //文字大小
154610
- // textAlign: 'center', //定位
154611
- // fill: 'darkgray' // 字体颜色
154612
- // }
154613
- // }],
154614
- // },
154615
154582
  tooltip: {
154616
154583
  trigger: 'item'
154617
154584
  },
154618
154585
  legend: {
154619
- // top: '5%',
154620
154586
  left: 'center'
154621
154587
  },
154622
154588
  series
@@ -160373,8 +160339,7 @@ __webpack_require__.r(__webpack_exports__);
160373
160339
  const h = arguments[0];
160374
160340
  return h("div", {
160375
160341
  "attrs": {
160376
- "id": this.id,
160377
- "draggable": this.draggable
160342
+ "id": this.id
160378
160343
  },
160379
160344
  "class": "a-card",
160380
160345
  "directives": [{
@@ -160392,12 +160357,15 @@ __webpack_require__.r(__webpack_exports__);
160392
160357
  },
160393
160358
  "style": {
160394
160359
  color: this.color,
160395
- height: this.height,
160360
+ minHeight: this.height,
160396
160361
  background: this.background,
160397
160362
  ...this.styles
160398
160363
  }
160399
160364
  }, [this.title && h("div", {
160400
- "class": "a-card-head"
160365
+ "class": "a-card-head",
160366
+ "attrs": {
160367
+ "draggable": this.draggable
160368
+ }
160401
160369
  }, [h("span", {
160402
160370
  "class": "text"
160403
160371
  }, [this.title]), this.reviewText != '' && h("span", {
@@ -164950,12 +164918,13 @@ const AformItem = a => Promise.resolve(/* AMD require */).then(function() { var
164950
164918
  // 格式化属性为模糊查询属性
164951
164919
  for (let a in this.config) {
164952
164920
  if (this.config[a] != '' && this.config[a].like && this.form[a] != '' && this.form[a] != null && this.form[a] != undefined) {
164953
- data[a] = '%' + this.form[a] + '%';
164921
+ if (this.config[a].like == 'left') data[a] = '%' + this.form[a];
164922
+ if (this.config[a].like == 'right') data[a] = this.form[a] + '%';else data[a] = '%' + this.form[a] + '%';
164954
164923
  } else {
164955
164924
  if (this.config[a] != '' && (this.config[a].than || this.config[a].range || this.config[a].scope)) {
164956
164925
  data[`${a}LE`] = this.form[`${a}LE`];
164957
164926
  data[`${a}GE`] = this.form[`${a}GE`];
164958
- } else data[a] = this.form[a];
164927
+ } 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];
164959
164928
  }
164960
164929
  }
164961
164930
  }