eoss-ui 0.7.29 → 0.7.30

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/lib/main.js CHANGED
@@ -4638,8 +4638,8 @@ render._withStripped = true
4638
4638
  // EXTERNAL MODULE: ./src/config/image.js
4639
4639
  var config_image = __webpack_require__(20);
4640
4640
 
4641
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=5b9d34eb&scoped=true&
4642
- var simplicityvue_type_template_id_5b9d34eb_scoped_true_render = function () {
4641
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=7b83b98f&scoped=true&
4642
+ var simplicityvue_type_template_id_7b83b98f_scoped_true_render = function () {
4643
4643
  var _vm = this
4644
4644
  var _h = _vm.$createElement
4645
4645
  var _c = _vm._self._c || _h
@@ -5343,11 +5343,11 @@ var simplicityvue_type_template_id_5b9d34eb_scoped_true_render = function () {
5343
5343
  ),
5344
5344
  ])
5345
5345
  }
5346
- var simplicityvue_type_template_id_5b9d34eb_scoped_true_staticRenderFns = []
5347
- simplicityvue_type_template_id_5b9d34eb_scoped_true_render._withStripped = true
5346
+ var simplicityvue_type_template_id_7b83b98f_scoped_true_staticRenderFns = []
5347
+ simplicityvue_type_template_id_7b83b98f_scoped_true_render._withStripped = true
5348
5348
 
5349
5349
 
5350
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=5b9d34eb&scoped=true&
5350
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=7b83b98f&scoped=true&
5351
5351
 
5352
5352
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
5353
5353
  var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
@@ -12454,7 +12454,7 @@ var events = [function (tabs, index, that) {
12454
12454
  * @date 2024年9月7日
12455
12455
  **/
12456
12456
  handleRefresh: function handleRefresh(arg) {
12457
- var i = arg ? util["a" /* default */].indexOfObj(this.tabs, arg, 'appCode,code,id,url') : util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
12457
+ var i = arg && arg != true ? util["a" /* default */].indexOfObj(this.tabs, arg, 'appCode,code,id,url') : util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
12458
12458
  var tab = this.tabs[i];
12459
12459
  if (tab.method === 'iframe') {
12460
12460
  tab.url = util["a" /* default */].handlerUrl(tab.url);
@@ -12895,11 +12895,11 @@ var events = [function (tabs, index, that) {
12895
12895
 
12896
12896
  var simplicity_component = Object(componentNormalizer["a" /* default */])(
12897
12897
  src_simplicityvue_type_script_lang_js_,
12898
- simplicityvue_type_template_id_5b9d34eb_scoped_true_render,
12899
- simplicityvue_type_template_id_5b9d34eb_scoped_true_staticRenderFns,
12898
+ simplicityvue_type_template_id_7b83b98f_scoped_true_render,
12899
+ simplicityvue_type_template_id_7b83b98f_scoped_true_staticRenderFns,
12900
12900
  false,
12901
12901
  null,
12902
- "5b9d34eb",
12902
+ "7b83b98f",
12903
12903
  null
12904
12904
 
12905
12905
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.7.29",
3
+ "version": "0.7.30",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
Binary file
Binary file
@@ -1803,9 +1803,10 @@ export default {
1803
1803
  * @date 2024年9月7日
1804
1804
  **/
1805
1805
  handleRefresh(arg) {
1806
- let i = arg
1807
- ? util.indexOfObj(this.tabs, arg, 'appCode,code,id,url')
1808
- : util.indexOfObj(this.tabs, this.activeName, 'id');
1806
+ let i =
1807
+ arg && arg != true
1808
+ ? util.indexOfObj(this.tabs, arg, 'appCode,code,id,url')
1809
+ : util.indexOfObj(this.tabs, this.activeName, 'id');
1809
1810
  let tab = this.tabs[i];
1810
1811
  if (tab.method === 'iframe') {
1811
1812
  tab.url = util.handlerUrl(tab.url);
package/src/index.js CHANGED
@@ -125,7 +125,7 @@ if (typeof window !== 'undefined' && window.Vue) {
125
125
  }
126
126
 
127
127
  export default {
128
- version: '0.7.29',
128
+ version: '0.7.30',
129
129
  install,
130
130
  Button,
131
131
  ButtonGroup,