eoss-mobiles 0.2.13 → 0.2.14
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/checkbox.js +72 -32
- package/lib/config/api.js +4 -1
- package/lib/eoss-mobile.common.js +536 -60
- package/lib/flow.js +173 -109
- package/lib/index.js +1 -1
- package/lib/notice-bar.js +2 -2
- package/lib/picker.js +72 -32
- package/lib/pull-refresh.js +2 -2
- package/lib/radio.js +72 -32
- package/lib/retrial-auth.js +2436 -0
- package/lib/selector.js +90 -50
- package/lib/table-column.js +72 -32
- package/lib/table.js +39 -5
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/retrial-auth.css +1 -0
- package/lib/utils/axios.js +2 -3
- package/lib/utils/util.js +35 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +4 -1
- package/packages/flow/src/components/Opinion.vue +39 -3
- package/packages/flow/src/components/StartFlow.vue +3 -3
- package/packages/flow/src/main.vue +6 -0
- package/packages/retrial-auth/index.js +5 -0
- package/packages/retrial-auth/src/main.vue +257 -0
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/retrial-auth.css +1 -0
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/retrial-auth.scss +28 -0
- package/src/config/api.js +3 -0
- package/src/index.js +4 -1
- package/src/utils/axios.js +2 -2
- package/src/utils/util.js +128 -82
|
@@ -2676,6 +2676,23 @@ var openAttachment = function openAttachment(data) {
|
|
|
2676
2676
|
}
|
|
2677
2677
|
}
|
|
2678
2678
|
};
|
|
2679
|
+
/**
|
|
2680
|
+
* jsGoPayrollIndexAct
|
|
2681
|
+
* @desc:原生app打开工资条页面
|
|
2682
|
+
* @date 2024年1月11日
|
|
2683
|
+
* @author liufan
|
|
2684
|
+
*/
|
|
2685
|
+
var jsGoPayrollIndexAct = function jsGoPayrollIndexAct(id) {
|
|
2686
|
+
var u = navigator.userAgent;
|
|
2687
|
+
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; // android终端
|
|
2688
|
+
var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); // ios终端
|
|
2689
|
+
if (isAndroid) {
|
|
2690
|
+
window.AndroidWebView.jsGoPayrollIndexAct(id);
|
|
2691
|
+
} else if (isiOS) {
|
|
2692
|
+
window.webkit.messageHandlers.jsGoPayrollIndexAct.postMessage(id);
|
|
2693
|
+
}
|
|
2694
|
+
};
|
|
2695
|
+
|
|
2679
2696
|
/**
|
|
2680
2697
|
* deepClone
|
|
2681
2698
|
* @desc:深拷贝
|
|
@@ -2733,6 +2750,21 @@ var util_exclAttribute = function exclAttribute(_ref4) {
|
|
|
2733
2750
|
}
|
|
2734
2751
|
return obj;
|
|
2735
2752
|
};
|
|
2753
|
+
/**
|
|
2754
|
+
* 获取UUID
|
|
2755
|
+
* @desc:generateUUID
|
|
2756
|
+
* @author liufan
|
|
2757
|
+
* @date 2024年1月12日
|
|
2758
|
+
**/
|
|
2759
|
+
var generateUUID = function generateUUID() {
|
|
2760
|
+
var d = new Date().getTime();
|
|
2761
|
+
var uuid = 'xxxxxxxxxxxxxxxyxxxxxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
|
2762
|
+
var r = (d + Math.random() * 16) % 16 | 0;
|
|
2763
|
+
d = Math.floor(d / 16);
|
|
2764
|
+
return (c === 'x' ? r : r & 0x3 | 0x8).toString(16);
|
|
2765
|
+
});
|
|
2766
|
+
return uuid;
|
|
2767
|
+
};
|
|
2736
2768
|
/* harmony default export */ var util = ({
|
|
2737
2769
|
esEncrypt: esEncrypt,
|
|
2738
2770
|
esDecode: esDecode,
|
|
@@ -2776,13 +2808,18 @@ var util_exclAttribute = function exclAttribute(_ref4) {
|
|
|
2776
2808
|
getTypeName: getTypeName,
|
|
2777
2809
|
replenish: replenish,
|
|
2778
2810
|
identical: identical,
|
|
2779
|
-
|
|
2811
|
+
jsGoPayrollIndexAct: jsGoPayrollIndexAct,
|
|
2812
|
+
exportXls: exportXls,
|
|
2813
|
+
generateUUID: generateUUID
|
|
2780
2814
|
});
|
|
2781
2815
|
// CONCATENATED MODULE: ./src/config/api.js
|
|
2782
2816
|
|
|
2783
2817
|
var activiti = '/bpm';
|
|
2784
2818
|
var pending = '/bpm';
|
|
2785
2819
|
var mecp = util.getStorage('flowPath') || '';
|
|
2820
|
+
var initRetrialAuth = '/sso2/retrialAuth/initRetrialAuth'; // 初始化二级身份权限验证页面
|
|
2821
|
+
var getRetrialAuthCode = '/sso2/retrialAuth/getRetrialAuthCode'; // 获取二级身份验证验证码
|
|
2822
|
+
var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证-验证码验证
|
|
2786
2823
|
// 获取机构/用户/角色/群组等选择器
|
|
2787
2824
|
var selectObject = '/api/v1/mecpSys/selectObject.json';
|
|
2788
2825
|
// // 获取代码表数据
|
|
@@ -2871,7 +2908,6 @@ var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
|
|
|
2871
2908
|
|
|
2872
2909
|
// CONCATENATED MODULE: ./src/utils/axios.js
|
|
2873
2910
|
|
|
2874
|
-
// import Vue from 'vue';
|
|
2875
2911
|
|
|
2876
2912
|
|
|
2877
2913
|
|
|
@@ -2968,6 +3004,7 @@ http.interceptors.request.use(function (config) {
|
|
|
2968
3004
|
return Promise.error(error);
|
|
2969
3005
|
});
|
|
2970
3006
|
// 响应拦截器
|
|
3007
|
+
|
|
2971
3008
|
http.interceptors.response.use(function (response) {
|
|
2972
3009
|
if (response.status === 200) {
|
|
2973
3010
|
if (response.data.rCode === 64 || response.data.rCode === 27) {
|
|
@@ -2976,7 +3013,7 @@ http.interceptors.response.use(function (response) {
|
|
|
2976
3013
|
return Promise.resolve(response.data);
|
|
2977
3014
|
}
|
|
2978
3015
|
} else {
|
|
2979
|
-
return Promise.reject(response);
|
|
3016
|
+
return Promise.reject(response.data);
|
|
2980
3017
|
}
|
|
2981
3018
|
}, function (error) {
|
|
2982
3019
|
if (error && error.response) {
|
|
@@ -10693,8 +10730,8 @@ list_src_main.install = function (Vue) {
|
|
|
10693
10730
|
};
|
|
10694
10731
|
|
|
10695
10732
|
/* harmony default export */ var list = (list_src_main);
|
|
10696
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=
|
|
10697
|
-
var
|
|
10733
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=7b5917b8&
|
|
10734
|
+
var mainvue_type_template_id_7b5917b8_render = function () {
|
|
10698
10735
|
var _vm = this
|
|
10699
10736
|
var _h = _vm.$createElement
|
|
10700
10737
|
var _c = _vm._self._c || _h
|
|
@@ -10777,14 +10814,14 @@ var mainvue_type_template_id_2fdf7d5f_render = function () {
|
|
|
10777
10814
|
1
|
|
10778
10815
|
)
|
|
10779
10816
|
}
|
|
10780
|
-
var
|
|
10781
|
-
|
|
10817
|
+
var mainvue_type_template_id_7b5917b8_staticRenderFns = []
|
|
10818
|
+
mainvue_type_template_id_7b5917b8_render._withStripped = true
|
|
10782
10819
|
|
|
10783
10820
|
|
|
10784
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
10821
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7b5917b8&
|
|
10785
10822
|
|
|
10786
|
-
// 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=
|
|
10787
|
-
var
|
|
10823
|
+
// 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=33d35d88&
|
|
10824
|
+
var StartFlowvue_type_template_id_33d35d88_render = function () {
|
|
10788
10825
|
var _vm = this
|
|
10789
10826
|
var _h = _vm.$createElement
|
|
10790
10827
|
var _c = _vm._self._c || _h
|
|
@@ -10817,28 +10854,6 @@ var StartFlowvue_type_template_id_478da7a0_render = function () {
|
|
|
10817
10854
|
_c(
|
|
10818
10855
|
"div",
|
|
10819
10856
|
[
|
|
10820
|
-
_c(
|
|
10821
|
-
"div",
|
|
10822
|
-
{
|
|
10823
|
-
staticClass: "shrink-btn",
|
|
10824
|
-
on: {
|
|
10825
|
-
click: function ($event) {
|
|
10826
|
-
_vm.isNextBox = !_vm.isNextBox
|
|
10827
|
-
},
|
|
10828
|
-
},
|
|
10829
|
-
},
|
|
10830
|
-
[
|
|
10831
|
-
_vm._v(
|
|
10832
|
-
"\n " +
|
|
10833
|
-
_vm._s(
|
|
10834
|
-
_vm.isNextBox
|
|
10835
|
-
? "收起下一步操作和节点"
|
|
10836
|
-
: "展开下一步操作和节点"
|
|
10837
|
-
) +
|
|
10838
|
-
"\n "
|
|
10839
|
-
),
|
|
10840
|
-
]
|
|
10841
|
-
),
|
|
10842
10857
|
_c(
|
|
10843
10858
|
"div",
|
|
10844
10859
|
{
|
|
@@ -10991,14 +11006,14 @@ var StartFlowvue_type_template_id_478da7a0_render = function () {
|
|
|
10991
11006
|
]),
|
|
10992
11007
|
])
|
|
10993
11008
|
}
|
|
10994
|
-
var
|
|
10995
|
-
|
|
11009
|
+
var StartFlowvue_type_template_id_33d35d88_staticRenderFns = []
|
|
11010
|
+
StartFlowvue_type_template_id_33d35d88_render._withStripped = true
|
|
10996
11011
|
|
|
10997
11012
|
|
|
10998
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=
|
|
11013
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=33d35d88&
|
|
10999
11014
|
|
|
11000
|
-
// 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=
|
|
11001
|
-
var
|
|
11015
|
+
// 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&
|
|
11016
|
+
var Opinionvue_type_template_id_e785ca44_render = function () {
|
|
11002
11017
|
var _vm = this
|
|
11003
11018
|
var _h = _vm.$createElement
|
|
11004
11019
|
var _c = _vm._self._c || _h
|
|
@@ -11084,7 +11099,6 @@ var Opinionvue_type_template_id_0a90b0de_render = function () {
|
|
|
11084
11099
|
expression: "opinion",
|
|
11085
11100
|
},
|
|
11086
11101
|
}),
|
|
11087
|
-
_vm.opinionList.length > 0 &&
|
|
11088
11102
|
_vm.isHiddenOftenOpinion
|
|
11089
11103
|
? _c(
|
|
11090
11104
|
"span",
|
|
@@ -11189,7 +11203,12 @@ var Opinionvue_type_template_id_0a90b0de_render = function () {
|
|
|
11189
11203
|
columns: _vm.opinionList,
|
|
11190
11204
|
valueKey: "content",
|
|
11191
11205
|
},
|
|
11192
|
-
on: {
|
|
11206
|
+
on: {
|
|
11207
|
+
cancel: _vm.handleClose,
|
|
11208
|
+
confirm: function ($event) {
|
|
11209
|
+
_vm.onInput($event, true)
|
|
11210
|
+
},
|
|
11211
|
+
},
|
|
11193
11212
|
}),
|
|
11194
11213
|
],
|
|
11195
11214
|
1
|
|
@@ -11198,11 +11217,11 @@ var Opinionvue_type_template_id_0a90b0de_render = function () {
|
|
|
11198
11217
|
1
|
|
11199
11218
|
)
|
|
11200
11219
|
}
|
|
11201
|
-
var
|
|
11202
|
-
|
|
11220
|
+
var Opinionvue_type_template_id_e785ca44_staticRenderFns = []
|
|
11221
|
+
Opinionvue_type_template_id_e785ca44_render._withStripped = true
|
|
11203
11222
|
|
|
11204
11223
|
|
|
11205
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=
|
|
11224
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=e785ca44&
|
|
11206
11225
|
|
|
11207
11226
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Opinion.vue?vue&type=script&lang=js&
|
|
11208
11227
|
//
|
|
@@ -11348,6 +11367,14 @@ Opinionvue_type_template_id_0a90b0de_render._withStripped = true
|
|
|
11348
11367
|
userId: {
|
|
11349
11368
|
type: String,
|
|
11350
11369
|
default: ''
|
|
11370
|
+
},
|
|
11371
|
+
isForceDisplayDefaultOptionForPrefix: {
|
|
11372
|
+
type: Boolean,
|
|
11373
|
+
default: false
|
|
11374
|
+
},
|
|
11375
|
+
nodeDefaultSubmitOpinion: {
|
|
11376
|
+
type: String,
|
|
11377
|
+
default: ''
|
|
11351
11378
|
}
|
|
11352
11379
|
},
|
|
11353
11380
|
// components: {
|
|
@@ -11356,6 +11383,7 @@ Opinionvue_type_template_id_0a90b0de_render._withStripped = true
|
|
|
11356
11383
|
data: function data() {
|
|
11357
11384
|
return {
|
|
11358
11385
|
opinion: '',
|
|
11386
|
+
newOpinion: '',
|
|
11359
11387
|
fixedDisabled: false,
|
|
11360
11388
|
showPicker: false,
|
|
11361
11389
|
esignPath: '',
|
|
@@ -11365,6 +11393,19 @@ Opinionvue_type_template_id_0a90b0de_render._withStripped = true
|
|
|
11365
11393
|
opinionList: [] //意见列表
|
|
11366
11394
|
};
|
|
11367
11395
|
},
|
|
11396
|
+
|
|
11397
|
+
watch: {
|
|
11398
|
+
isForceDisplayDefaultOptionForPrefix: {
|
|
11399
|
+
handler: function handler(val) {
|
|
11400
|
+
if (val) {
|
|
11401
|
+
this.opinion = this.nodeDefaultSubmitOpinion;
|
|
11402
|
+
}
|
|
11403
|
+
},
|
|
11404
|
+
|
|
11405
|
+
deep: true,
|
|
11406
|
+
immediate: true
|
|
11407
|
+
}
|
|
11408
|
+
},
|
|
11368
11409
|
created: function created() {
|
|
11369
11410
|
if (this.nodeFixedOpinionSelectList.length > 0) {
|
|
11370
11411
|
this.opinionList = this.nodeFixedOpinionSelectList;
|
|
@@ -11416,11 +11457,20 @@ Opinionvue_type_template_id_0a90b0de_render._withStripped = true
|
|
|
11416
11457
|
},
|
|
11417
11458
|
|
|
11418
11459
|
// 将input的值传递到父组件
|
|
11419
|
-
onInput: function onInput(val) {
|
|
11460
|
+
onInput: function onInput(val, isSelect) {
|
|
11420
11461
|
var isImageOpinion = this.isImageOpinion,
|
|
11421
11462
|
file = this.file;
|
|
11422
11463
|
|
|
11423
11464
|
this.opinion = typeof val === 'string' ? val : val.content;
|
|
11465
|
+
if (this.isForceDisplayDefaultOptionForPrefix && !this.opinion.startsWith(this.nodeDefaultSubmitOpinion) && !isSelect) {
|
|
11466
|
+
this.opinion = this.nodeDefaultSubmitOpinion + this.newOpinion;
|
|
11467
|
+
} else if (this.isForceDisplayDefaultOptionForPrefix && !isSelect) {
|
|
11468
|
+
this.newOpinion = this.opinion.replace(this.nodeDefaultSubmitOpinion, '');
|
|
11469
|
+
}
|
|
11470
|
+
if (this.isForceDisplayDefaultOptionForPrefix && isSelect) {
|
|
11471
|
+
this.newOpinion = this.opinion;
|
|
11472
|
+
this.opinion = this.nodeDefaultSubmitOpinion + this.opinion;
|
|
11473
|
+
}
|
|
11424
11474
|
this.$emit('onInputOpintion', {
|
|
11425
11475
|
opinion: this.opinion,
|
|
11426
11476
|
isImageOpinion: isImageOpinion,
|
|
@@ -11442,8 +11492,8 @@ Opinionvue_type_template_id_0a90b0de_render._withStripped = true
|
|
|
11442
11492
|
|
|
11443
11493
|
var Opinion_component = normalizeComponent(
|
|
11444
11494
|
components_Opinionvue_type_script_lang_js_,
|
|
11445
|
-
|
|
11446
|
-
|
|
11495
|
+
Opinionvue_type_template_id_e785ca44_render,
|
|
11496
|
+
Opinionvue_type_template_id_e785ca44_staticRenderFns,
|
|
11447
11497
|
false,
|
|
11448
11498
|
null,
|
|
11449
11499
|
null,
|
|
@@ -11837,7 +11887,7 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
11837
11887
|
isChooseNextNode: 0,
|
|
11838
11888
|
isOpinionRequired: 0, //办理意见是否必填
|
|
11839
11889
|
isBanInputOpinion: 0, //是否禁用意见
|
|
11840
|
-
isNextBox:
|
|
11890
|
+
isNextBox: true, // 是否展开隐藏下步操作
|
|
11841
11891
|
defaultNotificationType: [], //选中消息数组
|
|
11842
11892
|
// showAppUser: false, // 办理人遮罩层
|
|
11843
11893
|
showNextList: false, // 下一步遮罩层
|
|
@@ -12190,8 +12240,8 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
12190
12240
|
|
|
12191
12241
|
var StartFlow_component = normalizeComponent(
|
|
12192
12242
|
components_StartFlowvue_type_script_lang_js_,
|
|
12193
|
-
|
|
12194
|
-
|
|
12243
|
+
StartFlowvue_type_template_id_33d35d88_render,
|
|
12244
|
+
StartFlowvue_type_template_id_33d35d88_staticRenderFns,
|
|
12195
12245
|
false,
|
|
12196
12246
|
null,
|
|
12197
12247
|
null,
|
|
@@ -12200,8 +12250,8 @@ var StartFlow_component = normalizeComponent(
|
|
|
12200
12250
|
)
|
|
12201
12251
|
|
|
12202
12252
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
12203
|
-
// 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=
|
|
12204
|
-
var
|
|
12253
|
+
// 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=0b00e17b&
|
|
12254
|
+
var Handlevue_type_template_id_0b00e17b_render = function () {
|
|
12205
12255
|
var _vm = this
|
|
12206
12256
|
var _h = _vm.$createElement
|
|
12207
12257
|
var _c = _vm._self._c || _h
|
|
@@ -12238,6 +12288,9 @@ var Handlevue_type_template_id_6b2672cb_render = function () {
|
|
|
12238
12288
|
isOpinionRequired: _vm.isOpinionRequired,
|
|
12239
12289
|
disabled: _vm.isBanInputOpinion != 0,
|
|
12240
12290
|
baseUrl: _vm.baseUrl,
|
|
12291
|
+
isForceDisplayDefaultOptionForPrefix:
|
|
12292
|
+
_vm.isForceDisplayDefaultOptionForPrefix,
|
|
12293
|
+
nodeDefaultSubmitOpinion: _vm.nodeDefaultSubmitOpinion,
|
|
12241
12294
|
nodeFixedOpinionSelectList:
|
|
12242
12295
|
_vm.nodeFixedOpinionSelectList,
|
|
12243
12296
|
isHiddenOftenOpinion:
|
|
@@ -12796,7 +12849,6 @@ var Handlevue_type_template_id_6b2672cb_render = function () {
|
|
|
12796
12849
|
attrs: {
|
|
12797
12850
|
multiple: "",
|
|
12798
12851
|
objType: _vm.objType,
|
|
12799
|
-
required: "",
|
|
12800
12852
|
param: {
|
|
12801
12853
|
pid: _vm.pid,
|
|
12802
12854
|
},
|
|
@@ -13188,11 +13240,11 @@ var Handlevue_type_template_id_6b2672cb_render = function () {
|
|
|
13188
13240
|
1
|
|
13189
13241
|
)
|
|
13190
13242
|
}
|
|
13191
|
-
var
|
|
13192
|
-
|
|
13243
|
+
var Handlevue_type_template_id_0b00e17b_staticRenderFns = []
|
|
13244
|
+
Handlevue_type_template_id_0b00e17b_render._withStripped = true
|
|
13193
13245
|
|
|
13194
13246
|
|
|
13195
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
13247
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=0b00e17b&
|
|
13196
13248
|
|
|
13197
13249
|
// 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=d478fb96&
|
|
13198
13250
|
var Rejectvue_type_template_id_d478fb96_render = function () {
|
|
@@ -14253,6 +14305,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
14253
14305
|
//
|
|
14254
14306
|
//
|
|
14255
14307
|
//
|
|
14308
|
+
//
|
|
14256
14309
|
|
|
14257
14310
|
|
|
14258
14311
|
|
|
@@ -14306,6 +14359,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
14306
14359
|
objType: 'enterprise', //树点击对象
|
|
14307
14360
|
selectType: 'employee', // 树 选择类型
|
|
14308
14361
|
isNextBox: true, // 是否展开隐藏下步操作
|
|
14362
|
+
isForceDisplayDefaultOptionForPrefix: false,
|
|
14309
14363
|
isOtherUnit: true, //是否是外单位
|
|
14310
14364
|
isShowNode: false,
|
|
14311
14365
|
subProcessInfo: '',
|
|
@@ -14967,6 +15021,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
14967
15021
|
that.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
|
|
14968
15022
|
// that.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
|
|
14969
15023
|
that.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
|
|
15024
|
+
that.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
|
|
14970
15025
|
}
|
|
14971
15026
|
that.choiceOrgId = choiceOrgId;
|
|
14972
15027
|
that.choiceDeptId = choiceDeptId;
|
|
@@ -15186,8 +15241,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
15186
15241
|
|
|
15187
15242
|
var Handle_component = normalizeComponent(
|
|
15188
15243
|
components_Handlevue_type_script_lang_js_,
|
|
15189
|
-
|
|
15190
|
-
|
|
15244
|
+
Handlevue_type_template_id_0b00e17b_render,
|
|
15245
|
+
Handlevue_type_template_id_0b00e17b_staticRenderFns,
|
|
15191
15246
|
false,
|
|
15192
15247
|
null,
|
|
15193
15248
|
null,
|
|
@@ -16630,6 +16685,12 @@ var taskUnionExamine_component = normalizeComponent(
|
|
|
16630
16685
|
},
|
|
16631
16686
|
data: function data() {
|
|
16632
16687
|
return {};
|
|
16688
|
+
},
|
|
16689
|
+
mounted: function mounted() {
|
|
16690
|
+
for (var i = 0; i < 10; i++) {
|
|
16691
|
+
if (i == 2) return;
|
|
16692
|
+
console.log(i);
|
|
16693
|
+
}
|
|
16633
16694
|
}
|
|
16634
16695
|
});
|
|
16635
16696
|
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=script&lang=js&
|
|
@@ -16644,8 +16705,8 @@ var taskUnionExamine_component = normalizeComponent(
|
|
|
16644
16705
|
|
|
16645
16706
|
var flow_src_main_component = normalizeComponent(
|
|
16646
16707
|
packages_flow_src_mainvue_type_script_lang_js_,
|
|
16647
|
-
|
|
16648
|
-
|
|
16708
|
+
mainvue_type_template_id_7b5917b8_render,
|
|
16709
|
+
mainvue_type_template_id_7b5917b8_staticRenderFns,
|
|
16649
16710
|
false,
|
|
16650
16711
|
null,
|
|
16651
16712
|
null,
|
|
@@ -19357,6 +19418,419 @@ swipe_src_main.install = function (Vue) {
|
|
|
19357
19418
|
};
|
|
19358
19419
|
|
|
19359
19420
|
/* harmony default export */ var swipe = (swipe_src_main);
|
|
19421
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/retrial-auth/src/main.vue?vue&type=template&id=46beaef7&
|
|
19422
|
+
var mainvue_type_template_id_46beaef7_render = function () {
|
|
19423
|
+
var _vm = this
|
|
19424
|
+
var _h = _vm.$createElement
|
|
19425
|
+
var _c = _vm._self._c || _h
|
|
19426
|
+
return _vm.show
|
|
19427
|
+
? _c("div", { staticClass: "em-retrial-auth" }, [
|
|
19428
|
+
_c(
|
|
19429
|
+
"div",
|
|
19430
|
+
{ staticClass: "em-retrial-auth-box" },
|
|
19431
|
+
[
|
|
19432
|
+
_vm._v(
|
|
19433
|
+
"\n 验证码将发送至" +
|
|
19434
|
+
_vm._s(
|
|
19435
|
+
_vm.active == "WEB_SMS"
|
|
19436
|
+
? "手机号:" + _vm.phoneText
|
|
19437
|
+
: "邮箱:" + _vm.emailText
|
|
19438
|
+
) +
|
|
19439
|
+
"\n "
|
|
19440
|
+
),
|
|
19441
|
+
_c(
|
|
19442
|
+
"em-input",
|
|
19443
|
+
{
|
|
19444
|
+
staticStyle: { margin: "10px 0px" },
|
|
19445
|
+
attrs: {
|
|
19446
|
+
center: "",
|
|
19447
|
+
clearable: "",
|
|
19448
|
+
"hide-label": "",
|
|
19449
|
+
placeholder: "请输入验证码",
|
|
19450
|
+
},
|
|
19451
|
+
model: {
|
|
19452
|
+
value: _vm.formData.verificationCode,
|
|
19453
|
+
callback: function ($$v) {
|
|
19454
|
+
_vm.$set(_vm.formData, "verificationCode", $$v)
|
|
19455
|
+
},
|
|
19456
|
+
expression: "formData.verificationCode",
|
|
19457
|
+
},
|
|
19458
|
+
},
|
|
19459
|
+
[
|
|
19460
|
+
_c(
|
|
19461
|
+
"template",
|
|
19462
|
+
{ slot: "button" },
|
|
19463
|
+
[
|
|
19464
|
+
_c(
|
|
19465
|
+
"em-button",
|
|
19466
|
+
{
|
|
19467
|
+
attrs: {
|
|
19468
|
+
size: "small",
|
|
19469
|
+
type: "primary",
|
|
19470
|
+
disabled: _vm.disabled,
|
|
19471
|
+
},
|
|
19472
|
+
on: {
|
|
19473
|
+
click: function ($event) {
|
|
19474
|
+
$event.stopPropagation()
|
|
19475
|
+
return _vm.getCode($event)
|
|
19476
|
+
},
|
|
19477
|
+
},
|
|
19478
|
+
},
|
|
19479
|
+
[_vm._v(_vm._s(_vm.btnText))]
|
|
19480
|
+
),
|
|
19481
|
+
],
|
|
19482
|
+
1
|
|
19483
|
+
),
|
|
19484
|
+
],
|
|
19485
|
+
2
|
|
19486
|
+
),
|
|
19487
|
+
_c(
|
|
19488
|
+
"em-button",
|
|
19489
|
+
{
|
|
19490
|
+
staticStyle: { width: "100%" },
|
|
19491
|
+
attrs: { type: "primary" },
|
|
19492
|
+
on: { click: _vm.handleAuth },
|
|
19493
|
+
},
|
|
19494
|
+
[_vm._v("提交验证")]
|
|
19495
|
+
),
|
|
19496
|
+
_vm.newType.length > 1
|
|
19497
|
+
? _c(
|
|
19498
|
+
"div",
|
|
19499
|
+
{ staticClass: "em-retrial-auth-icon-box" },
|
|
19500
|
+
_vm._l(_vm.newType, function (item) {
|
|
19501
|
+
return _c(
|
|
19502
|
+
"div",
|
|
19503
|
+
{
|
|
19504
|
+
key: item,
|
|
19505
|
+
staticClass: "em-retrial-auth-icon-box-item",
|
|
19506
|
+
class: { active: _vm.active === item },
|
|
19507
|
+
on: {
|
|
19508
|
+
click: function ($event) {
|
|
19509
|
+
_vm.active = item
|
|
19510
|
+
},
|
|
19511
|
+
},
|
|
19512
|
+
},
|
|
19513
|
+
[
|
|
19514
|
+
_c("van-icon", {
|
|
19515
|
+
attrs: {
|
|
19516
|
+
name: item === "WEB_SMS" ? "phone-o" : "envelop-o",
|
|
19517
|
+
color: "#fff",
|
|
19518
|
+
},
|
|
19519
|
+
}),
|
|
19520
|
+
],
|
|
19521
|
+
1
|
|
19522
|
+
)
|
|
19523
|
+
}),
|
|
19524
|
+
0
|
|
19525
|
+
)
|
|
19526
|
+
: _vm._e(),
|
|
19527
|
+
],
|
|
19528
|
+
1
|
|
19529
|
+
),
|
|
19530
|
+
])
|
|
19531
|
+
: _vm._e()
|
|
19532
|
+
}
|
|
19533
|
+
var mainvue_type_template_id_46beaef7_staticRenderFns = []
|
|
19534
|
+
mainvue_type_template_id_46beaef7_render._withStripped = true
|
|
19535
|
+
|
|
19536
|
+
|
|
19537
|
+
// CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue?vue&type=template&id=46beaef7&
|
|
19538
|
+
|
|
19539
|
+
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/retrial-auth/src/main.vue?vue&type=script&lang=js&
|
|
19540
|
+
var retrial_auth_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; };
|
|
19541
|
+
|
|
19542
|
+
//
|
|
19543
|
+
//
|
|
19544
|
+
//
|
|
19545
|
+
//
|
|
19546
|
+
//
|
|
19547
|
+
//
|
|
19548
|
+
//
|
|
19549
|
+
//
|
|
19550
|
+
//
|
|
19551
|
+
//
|
|
19552
|
+
//
|
|
19553
|
+
//
|
|
19554
|
+
//
|
|
19555
|
+
//
|
|
19556
|
+
//
|
|
19557
|
+
//
|
|
19558
|
+
//
|
|
19559
|
+
//
|
|
19560
|
+
//
|
|
19561
|
+
//
|
|
19562
|
+
//
|
|
19563
|
+
//
|
|
19564
|
+
//
|
|
19565
|
+
//
|
|
19566
|
+
//
|
|
19567
|
+
//
|
|
19568
|
+
//
|
|
19569
|
+
//
|
|
19570
|
+
//
|
|
19571
|
+
//
|
|
19572
|
+
//
|
|
19573
|
+
//
|
|
19574
|
+
//
|
|
19575
|
+
//
|
|
19576
|
+
//
|
|
19577
|
+
//
|
|
19578
|
+
//
|
|
19579
|
+
//
|
|
19580
|
+
//
|
|
19581
|
+
//
|
|
19582
|
+
//
|
|
19583
|
+
//
|
|
19584
|
+
//
|
|
19585
|
+
//
|
|
19586
|
+
//
|
|
19587
|
+
|
|
19588
|
+
|
|
19589
|
+
|
|
19590
|
+
|
|
19591
|
+
|
|
19592
|
+
/* harmony default export */ var retrial_auth_src_mainvue_type_script_lang_js_ = ({
|
|
19593
|
+
name: 'EmRetrialAuth',
|
|
19594
|
+
props: {
|
|
19595
|
+
reload: {
|
|
19596
|
+
type: String,
|
|
19597
|
+
default: ''
|
|
19598
|
+
},
|
|
19599
|
+
group: {
|
|
19600
|
+
type: String,
|
|
19601
|
+
default: ''
|
|
19602
|
+
},
|
|
19603
|
+
type: {
|
|
19604
|
+
type: [String, Array],
|
|
19605
|
+
default: function _default() {
|
|
19606
|
+
return [];
|
|
19607
|
+
}
|
|
19608
|
+
},
|
|
19609
|
+
url: {
|
|
19610
|
+
type: String,
|
|
19611
|
+
default: ''
|
|
19612
|
+
},
|
|
19613
|
+
params: {
|
|
19614
|
+
type: Object,
|
|
19615
|
+
default: function _default() {}
|
|
19616
|
+
},
|
|
19617
|
+
method: {
|
|
19618
|
+
type: String,
|
|
19619
|
+
default: 'get'
|
|
19620
|
+
}
|
|
19621
|
+
},
|
|
19622
|
+
data: function data() {
|
|
19623
|
+
return {
|
|
19624
|
+
active: 0,
|
|
19625
|
+
newReload: '',
|
|
19626
|
+
newData: '',
|
|
19627
|
+
show: false,
|
|
19628
|
+
newGroup: '',
|
|
19629
|
+
newType: '',
|
|
19630
|
+
emailText: '',
|
|
19631
|
+
retrialAuthGroupId: util.generateUUID(),
|
|
19632
|
+
formData: {
|
|
19633
|
+
verificationCode: ''
|
|
19634
|
+
},
|
|
19635
|
+
phoneText: '',
|
|
19636
|
+
btnText: '获取验证码',
|
|
19637
|
+
disabled: false,
|
|
19638
|
+
countdown: 0,
|
|
19639
|
+
submit: false,
|
|
19640
|
+
uuid: null,
|
|
19641
|
+
timer: null
|
|
19642
|
+
};
|
|
19643
|
+
},
|
|
19644
|
+
mounted: function mounted() {
|
|
19645
|
+
if (this.url) {
|
|
19646
|
+
this.reqUrl();
|
|
19647
|
+
} else {
|
|
19648
|
+
this.newGroup = this.group;
|
|
19649
|
+
this.newReload = this.reload;
|
|
19650
|
+
this.newType = this.type.filter(function (item) {
|
|
19651
|
+
return item != 'SCANCODE';
|
|
19652
|
+
});
|
|
19653
|
+
if (this.newType.length > 0) {
|
|
19654
|
+
this.active = this.newType[0];
|
|
19655
|
+
}
|
|
19656
|
+
}
|
|
19657
|
+
},
|
|
19658
|
+
|
|
19659
|
+
methods: {
|
|
19660
|
+
handleAuth: function handleAuth() {
|
|
19661
|
+
var _this = this;
|
|
19662
|
+
|
|
19663
|
+
if (this.submit) {
|
|
19664
|
+
return false;
|
|
19665
|
+
}
|
|
19666
|
+
if (!this.formData.verificationCode) return this.$toast('请输入验证码');
|
|
19667
|
+
this.submit = true;
|
|
19668
|
+
var params = {
|
|
19669
|
+
retrialAuthGroupIds: this.newGroup,
|
|
19670
|
+
targetType: this.active === 'WEB_SMS' ? 'SMS' : 'EMAIL',
|
|
19671
|
+
verificationCode: this.formData.verificationCode
|
|
19672
|
+
};
|
|
19673
|
+
this.$toast.loading({
|
|
19674
|
+
message: '加载中...',
|
|
19675
|
+
forbidClick: true,
|
|
19676
|
+
loadingType: 'spinner',
|
|
19677
|
+
overlay: true,
|
|
19678
|
+
duration: 0
|
|
19679
|
+
});
|
|
19680
|
+
utils_http({
|
|
19681
|
+
url: codeRetrialAuth,
|
|
19682
|
+
type: 'post',
|
|
19683
|
+
params: params
|
|
19684
|
+
}).then(function (res) {
|
|
19685
|
+
var rCode = res.rCode,
|
|
19686
|
+
msg = res.msg;
|
|
19687
|
+
|
|
19688
|
+
_this.$toast.clear();
|
|
19689
|
+
if (rCode == 0) {
|
|
19690
|
+
_this.$toast('认证成功');
|
|
19691
|
+
_this.$emit('success', _this.retrialAuthGroupId);
|
|
19692
|
+
} else {
|
|
19693
|
+
_this.$toast(msg);
|
|
19694
|
+
_this.$emit('error');
|
|
19695
|
+
_this.submit = false;
|
|
19696
|
+
}
|
|
19697
|
+
}).catch();
|
|
19698
|
+
},
|
|
19699
|
+
getCode: function getCode() {
|
|
19700
|
+
var _this2 = this;
|
|
19701
|
+
|
|
19702
|
+
if (this.countdown) {
|
|
19703
|
+
return false;
|
|
19704
|
+
}
|
|
19705
|
+
var params = { targetType: this.active === 'WEB_SMS' ? 'SMS' : 'EMAIL' };
|
|
19706
|
+
this.countdown = 60;
|
|
19707
|
+
this.timer = setInterval(function () {
|
|
19708
|
+
if (_this2.countdown > 0) {
|
|
19709
|
+
_this2.countdown--;
|
|
19710
|
+
_this2.disabled = true;
|
|
19711
|
+
_this2.btnText = '重新获取' + _this2.countdown + 's';
|
|
19712
|
+
} else {
|
|
19713
|
+
_this2.btnText = '重新获取';
|
|
19714
|
+
_this2.disabled = false;
|
|
19715
|
+
_this2.submit = false;
|
|
19716
|
+
clearInterval(_this2.timer);
|
|
19717
|
+
}
|
|
19718
|
+
}, 1000);
|
|
19719
|
+
this.$toast.loading({
|
|
19720
|
+
message: '加载中...',
|
|
19721
|
+
forbidClick: true,
|
|
19722
|
+
loadingType: 'spinner',
|
|
19723
|
+
overlay: true,
|
|
19724
|
+
duration: 0
|
|
19725
|
+
});
|
|
19726
|
+
utils_http({
|
|
19727
|
+
url: getRetrialAuthCode,
|
|
19728
|
+
type: 'post',
|
|
19729
|
+
params: params
|
|
19730
|
+
}).then(function (res) {
|
|
19731
|
+
var rCode = res.rCode,
|
|
19732
|
+
msg = res.msg;
|
|
19733
|
+
|
|
19734
|
+
_this2.$toast.clear();
|
|
19735
|
+
if (rCode == 0) {
|
|
19736
|
+
_this2.$toast('验证码已发送至' + (_this2.active === 'WEB_SMS' ? '手机' : '邮箱') + ',请注意查收!');
|
|
19737
|
+
} else {
|
|
19738
|
+
_this2.$toast(msg);
|
|
19739
|
+
_this2.$emit('error');
|
|
19740
|
+
}
|
|
19741
|
+
}).catch();
|
|
19742
|
+
},
|
|
19743
|
+
init: function init() {
|
|
19744
|
+
var _this3 = this;
|
|
19745
|
+
|
|
19746
|
+
utils_http({
|
|
19747
|
+
url: initRetrialAuth
|
|
19748
|
+
}).then(function (res) {
|
|
19749
|
+
var rCode = res.rCode,
|
|
19750
|
+
results = res.results;
|
|
19751
|
+
|
|
19752
|
+
_this3.$toast.clear();
|
|
19753
|
+
if (rCode == 0) {
|
|
19754
|
+
_this3.uuid = results.uuid;
|
|
19755
|
+
// this.qrImg = results.qrImg;
|
|
19756
|
+
_this3.emailText = results.emailText;
|
|
19757
|
+
_this3.phoneText = results.phoneText;
|
|
19758
|
+
// if (this.active === 'SCANCODE') {
|
|
19759
|
+
// this.handleScanCodeRetrialAuth();
|
|
19760
|
+
// }
|
|
19761
|
+
}
|
|
19762
|
+
}).catch();
|
|
19763
|
+
},
|
|
19764
|
+
reqUrl: function reqUrl() {
|
|
19765
|
+
var _this4 = this;
|
|
19766
|
+
|
|
19767
|
+
this.$toast.loading({
|
|
19768
|
+
message: '加载中...',
|
|
19769
|
+
forbidClick: true,
|
|
19770
|
+
loadingType: 'spinner',
|
|
19771
|
+
overlay: true,
|
|
19772
|
+
duration: 0
|
|
19773
|
+
});
|
|
19774
|
+
utils_http({
|
|
19775
|
+
url: this.url,
|
|
19776
|
+
params: retrial_auth_src_mainvue_type_script_lang_js_extends({}, this.params, { retrialAuthGroupId: this.retrialAuthGroupId }),
|
|
19777
|
+
type: this.method
|
|
19778
|
+
}).then(function (res) {
|
|
19779
|
+
var rCode = res.rCode,
|
|
19780
|
+
results = res.results,
|
|
19781
|
+
msg = res.msg;
|
|
19782
|
+
|
|
19783
|
+
if (rCode == 61) {
|
|
19784
|
+
if (results) {
|
|
19785
|
+
_this4.newReload = results.reload || results.refresh;
|
|
19786
|
+
_this4.newGroup = results.retrialAuthGroupIds;
|
|
19787
|
+
_this4.newType = results.retrialAuthType.filter(function (item) {
|
|
19788
|
+
return item != 'SCANCODE';
|
|
19789
|
+
});
|
|
19790
|
+
_this4.init();
|
|
19791
|
+
if (_this4.newType.length > 0) {
|
|
19792
|
+
_this4.active = _this4.newType[0];
|
|
19793
|
+
}
|
|
19794
|
+
}
|
|
19795
|
+
_this4.show = true;
|
|
19796
|
+
} else {
|
|
19797
|
+
_this4.$toast(msg);
|
|
19798
|
+
_this4.$emit('error');
|
|
19799
|
+
}
|
|
19800
|
+
});
|
|
19801
|
+
}
|
|
19802
|
+
}
|
|
19803
|
+
});
|
|
19804
|
+
// CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue?vue&type=script&lang=js&
|
|
19805
|
+
/* harmony default export */ var packages_retrial_auth_src_mainvue_type_script_lang_js_ = (retrial_auth_src_mainvue_type_script_lang_js_);
|
|
19806
|
+
// CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue
|
|
19807
|
+
|
|
19808
|
+
|
|
19809
|
+
|
|
19810
|
+
|
|
19811
|
+
|
|
19812
|
+
/* normalize component */
|
|
19813
|
+
|
|
19814
|
+
var retrial_auth_src_main_component = normalizeComponent(
|
|
19815
|
+
packages_retrial_auth_src_mainvue_type_script_lang_js_,
|
|
19816
|
+
mainvue_type_template_id_46beaef7_render,
|
|
19817
|
+
mainvue_type_template_id_46beaef7_staticRenderFns,
|
|
19818
|
+
false,
|
|
19819
|
+
null,
|
|
19820
|
+
null,
|
|
19821
|
+
null
|
|
19822
|
+
|
|
19823
|
+
)
|
|
19824
|
+
|
|
19825
|
+
/* harmony default export */ var retrial_auth_src_main = (retrial_auth_src_main_component.exports);
|
|
19826
|
+
// CONCATENATED MODULE: ./packages/retrial-auth/index.js
|
|
19827
|
+
|
|
19828
|
+
|
|
19829
|
+
retrial_auth_src_main.install = function (Vue) {
|
|
19830
|
+
return Vue.component(retrial_auth_src_main.name, retrial_auth_src_main);
|
|
19831
|
+
};
|
|
19832
|
+
|
|
19833
|
+
/* harmony default export */ var retrial_auth = (retrial_auth_src_main);
|
|
19360
19834
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/pull-refresh/src/main.vue?vue&type=template&id=66d04530&
|
|
19361
19835
|
var mainvue_type_template_id_66d04530_render = function () {
|
|
19362
19836
|
var _vm = this
|
|
@@ -19565,7 +20039,8 @@ notice_bar_src_main.install = function (Vue) {
|
|
|
19565
20039
|
|
|
19566
20040
|
|
|
19567
20041
|
|
|
19568
|
-
|
|
20042
|
+
|
|
20043
|
+
var components = [loading, packages_button, button_group, selector, packages_field, packages_radio, picker, cell, circle, packages_switch, uploader, grid, grid_item, empty, packages_date, search, packages_tabs, tab, table, table_column, packages_tag, nav_bar, list, flow, popover, packages_checkbox, calendar, count_down, packages_form, skeleton, cascader, packages_image, image_preview, rate, action_sheet, popup, stepper, esign, pagination, swipe, retrial_auth, pull_refresh, notice_bar];
|
|
19569
20044
|
|
|
19570
20045
|
var install = function install(Vue) {
|
|
19571
20046
|
var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
@@ -19580,7 +20055,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
19580
20055
|
}
|
|
19581
20056
|
|
|
19582
20057
|
/* harmony default export */ var src = __webpack_exports__["default"] = ({
|
|
19583
|
-
version: '0.2.
|
|
20058
|
+
version: '0.2.14',
|
|
19584
20059
|
install: install,
|
|
19585
20060
|
Button: packages_button,
|
|
19586
20061
|
ButtonGroup: button_group,
|
|
@@ -19621,6 +20096,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
19621
20096
|
Esign: esign,
|
|
19622
20097
|
Pagination: pagination,
|
|
19623
20098
|
Swipe: swipe,
|
|
20099
|
+
RetrialAuth: retrial_auth,
|
|
19624
20100
|
PullRefresh: pull_refresh,
|
|
19625
20101
|
NoticeBar: notice_bar
|
|
19626
20102
|
});
|