@ecan-bi/datav 1.0.76 → 1.0.78

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
@@ -1,4 +1,4 @@
1
- /*! @ecan-bi/datav@1.0.76 */
1
+ /*! @ecan-bi/datav@1.0.78 */
2
2
  (function(global, factory) {
3
3
  typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("vue"), require("echarts/core"), require("resize-detector"), require("ant-design-vue"), require("ant-design-vue/es/spin/style"), require("ant-design-vue/es/skeleton/style"), require("lodash-es"), require("axios"), require("mitt"), require("dayjs"), require("ant-design-vue/es/progress/style"), require("ant-design-vue/es/input/style"), require("ant-design-vue/es/date-picker/style"), require("ant-design-vue/es/date-picker/locale/zh_CN"), require("ant-design-vue/es/select/style"), require("ant-design-vue/es/button/style"), require("echarts/renderers"), require("echarts/charts"), require("echarts/components"), require("echarts"), require("ant-design-vue/es/modal/style"), require("ant-design-vue/es/table/style")) : typeof define === "function" && define.amd ? define(["exports", "vue", "echarts/core", "resize-detector", "ant-design-vue", "ant-design-vue/es/spin/style", "ant-design-vue/es/skeleton/style", "lodash-es", "axios", "mitt", "dayjs", "ant-design-vue/es/progress/style", "ant-design-vue/es/input/style", "ant-design-vue/es/date-picker/style", "ant-design-vue/es/date-picker/locale/zh_CN", "ant-design-vue/es/select/style", "ant-design-vue/es/button/style", "echarts/renderers", "echarts/charts", "echarts/components", "echarts", "ant-design-vue/es/modal/style", "ant-design-vue/es/table/style"], factory) : (global = typeof globalThis !== "undefined" ? globalThis : global || self, factory(global["@ecan/bi-datav"] = {}, global.vue, global["echarts/core"], global["resize-detector"], global["ant-design-vue"], null, null, global["lodash-es"], global.axios, global.mitt, global.dayjs, null, null, null, global["ant-design-vue/es/date-picker/locale/zh_CN"], null, null, global["echarts/renderers"], global["echarts/charts"], global["echarts/components"], global.echarts));
4
4
  })(this, function(exports2, vue, core, resizeDetector, antDesignVue, style$1, style$2, lodashEs, axios, mitt, dayjs, style$3, style$4, style$5, locale, style$6, style$7, renderers, charts, components$1, echarts) {
@@ -6368,15 +6368,19 @@
6368
6368
  return;
6369
6369
  dataSource.value = data;
6370
6370
  });
6371
+ const orderCondition = vue.ref(void 0);
6371
6372
  const requestData = useRequestData(props2);
6372
6373
  const loading = vue.ref(false);
6373
- const handleRequestData = async () => {
6374
+ const handleRequestData = async (isUseLoading = true) => {
6374
6375
  var _a2;
6375
6376
  try {
6376
- loading.value = true;
6377
+ if (isUseLoading)
6378
+ loading.value = true;
6377
6379
  const res = await requestData({
6378
6380
  pageNum: vue.unref(pageNum),
6379
- pageSize: vue.unref(pageSize)
6381
+ pageSize: vue.unref(pageSize),
6382
+ orderCondition: vue.unref(orderCondition),
6383
+ layer: "1"
6380
6384
  });
6381
6385
  const { rows = [], total: tableTotal = 0 } = ((_a2 = res == null ? void 0 : res.data) == null ? void 0 : _a2.data) || {};
6382
6386
  total.value = tableTotal;
@@ -6387,8 +6391,21 @@
6387
6391
  loading.value = false;
6388
6392
  }
6389
6393
  };
6390
- const tableChange = ({ current }, _filters, _sorter) => {
6394
+ const tableChange = ({ current }, _filters, sorter) => {
6391
6395
  pageNum.value = current;
6396
+ if (sorter && Object.keys(sorter).length > 0) {
6397
+ const { field, order } = sorter;
6398
+ const map = {
6399
+ ascend: "asc",
6400
+ descend: "desc"
6401
+ };
6402
+ const fieldOrder = map[order];
6403
+ if (field != null && fieldOrder != null) {
6404
+ orderCondition.value = field + " " + fieldOrder;
6405
+ pageNum.value = 1;
6406
+ }
6407
+ }
6408
+ refreshData(false);
6392
6409
  };
6393
6410
  const pagination = vue.computed(() => {
6394
6411
  const simple = props2.simple;
@@ -6467,12 +6484,12 @@
6467
6484
  setGlobalModel(id, { ...modal, RECORD: record });
6468
6485
  })
6469
6486
  });
6470
- const refreshData = () => {
6487
+ const refreshData = (isUseLoading = true) => {
6471
6488
  if (vue.unref(pageMode) === "design")
6472
6489
  return;
6473
6490
  switch (props2.dataType) {
6474
6491
  case "request":
6475
- handleRequestData();
6492
+ handleRequestData(isUseLoading);
6476
6493
  break;
6477
6494
  case "indicator":
6478
6495
  handleIndicatorData();
@@ -6672,7 +6689,7 @@
6672
6689
  }, 8, ["loading"])
6673
6690
  ], 4);
6674
6691
  }
6675
- const Table = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-56012732"]]);
6692
+ const Table = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-4ed03b13"]]);
6676
6693
  const EcanTable = withInstall(Table);
6677
6694
  const mapProps = {
6678
6695
  ...props,