eoss-mobiles 0.2.44 → 0.2.46

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.
Files changed (55) hide show
  1. package/lib/action-sheet.js +2 -2
  2. package/lib/button-group.js +2 -2
  3. package/lib/button.js +2 -2
  4. package/lib/calendar.js +2 -2
  5. package/lib/cascader.js +2 -2
  6. package/lib/cell.js +2 -2
  7. package/lib/checkbox.js +5 -5
  8. package/lib/circle.js +2 -2
  9. package/lib/count-down.js +2 -2
  10. package/lib/date.js +2 -2
  11. package/lib/empty.js +2 -2
  12. package/lib/eoss-mobile.common.js +633 -205
  13. package/lib/esign.js +2 -2
  14. package/lib/field.js +2 -2
  15. package/lib/flow-btn.js +5 -5
  16. package/lib/flow-list.js +5 -5
  17. package/lib/flow.js +42 -32
  18. package/lib/form.js +2 -2
  19. package/lib/grid-item.js +2 -2
  20. package/lib/grid.js +576 -157
  21. package/lib/image-preview.js +2 -2
  22. package/lib/image.js +2 -2
  23. package/lib/index.js +1 -1
  24. package/lib/list.js +2 -2
  25. package/lib/loading.js +2 -2
  26. package/lib/nav-bar.js +2 -2
  27. package/lib/notice-bar.js +2 -2
  28. package/lib/pagination.js +2 -2
  29. package/lib/picker.js +9 -7
  30. package/lib/popover.js +2 -2
  31. package/lib/popup.js +2 -2
  32. package/lib/pull-refresh.js +2 -2
  33. package/lib/radio.js +6 -5
  34. package/lib/rate.js +2 -2
  35. package/lib/retrial-auth.js +5 -5
  36. package/lib/search.js +2 -2
  37. package/lib/selector.js +6 -5
  38. package/lib/skeleton.js +2 -2
  39. package/lib/stepper.js +2 -2
  40. package/lib/swipe.js +2 -2
  41. package/lib/switch.js +2 -2
  42. package/lib/tab.js +2 -2
  43. package/lib/table-column.js +6 -5
  44. package/lib/table.js +7 -7
  45. package/lib/tabs.js +2 -2
  46. package/lib/tag.js +2 -2
  47. package/lib/uploader.js +2 -2
  48. package/lib/utils/axios.js +3 -3
  49. package/package.json +3 -1
  50. package/packages/flow/src/components/Handle.vue +29 -16
  51. package/packages/flow/src/components/StartFlow.vue +9 -9
  52. package/packages/grid/src/main.vue +254 -70
  53. package/packages/picker/src/main.vue +1 -0
  54. package/src/index.js +1 -1
  55. package/src/utils/axios.js +3 -3
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 5);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 6);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -117,25 +117,31 @@ module.exports = require("qs");
117
117
 
118
118
  /***/ }),
119
119
  /* 5 */
120
+ /***/ (function(module, exports) {
121
+
122
+ module.exports = require("vuedraggable");
123
+
124
+ /***/ }),
125
+ /* 6 */
120
126
  /***/ (function(module, exports, __webpack_require__) {
121
127
 
122
- module.exports = __webpack_require__(8);
128
+ module.exports = __webpack_require__(9);
123
129
 
124
130
 
125
131
  /***/ }),
126
- /* 6 */
132
+ /* 7 */
127
133
  /***/ (function(module, exports) {
128
134
 
129
135
  module.exports = require("sm-crypto");
130
136
 
131
137
  /***/ }),
132
- /* 7 */
138
+ /* 8 */
133
139
  /***/ (function(module, exports) {
134
140
 
135
141
  module.exports = require("element-ui/lib/theme-chalk/table.css");
136
142
 
137
143
  /***/ }),
138
- /* 8 */
144
+ /* 9 */
139
145
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
140
146
 
141
147
  "use strict";
@@ -1519,7 +1525,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
1519
1525
  // import { authCenter } from '../config/api';
1520
1526
 
1521
1527
  // import CryptoJS from 'crypto-js'
1522
- var sm2 = __webpack_require__(6).sm2;
1528
+ var sm2 = __webpack_require__(7).sm2;
1523
1529
  // /**
1524
1530
  // * esEncrypt
1525
1531
  // * @desc:sm2加密
@@ -3010,14 +3016,14 @@ var axios_ajax = function ajax(url) {
3010
3016
  baseURL: apiUrl,
3011
3017
  timeout: 60000,
3012
3018
  headers: {
3013
- // clientKey: 'csjk'
3019
+ 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
3014
3020
  },
3015
3021
  withCredentials: false
3016
3022
  });
3017
3023
  http.interceptors.request.use(function (config) {
3018
3024
  if ((params.params || params) instanceof FormData === false) {
3019
3025
  if (type === 'post' && !format) {
3020
- config.params = external_qs_default.a.stringify(params.params || params);
3026
+ config.data = external_qs_default.a.stringify(params.params || params);
3021
3027
  if (!config.headers['content-type'] && !headers['Content-Type']) {
3022
3028
  config.headers['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
3023
3029
  }
@@ -3068,6 +3074,7 @@ var axios_ajax = function ajax(url) {
3068
3074
  if (config.url.search('mecp/overtime') !== -1 || config.url.search('mecp/leave') !== -1 || config.url.search('contractext') !== -1 || config.url.search('getSysParam') !== -1) {
3069
3075
  delete config.headers.deviceId;
3070
3076
  }
3077
+
3071
3078
  return config;
3072
3079
  }, function (error) {
3073
3080
  return Promise.error(error);
@@ -3172,7 +3179,6 @@ var base = {
3172
3179
  }, headers, format);
3173
3180
  },
3174
3181
  post: function post(url, params, headers, format) {
3175
- console.log(params, 'params');
3176
3182
  if (params.params) {
3177
3183
  params.params.userId = params.params.userId || util.getStorage('userId');
3178
3184
  } else {
@@ -5522,8 +5528,8 @@ radio_src_main.install = function (Vue) {
5522
5528
  };
5523
5529
 
5524
5530
  /* harmony default export */ var packages_radio = (radio_src_main);
5525
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/picker/src/main.vue?vue&type=template&id=6f8d4ed8&
5526
- var mainvue_type_template_id_6f8d4ed8_render = function () {
5531
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/picker/src/main.vue?vue&type=template&id=6b7f8129&
5532
+ var mainvue_type_template_id_6b7f8129_render = function () {
5527
5533
  var _vm = this
5528
5534
  var _h = _vm.$createElement
5529
5535
  var _c = _vm._self._c || _h
@@ -5790,11 +5796,11 @@ var mainvue_type_template_id_6f8d4ed8_render = function () {
5790
5796
  1
5791
5797
  )
5792
5798
  }
5793
- var mainvue_type_template_id_6f8d4ed8_staticRenderFns = []
5794
- mainvue_type_template_id_6f8d4ed8_render._withStripped = true
5799
+ var mainvue_type_template_id_6b7f8129_staticRenderFns = []
5800
+ mainvue_type_template_id_6b7f8129_render._withStripped = true
5795
5801
 
5796
5802
 
5797
- // CONCATENATED MODULE: ./packages/picker/src/main.vue?vue&type=template&id=6f8d4ed8&
5803
+ // CONCATENATED MODULE: ./packages/picker/src/main.vue?vue&type=template&id=6b7f8129&
5798
5804
 
5799
5805
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/picker/src/main.vue?vue&type=script&lang=js&
5800
5806
  var src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -6137,6 +6143,7 @@ var mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
6137
6143
 
6138
6144
  methods: {
6139
6145
  handleClick: function handleClick(val) {
6146
+ if (this.disabled || this.readonly) return;
6140
6147
  if (this.linkTag) {
6141
6148
  this.$emit('tagClick', val);
6142
6149
  } else {
@@ -6352,8 +6359,8 @@ var mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
6352
6359
 
6353
6360
  var picker_src_main_component = normalizeComponent(
6354
6361
  packages_picker_src_mainvue_type_script_lang_js_,
6355
- mainvue_type_template_id_6f8d4ed8_render,
6356
- mainvue_type_template_id_6f8d4ed8_staticRenderFns,
6362
+ mainvue_type_template_id_6b7f8129_render,
6363
+ mainvue_type_template_id_6b7f8129_staticRenderFns,
6357
6364
  false,
6358
6365
  null,
6359
6366
  null,
@@ -6824,8 +6831,8 @@ uploader_src_main.install = function (Vue) {
6824
6831
  };
6825
6832
 
6826
6833
  /* harmony default export */ var uploader = (uploader_src_main);
6827
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/grid/src/main.vue?vue&type=template&id=b1bd9a9e&
6828
- var mainvue_type_template_id_b1bd9a9e_render = function () {
6834
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/grid/src/main.vue?vue&type=template&id=1f9590ec&
6835
+ var mainvue_type_template_id_1f9590ec_render = function () {
6829
6836
  var _vm = this
6830
6837
  var _h = _vm.$createElement
6831
6838
  var _c = _vm._self._c || _h
@@ -6852,142 +6859,366 @@ var mainvue_type_template_id_b1bd9a9e_render = function () {
6852
6859
  _vm.$listeners
6853
6860
  ),
6854
6861
  [
6855
- _vm._l(_vm.newData, function (item, index) {
6856
- return _c(
6857
- "van-grid-item",
6858
- _vm._b(
6862
+ _vm.draggable
6863
+ ? _c(
6864
+ "draggable",
6859
6865
  {
6860
- directives: [
6861
- {
6862
- name: "show",
6863
- rawName: "v-show",
6864
- value: _vm.newData && _vm.newData.length > 0,
6865
- expression: "newData && newData.length > 0",
6866
+ staticClass: "menu-list-draggable",
6867
+ staticStyle: { width: "100%" },
6868
+ model: {
6869
+ value: _vm.newData,
6870
+ callback: function ($$v) {
6871
+ _vm.newData = $$v
6866
6872
  },
6867
- ],
6868
- key: index,
6869
- class: { "em-grid-ellipsis": _vm.textEllipsis },
6870
- style: "width:" + 100 / _vm.columnNum + "%;",
6871
- on: {
6872
- click: function ($event) {
6873
- $event.stopPropagation()
6874
- _vm.goView($event, item)
6873
+ expression: "newData",
6874
+ },
6875
+ },
6876
+ [
6877
+ _c(
6878
+ "transition-group",
6879
+ {
6880
+ staticClass: "menu-list-draggable-item",
6881
+ staticStyle: { width: "100%" },
6875
6882
  },
6883
+ _vm._l(_vm.newData, function (item) {
6884
+ return _c(
6885
+ "div",
6886
+ {
6887
+ key: item.id,
6888
+ staticClass: "van-grid-item",
6889
+ style:
6890
+ "display: inline-block;width:" +
6891
+ 100 / _vm.columnNum +
6892
+ "%",
6893
+ on: {
6894
+ mousedown: function ($event) {
6895
+ $event.stopPropagation()
6896
+ _vm.onMouseDown(item)
6897
+ },
6898
+ mouseup: function ($event) {
6899
+ $event.stopPropagation()
6900
+ _vm.onMouseUp($event, item)
6901
+ },
6902
+ },
6903
+ },
6904
+ [
6905
+ _c(
6906
+ "div",
6907
+ {
6908
+ staticClass:
6909
+ "van-grid-item__content van-grid-item__content--center van-hairline",
6910
+ },
6911
+ [
6912
+ _c(
6913
+ "i",
6914
+ {
6915
+ staticClass: "van-icon van-grid-item__icon",
6916
+ class:
6917
+ item.icon.startsWith("http") &&
6918
+ item.icon.indexOf("/") != -1
6919
+ ? ""
6920
+ : "van-icon-" + item.icon,
6921
+ style: {
6922
+ fontSize:
6923
+ item.iconSize || _vm.$attrs["icon-size"]
6924
+ ? item.iconSize ||
6925
+ _vm.$attrs["icon-size"]
6926
+ : "",
6927
+ },
6928
+ },
6929
+ [
6930
+ item.icon.startsWith("http") ||
6931
+ item.icon.indexOf("/") != -1
6932
+ ? _c("img", {
6933
+ staticClass: "van-icon__image",
6934
+ style: {
6935
+ width:
6936
+ item.iconSize ||
6937
+ _vm.$attrs["icon-size"]
6938
+ ? item.iconSize ||
6939
+ _vm.$attrs["icon-size"]
6940
+ : "",
6941
+ height:
6942
+ item.iconSize ||
6943
+ _vm.$attrs["icon-size"]
6944
+ ? item.iconSize ||
6945
+ _vm.$attrs["icon-size"]
6946
+ : "",
6947
+ },
6948
+ attrs: { src: item.icon },
6949
+ })
6950
+ : _vm._e(),
6951
+ _c("div", {
6952
+ directives: [
6953
+ {
6954
+ name: "show",
6955
+ rawName: "v-show",
6956
+ value: item.dot,
6957
+ expression: "item.dot",
6958
+ },
6959
+ ],
6960
+ staticClass: "van-info van-info--dot",
6961
+ style: { background: item.dotColor || "" },
6962
+ }),
6963
+ _c(
6964
+ "div",
6965
+ {
6966
+ directives: [
6967
+ {
6968
+ name: "show",
6969
+ rawName: "v-show",
6970
+ value: item.badge,
6971
+ expression: "item.badge",
6972
+ },
6973
+ ],
6974
+ staticClass: "van-info",
6975
+ style: {
6976
+ background: _vm.badgeColor || "",
6977
+ },
6978
+ },
6979
+ [
6980
+ _vm._v(
6981
+ "\n " +
6982
+ _vm._s(
6983
+ _vm.maxBadge &&
6984
+ !isNaN(item.badge) &&
6985
+ Number(_vm.maxBadge) <
6986
+ Number(item.badge)
6987
+ ? _vm.maxBadge + "+"
6988
+ : item.badge
6989
+ ) +
6990
+ "\n "
6991
+ ),
6992
+ ]
6993
+ ),
6994
+ ]
6995
+ ),
6996
+ _c("em-popover", {
6997
+ attrs: {
6998
+ placement: _vm.placement,
6999
+ theme: _vm.popoverTheme,
7000
+ actions: _vm.popoverActions,
7001
+ },
7002
+ on: { select: _vm.popoverSelect },
7003
+ model: {
7004
+ value: item.showPopover,
7005
+ callback: function ($$v) {
7006
+ _vm.$set(item, "showPopover", $$v)
7007
+ },
7008
+ expression: "item.showPopover",
7009
+ },
7010
+ }),
7011
+ _c(
7012
+ "span",
7013
+ { staticClass: "van-grid-item__text" },
7014
+ [_vm._v(_vm._s(item.text))]
7015
+ ),
7016
+ _vm.showHide && item.menuType != "add"
7017
+ ? _c("van-icon", {
7018
+ staticClass: "em-grid-del",
7019
+ attrs: { name: "clear", size: "20px" },
7020
+ on: {
7021
+ click: function ($event) {
7022
+ $event.stopPropagation()
7023
+ _vm.handleHide(item)
7024
+ },
7025
+ },
7026
+ })
7027
+ : _vm._e(),
7028
+ item.showMenu
7029
+ ? _c(
7030
+ "div",
7031
+ { staticClass: "em-grid-select-box" },
7032
+ [
7033
+ _c("van-icon", {
7034
+ attrs: {
7035
+ size: "30px",
7036
+ color: "#fff",
7037
+ name: "success",
7038
+ },
7039
+ }),
7040
+ ],
7041
+ 1
7042
+ )
7043
+ : _vm._e(),
7044
+ ],
7045
+ 1
7046
+ ),
7047
+ ]
7048
+ )
7049
+ }),
7050
+ 0
7051
+ ),
7052
+ ],
7053
+ 1
7054
+ )
7055
+ : _vm._e(),
7056
+ _vm._l(_vm.newData, function (item) {
7057
+ return _c(
7058
+ "div",
7059
+ {
7060
+ directives: [
7061
+ {
7062
+ name: "show",
7063
+ rawName: "v-show",
7064
+ value:
7065
+ _vm.newData && _vm.newData.length > 0 && !_vm.draggable,
7066
+ expression: "newData && newData.length > 0 && !draggable",
7067
+ },
7068
+ ],
7069
+ key: item.id,
7070
+ staticClass: "van-grid-item",
7071
+ style:
7072
+ "display: inline-block;width:" + 100 / _vm.columnNum + "%",
7073
+ on: {
7074
+ mousedown: function ($event) {
7075
+ $event.stopPropagation()
7076
+ _vm.onMouseDown(item)
7077
+ },
7078
+ mouseup: function ($event) {
7079
+ $event.stopPropagation()
7080
+ _vm.onMouseUp($event, item)
6876
7081
  },
6877
7082
  },
6878
- "van-grid-item",
6879
- item,
6880
- false
6881
- ),
7083
+ },
6882
7084
  [
6883
7085
  _c(
6884
- "i",
7086
+ "div",
6885
7087
  {
6886
- staticClass: "van-icon van-grid-item__icon",
6887
- class:
6888
- item.icon.startsWith("http") &&
6889
- item.icon.indexOf("/") != -1
6890
- ? ""
6891
- : "van-icon-" + item.icon,
6892
- style: {
6893
- fontSize:
6894
- item.iconSize || _vm.$attrs["icon-size"]
6895
- ? item.iconSize || _vm.$attrs["icon-size"]
6896
- : "",
6897
- },
7088
+ staticClass:
7089
+ "van-grid-item__content van-grid-item__content--center van-hairline",
6898
7090
  },
6899
7091
  [
6900
- item.icon.startsWith("http") || item.icon.indexOf("/") != -1
6901
- ? _c("img", {
6902
- staticClass: "van-icon__image",
6903
- style: {
6904
- width:
6905
- item.iconSize || _vm.$attrs["icon-size"]
6906
- ? item.iconSize || _vm.$attrs["icon-size"]
6907
- : "",
6908
- height:
6909
- item.iconSize || _vm.$attrs["icon-size"]
6910
- ? item.iconSize || _vm.$attrs["icon-size"]
6911
- : "",
6912
- },
6913
- attrs: { src: item.icon },
6914
- })
6915
- : _vm._e(),
6916
- _c("div", {
6917
- directives: [
6918
- {
6919
- name: "show",
6920
- rawName: "v-show",
6921
- value: item.dot,
6922
- expression: "item.dot",
6923
- },
6924
- ],
6925
- staticClass: "van-info van-info--dot",
6926
- style: { background: item.dotColor || "" },
6927
- }),
6928
7092
  _c(
6929
- "div",
7093
+ "i",
6930
7094
  {
6931
- directives: [
6932
- {
6933
- name: "show",
6934
- rawName: "v-show",
6935
- value: item.badge,
6936
- expression: "item.badge",
6937
- },
6938
- ],
6939
- staticClass: "van-info",
6940
- style: { background: _vm.badgeColor || "" },
7095
+ staticClass: "van-icon van-grid-item__icon",
7096
+ class:
7097
+ item.icon.startsWith("http") &&
7098
+ item.icon.indexOf("/") != -1
7099
+ ? ""
7100
+ : "van-icon-" + item.icon,
7101
+ style: {
7102
+ fontSize:
7103
+ item.iconSize || _vm.$attrs["icon-size"]
7104
+ ? item.iconSize || _vm.$attrs["icon-size"]
7105
+ : "",
7106
+ },
6941
7107
  },
6942
7108
  [
6943
- _vm._v(
6944
- "\n " +
6945
- _vm._s(
6946
- _vm.maxBadge &&
6947
- !isNaN(item.badge) &&
6948
- Number(_vm.maxBadge) < Number(item.badge)
6949
- ? _vm.maxBadge + "+"
6950
- : item.badge
6951
- ) +
6952
- "\n "
7109
+ item.icon.startsWith("http") ||
7110
+ item.icon.indexOf("/") != -1
7111
+ ? _c("img", {
7112
+ staticClass: "van-icon__image",
7113
+ style: {
7114
+ width:
7115
+ item.iconSize || _vm.$attrs["icon-size"]
7116
+ ? item.iconSize || _vm.$attrs["icon-size"]
7117
+ : "",
7118
+ height:
7119
+ item.iconSize || _vm.$attrs["icon-size"]
7120
+ ? item.iconSize || _vm.$attrs["icon-size"]
7121
+ : "",
7122
+ },
7123
+ attrs: { src: item.icon },
7124
+ })
7125
+ : _vm._e(),
7126
+ _c("div", {
7127
+ directives: [
7128
+ {
7129
+ name: "show",
7130
+ rawName: "v-show",
7131
+ value: item.dot,
7132
+ expression: "item.dot",
7133
+ },
7134
+ ],
7135
+ staticClass: "van-info van-info--dot",
7136
+ style: { background: item.dotColor || "" },
7137
+ }),
7138
+ _c(
7139
+ "div",
7140
+ {
7141
+ directives: [
7142
+ {
7143
+ name: "show",
7144
+ rawName: "v-show",
7145
+ value: item.badge,
7146
+ expression: "item.badge",
7147
+ },
7148
+ ],
7149
+ staticClass: "van-info",
7150
+ style: { background: _vm.badgeColor || "" },
7151
+ },
7152
+ [
7153
+ _vm._v(
7154
+ "\n " +
7155
+ _vm._s(
7156
+ _vm.maxBadge &&
7157
+ !isNaN(item.badge) &&
7158
+ Number(_vm.maxBadge) < Number(item.badge)
7159
+ ? _vm.maxBadge + "+"
7160
+ : item.badge
7161
+ ) +
7162
+ "\n "
7163
+ ),
7164
+ ]
6953
7165
  ),
6954
7166
  ]
6955
7167
  ),
6956
- ]
6957
- ),
6958
- _c("span", { staticClass: "van-grid-item__text" }, [
6959
- _vm._v(_vm._s(item.text)),
6960
- ]),
6961
- _vm.showHide && item.menuType != "add"
6962
- ? _c("van-icon", {
6963
- staticClass: "em-grid-del",
6964
- attrs: { name: "clear", size: "20px" },
7168
+ _c("em-popover", {
7169
+ attrs: {
7170
+ placement: _vm.placement,
7171
+ theme: _vm.popoverTheme,
7172
+ actions: _vm.popoverActions,
7173
+ },
6965
7174
  on: {
6966
- click: function ($event) {
6967
- $event.stopPropagation()
6968
- _vm.handleHide(item)
7175
+ select: function ($event) {
7176
+ _vm.popoverSelect($event, item)
6969
7177
  },
6970
7178
  },
6971
- })
6972
- : _vm._e(),
6973
- item.showMenu
6974
- ? _c(
6975
- "div",
6976
- { staticClass: "em-grid-select-box" },
6977
- [
6978
- _c("van-icon", {
6979
- attrs: {
6980
- size: "30px",
6981
- color: "#fff",
6982
- name: "success",
7179
+ model: {
7180
+ value: item.showPopover,
7181
+ callback: function ($$v) {
7182
+ _vm.$set(item, "showPopover", $$v)
7183
+ },
7184
+ expression: "item.showPopover",
7185
+ },
7186
+ }),
7187
+ _c("span", { staticClass: "van-grid-item__text" }, [
7188
+ _vm._v(_vm._s(item.text)),
7189
+ ]),
7190
+ _vm.showHide && item.menuType != "add"
7191
+ ? _c("van-icon", {
7192
+ staticClass: "em-grid-del",
7193
+ attrs: { name: "clear", size: "20px" },
7194
+ on: {
7195
+ click: function ($event) {
7196
+ $event.stopPropagation()
7197
+ _vm.handleHide(item)
7198
+ },
6983
7199
  },
6984
- }),
6985
- ],
6986
- 1
6987
- )
6988
- : _vm._e(),
6989
- ],
6990
- 1
7200
+ })
7201
+ : _vm._e(),
7202
+ item.showMenu
7203
+ ? _c(
7204
+ "div",
7205
+ { staticClass: "em-grid-select-box" },
7206
+ [
7207
+ _c("van-icon", {
7208
+ attrs: {
7209
+ size: "30px",
7210
+ color: "#fff",
7211
+ name: "success",
7212
+ },
7213
+ }),
7214
+ ],
7215
+ 1
7216
+ )
7217
+ : _vm._e(),
7218
+ ],
7219
+ 1
7220
+ ),
7221
+ ]
6991
7222
  )
6992
7223
  }),
6993
7224
  _vm._t("default"),
@@ -7071,11 +7302,15 @@ var mainvue_type_template_id_b1bd9a9e_render = function () {
7071
7302
  1
7072
7303
  )
7073
7304
  }
7074
- var mainvue_type_template_id_b1bd9a9e_staticRenderFns = []
7075
- mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7305
+ var mainvue_type_template_id_1f9590ec_staticRenderFns = []
7306
+ mainvue_type_template_id_1f9590ec_render._withStripped = true
7076
7307
 
7077
7308
 
7078
- // CONCATENATED MODULE: ./packages/grid/src/main.vue?vue&type=template&id=b1bd9a9e&
7309
+ // CONCATENATED MODULE: ./packages/grid/src/main.vue?vue&type=template&id=1f9590ec&
7310
+
7311
+ // EXTERNAL MODULE: external "vuedraggable"
7312
+ var external_vuedraggable_ = __webpack_require__(5);
7313
+ var external_vuedraggable_default = /*#__PURE__*/__webpack_require__.n(external_vuedraggable_);
7079
7314
 
7080
7315
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/grid/src/main.vue?vue&type=script&lang=js&
7081
7316
  //
@@ -7169,10 +7404,137 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7169
7404
  //
7170
7405
  //
7171
7406
  //
7407
+ //
7408
+ //
7409
+ //
7410
+ //
7411
+ //
7412
+ //
7413
+ //
7414
+ //
7415
+ //
7416
+ //
7417
+ //
7418
+ //
7419
+ //
7420
+ //
7421
+ //
7422
+ //
7423
+ //
7424
+ //
7425
+ //
7426
+ //
7427
+ //
7428
+ //
7429
+ //
7430
+ //
7431
+ //
7432
+ //
7433
+ //
7434
+ //
7435
+ //
7436
+ //
7437
+ //
7438
+ //
7439
+ //
7440
+ //
7441
+ //
7442
+ //
7443
+ //
7444
+ //
7445
+ //
7446
+ //
7447
+ //
7448
+ //
7449
+ //
7450
+ //
7451
+ //
7452
+ //
7453
+ //
7454
+ //
7455
+ //
7456
+ //
7457
+ //
7458
+ //
7459
+ //
7460
+ //
7461
+ //
7462
+ //
7463
+ //
7464
+ //
7465
+ //
7466
+ //
7467
+ //
7468
+ //
7469
+ //
7470
+ //
7471
+ //
7472
+ //
7473
+ //
7474
+ //
7475
+ //
7476
+ //
7477
+ //
7478
+ //
7479
+ //
7480
+ //
7481
+ //
7482
+ //
7483
+ //
7484
+ //
7485
+ //
7486
+ //
7487
+ //
7488
+ //
7489
+ //
7490
+ //
7491
+ //
7492
+ //
7493
+ //
7494
+ //
7495
+ //
7496
+ //
7497
+ //
7498
+ //
7499
+ //
7500
+ //
7501
+ //
7502
+ //
7503
+ //
7504
+ //
7505
+ //
7506
+ //
7507
+ //
7508
+ //
7509
+ //
7510
+ //
7511
+ //
7512
+ //
7513
+ //
7514
+ //
7515
+ //
7516
+ //
7517
+ //
7518
+ //
7519
+ //
7520
+ //
7521
+ //
7522
+ //
7523
+ //
7524
+ //
7525
+ //
7526
+ //
7527
+ //
7528
+ //
7529
+ //
7530
+ //
7531
+ //
7532
+
7172
7533
 
7173
7534
  /* harmony default export */ var grid_src_mainvue_type_script_lang_js_ = ({
7174
7535
  name: 'EmGrid',
7175
7536
  inheritAttrs: false,
7537
+ components: { draggable: external_vuedraggable_default.a },
7176
7538
  props: {
7177
7539
  data: {
7178
7540
  type: Array,
@@ -7221,15 +7583,38 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7221
7583
  addMenuIconSize: {
7222
7584
  type: String,
7223
7585
  default: '40px'
7586
+ },
7587
+ draggable: {
7588
+ type: Boolean,
7589
+ default: false
7590
+ },
7591
+ popoverActions: {
7592
+ type: Array,
7593
+ default: function _default() {
7594
+ return [{ text: '隐藏菜单', type: 'hideMenu' }];
7595
+ }
7596
+ },
7597
+ isTouch: {
7598
+ type: Boolean,
7599
+ default: false
7600
+ },
7601
+ placement: {
7602
+ type: String,
7603
+ default: 'top'
7604
+ },
7605
+ popoverTheme: {
7606
+ type: String,
7607
+ default: 'dark'
7224
7608
  }
7225
7609
  },
7226
7610
  data: function data() {
7227
7611
  return {
7228
- lastTapTime: 0,
7229
7612
  timer: null,
7230
7613
  showHide: false,
7614
+ isLongPress: false,
7231
7615
  newData: [],
7232
7616
  show: false,
7617
+ showPopover: false,
7233
7618
  selectMenuArr: [],
7234
7619
  hideMenuList: []
7235
7620
  };
@@ -7255,24 +7640,56 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7255
7640
  }
7256
7641
  },
7257
7642
  methods: {
7643
+ popoverSelect: function popoverSelect(val, item) {
7644
+ if (val.type == 'hideMenu') {
7645
+ this.handleHide(item);
7646
+ } else {
7647
+ this.$emit('touchSelect', { action: val, data: item });
7648
+ }
7649
+ },
7650
+ onMouseDown: function onMouseDown(item) {
7651
+ var _this = this;
7652
+
7653
+ // this.showPopover = true
7654
+ if (this.draggable || !this.isTouch) return;
7655
+ this.isLongPress = false;
7656
+ this.timer = setTimeout(function () {
7657
+ if (_this.isLongPress === false) {
7658
+ _this.isLongPress = true;
7659
+ _this.lastTapTime = new Date().getTime();
7660
+ _this.$set(item, 'showPopover', true);
7661
+ }
7662
+ }, 500);
7663
+ },
7664
+ onMouseUp: function onMouseUp($event, item) {
7665
+ if (this.isLongPress === false) {
7666
+ this.lastTapTime = new Date().getTime();
7667
+ this.$set(item, 'showPopover', false);
7668
+ this.goView($event, item);
7669
+ // 执行相应的操作
7670
+ }
7671
+ this.isLongPress = false;
7672
+ clearTimeout(this.timer);
7673
+ },
7258
7674
  hideDelIcon: function hideDelIcon() {
7259
7675
  this.showHide = false;
7260
7676
  },
7261
7677
  handleShowMenu: function handleShowMenu() {
7262
- var _this = this;
7678
+ var _this2 = this;
7263
7679
 
7264
- var str = this.selectMenuArr.join(',');
7680
+ var str = this.selectMenuArr;
7681
+ // let str = this.selectMenuArr.join(',');
7265
7682
  if (Array.isArray(this.hideMenu)) {
7266
7683
  var hideArr = this.hideMenuList.filter(function (x) {
7267
- return str.indexOf(x[_this.hideMenuKey]) == -1;
7684
+ return str.indexOf(x[_this2.hideMenuKey]) == -1;
7268
7685
  });
7269
7686
  this.$emit('hide', hideArr);
7270
7687
  } else {
7271
7688
  var hide = this.hideMenuList.filter(function (x) {
7272
- return str.indexOf(x[_this.hideMenuKey]) == -1;
7689
+ return str.indexOf(x[_this2.hideMenuKey]) == -1;
7273
7690
  });
7274
7691
  hide = hide.map(function (x) {
7275
- return x[_this.hideMenuKey];
7692
+ return x[_this2.hideMenuKey];
7276
7693
  });
7277
7694
  this.$emit('hide', hide.join(','));
7278
7695
  }
@@ -7280,11 +7697,11 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7280
7697
  this.show = false;
7281
7698
  },
7282
7699
  selectMenu: function selectMenu(val) {
7283
- var _this2 = this;
7700
+ var _this3 = this;
7284
7701
 
7285
7702
  if (val.showMenu) {
7286
7703
  this.selectMenuArr = this.selectMenuArr.filter(function (x) {
7287
- return x != val[_this2.hideMenuKey];
7704
+ return x != val[_this3.hideMenuKey];
7288
7705
  });
7289
7706
  } else {
7290
7707
  this.selectMenuArr.push(val[this.hideMenuKey]);
@@ -7292,26 +7709,27 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7292
7709
  this.$set(val, 'showMenu', !val.showMenu);
7293
7710
  },
7294
7711
  defaultHide: function defaultHide(val) {
7295
- var _this3 = this;
7712
+ var _this4 = this;
7296
7713
 
7297
7714
  if (this.isHideMenu && val != undefined) {
7298
7715
  if (Array.isArray(val)) {
7299
7716
  var menuKey = val.map(function (x) {
7300
7717
  return x.id;
7301
- }).join(',');
7718
+ });
7719
+ // let menuKey = val.map(x => x.id).join(',');
7302
7720
  this.newData = this.data.filter(function (x) {
7303
- return menuKey.indexOf(x[_this3.hideMenuKey]) == -1;
7721
+ return menuKey.indexOf(x[_this4.hideMenuKey]) == -1;
7304
7722
  });
7305
7723
  this.hideMenuList = this.data.filter(function (x) {
7306
- return menuKey.indexOf(x[_this3.hideMenuKey]) != -1;
7724
+ return menuKey.indexOf(x[_this4.hideMenuKey]) != -1;
7307
7725
  });
7308
7726
  } else {
7309
7727
  val = val + '';
7310
7728
  this.newData = this.data.filter(function (x) {
7311
- return val.indexOf(x[_this3.hideMenuKey]) == -1;
7729
+ return val.indexOf(x[_this4.hideMenuKey]) == -1;
7312
7730
  });
7313
7731
  this.hideMenuList = this.data.filter(function (x) {
7314
- return val.indexOf(x[_this3.hideMenuKey]) != -1;
7732
+ return val.indexOf(x[_this4.hideMenuKey]) != -1;
7315
7733
  });
7316
7734
  }
7317
7735
  }
@@ -7324,44 +7742,45 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7324
7742
  }
7325
7743
  },
7326
7744
  handleHide: function handleHide(item) {
7327
- var _this4 = this;
7745
+ var _this5 = this;
7328
7746
 
7329
7747
  this.$dialog.confirm({
7330
7748
  message: '\u786E\u5B9A\u8981\u9690\u85CF<span style="color:red;font-weight:bold;margin:0px 5px">' + item.text + '</span>\u83DC\u5355\u5417\uFF1F'
7331
7749
  }).then(function () {
7332
- if (Array.isArray(_this4.hideMenu)) {
7333
- var hideArr = [].concat(_this4.hideMenu, [item]);
7334
- _this4.$emit('hide', hideArr);
7750
+ if (Array.isArray(_this5.hideMenu)) {
7751
+ var hideArr = [].concat(_this5.hideMenu, [item]);
7752
+ _this5.$emit('hide', hideArr);
7335
7753
  } else {
7336
- var hideStr = _this4.hideMenu ? _this4.hideMenu + ',' + item[_this4.hideMenuKey] : item[_this4.hideMenuKey];
7337
- _this4.$emit('hide', hideStr);
7754
+ var hideStr = _this5.hideMenu ? _this5.hideMenu + ',' + item[_this5.hideMenuKey] : item[_this5.hideMenuKey];
7755
+ _this5.$emit('hide', hideStr);
7338
7756
  }
7339
7757
  });
7340
7758
  },
7341
7759
  goView: function goView(event, val) {
7342
- var _this5 = this;
7343
-
7344
7760
  if (val.menuType === 'add') {
7345
7761
  this.show = true;
7346
7762
  return;
7347
7763
  }
7348
- var currentTime = new Date().getTime();
7349
- var tapLength = currentTime - this.lastTapTime;
7350
- this.lastTapTime = currentTime;
7764
+ // const currentTime = new Date().getTime();
7765
+ // const tapLength = currentTime - this.lastTapTime;
7766
+ // this.lastTapTime = currentTime;
7767
+ // if (tapLength > 300) {
7768
+ // return;
7769
+ // }
7351
7770
  if (this.isHideMenu) {
7352
- if (tapLength < 300) {
7353
- this.handleDoubleClick(val);
7354
- clearTimeout(this.timer);
7355
- return;
7356
- }
7357
- if (this.showHide) {
7358
- this.showHide = false;
7359
- return;
7360
- }
7361
- this.timer = setTimeout(function () {
7362
- _this5.$emit('click', val, event);
7363
- _this5.targetStop && event.stopPropagation();
7364
- }, 300);
7771
+ // if (tapLength < 300) {
7772
+ // this.handleDoubleClick(val);
7773
+ // clearTimeout(this.timer);
7774
+ // return;
7775
+ // }
7776
+ // if (this.showHide) {
7777
+ // this.showHide = false;
7778
+ // return;
7779
+ // }
7780
+ // this.timer = setTimeout(() => {
7781
+ this.$emit('click', val, event);
7782
+ this.targetStop && event.stopPropagation();
7783
+ // }, 300);
7365
7784
  } else {
7366
7785
  this.$emit('click', val, event);
7367
7786
  this.targetStop && event.stopPropagation();
@@ -7387,8 +7806,8 @@ mainvue_type_template_id_b1bd9a9e_render._withStripped = true
7387
7806
 
7388
7807
  var grid_src_main_component = normalizeComponent(
7389
7808
  packages_grid_src_mainvue_type_script_lang_js_,
7390
- mainvue_type_template_id_b1bd9a9e_render,
7391
- mainvue_type_template_id_b1bd9a9e_staticRenderFns,
7809
+ mainvue_type_template_id_1f9590ec_render,
7810
+ mainvue_type_template_id_1f9590ec_staticRenderFns,
7392
7811
  false,
7393
7812
  null,
7394
7813
  null,
@@ -8745,7 +9164,7 @@ tab_src_main.install = function (Vue) {
8745
9164
  var external_element_ui_ = __webpack_require__(1);
8746
9165
 
8747
9166
  // EXTERNAL MODULE: external "element-ui/lib/theme-chalk/table.css"
8748
- var table_css_ = __webpack_require__(7);
9167
+ var table_css_ = __webpack_require__(8);
8749
9168
 
8750
9169
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/table/src/main.vue?vue&type=script&lang=js&
8751
9170
  var table_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -11733,8 +12152,8 @@ mainvue_type_template_id_7b5917b8_render._withStripped = true
11733
12152
 
11734
12153
  // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7b5917b8&
11735
12154
 
11736
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/StartFlow.vue?vue&type=template&id=5466db24&
11737
- var StartFlowvue_type_template_id_5466db24_render = function () {
12155
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/StartFlow.vue?vue&type=template&id=61144ed4&
12156
+ var StartFlowvue_type_template_id_61144ed4_render = function () {
11738
12157
  var _vm = this
11739
12158
  var _h = _vm.$createElement
11740
12159
  var _c = _vm._self._c || _h
@@ -11920,11 +12339,11 @@ var StartFlowvue_type_template_id_5466db24_render = function () {
11920
12339
  ]),
11921
12340
  ])
11922
12341
  }
11923
- var StartFlowvue_type_template_id_5466db24_staticRenderFns = []
11924
- StartFlowvue_type_template_id_5466db24_render._withStripped = true
12342
+ var StartFlowvue_type_template_id_61144ed4_staticRenderFns = []
12343
+ StartFlowvue_type_template_id_61144ed4_render._withStripped = true
11925
12344
 
11926
12345
 
11927
- // CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=5466db24&
12346
+ // CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=61144ed4&
11928
12347
 
11929
12348
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Opinion.vue?vue&type=template&id=e785ca44&
11930
12349
  var Opinionvue_type_template_id_e785ca44_render = function () {
@@ -12933,14 +13352,14 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
12933
13352
  return;
12934
13353
  }
12935
13354
  var formData = new FormData();
12936
- if (this.form.isImageOpinion == 1) {
12937
- formData.append('file', this.file);
12938
- }
12939
- for (var key in info) {
12940
- if (info[key] !== '' && info[key] !== undefined) {
12941
- formData.append(key, info[key]);
12942
- }
12943
- }
13355
+ // if (this.form.isImageOpinion == 1) {
13356
+ // formData.append('file', this.file);
13357
+ // }
13358
+ // for (let key in info) {
13359
+ // if (info[key] !== '' && info[key] !== undefined) {
13360
+ // formData.append(key, info[key]);
13361
+ // }
13362
+ // }
12944
13363
  this.$toast.loading({
12945
13364
  message: '加载中...',
12946
13365
  forbidClick: true,
@@ -12952,7 +13371,7 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
12952
13371
  utils_http({
12953
13372
  url: _that.apiBaseUrl ? _that.apiBaseUrl + registerNew : registerNew,
12954
13373
  type: 'post',
12955
- params: formData,
13374
+ params: info,
12956
13375
  format: false
12957
13376
  }).then(function (res) {
12958
13377
  _this2.$toast.clear();
@@ -13160,8 +13579,8 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
13160
13579
 
13161
13580
  var StartFlow_component = normalizeComponent(
13162
13581
  components_StartFlowvue_type_script_lang_js_,
13163
- StartFlowvue_type_template_id_5466db24_render,
13164
- StartFlowvue_type_template_id_5466db24_staticRenderFns,
13582
+ StartFlowvue_type_template_id_61144ed4_render,
13583
+ StartFlowvue_type_template_id_61144ed4_staticRenderFns,
13165
13584
  false,
13166
13585
  null,
13167
13586
  null,
@@ -13170,8 +13589,8 @@ var StartFlow_component = normalizeComponent(
13170
13589
  )
13171
13590
 
13172
13591
  /* harmony default export */ var StartFlow = (StartFlow_component.exports);
13173
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=83d8e9b4&
13174
- var Handlevue_type_template_id_83d8e9b4_render = function () {
13592
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=8ae6ae06&
13593
+ var Handlevue_type_template_id_8ae6ae06_render = function () {
13175
13594
  var _vm = this
13176
13595
  var _h = _vm.$createElement
13177
13596
  var _c = _vm._self._c || _h
@@ -14168,11 +14587,11 @@ var Handlevue_type_template_id_83d8e9b4_render = function () {
14168
14587
  1
14169
14588
  )
14170
14589
  }
14171
- var Handlevue_type_template_id_83d8e9b4_staticRenderFns = []
14172
- Handlevue_type_template_id_83d8e9b4_render._withStripped = true
14590
+ var Handlevue_type_template_id_8ae6ae06_staticRenderFns = []
14591
+ Handlevue_type_template_id_8ae6ae06_render._withStripped = true
14173
14592
 
14174
14593
 
14175
- // CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=83d8e9b4&
14594
+ // CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=8ae6ae06&
14176
14595
 
14177
14596
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Reject.vue?vue&type=template&id=2c2891ac&
14178
14597
  var Rejectvue_type_template_id_2c2891ac_render = function () {
@@ -15244,6 +15663,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
15244
15663
  //
15245
15664
  //
15246
15665
  //
15666
+ //
15667
+ //
15247
15668
 
15248
15669
 
15249
15670
 
@@ -15619,12 +16040,19 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
15619
16040
  type: 'post',
15620
16041
  params: formData,
15621
16042
  format: false
15622
-
15623
16043
  }).then(function (res) {
15624
16044
  _this4.$toast.clear();
15625
- if (res.status == 'success') {
15626
- _this4.$toast('操作成功');
15627
- _this4.$parent.$emit('success');
16045
+ if (res.status == 'success' || res.status == 'readDealBackProcessing') {
16046
+ if (res.status == 'readDealBackProcessing') {
16047
+ _this4.$toast('由于阅办人数较多,任务后台执行中,稍后系统将为您推送阅办任务执行结果,请注意查收!');
16048
+ setTimeout(function () {
16049
+ _this4.$toast.clear();
16050
+ _this4.$parent.$emit('success');
16051
+ }, 1500);
16052
+ } else {
16053
+ _this4.$toast('操作成功');
16054
+ _this4.$parent.$emit('success');
16055
+ }
15628
16056
  } else {
15629
16057
  _this4.$emit('error');
15630
16058
  _this4.$toast(res.message);
@@ -16191,8 +16619,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
16191
16619
 
16192
16620
  var Handle_component = normalizeComponent(
16193
16621
  components_Handlevue_type_script_lang_js_,
16194
- Handlevue_type_template_id_83d8e9b4_render,
16195
- Handlevue_type_template_id_83d8e9b4_staticRenderFns,
16622
+ Handlevue_type_template_id_8ae6ae06_render,
16623
+ Handlevue_type_template_id_8ae6ae06_staticRenderFns,
16196
16624
  false,
16197
16625
  null,
16198
16626
  null,
@@ -22261,7 +22689,7 @@ if (typeof window !== 'undefined' && window.Vue) {
22261
22689
  }
22262
22690
 
22263
22691
  /* harmony default export */ var src = __webpack_exports__["default"] = ({
22264
- version: '0.2.44',
22692
+ version: '0.2.46',
22265
22693
  install: install,
22266
22694
  Button: packages_button,
22267
22695
  ButtonGroup: button_group,