eoss-mobiles 0.2.5 → 0.2.6
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 +6 -3
- package/lib/config/api.js +2 -1
- package/lib/eoss-mobile.common.js +435 -165
- package/lib/esign.js +11 -12
- package/lib/flow.js +411 -141
- package/lib/index.js +1 -1
- package/lib/picker.js +6 -3
- package/lib/radio.js +6 -3
- package/lib/selector.js +15 -11
- package/lib/table.js +4 -2
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.scss +7 -3
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/selector.css +1 -1
- package/lib/utils/axios.js +4 -2
- package/package.json +1 -1
- package/packages/esign/src/main.vue +3 -3
- package/packages/flow/src/components/Handle.vue +40 -15
- package/packages/flow/src/components/Opinion.vue +103 -31
- package/packages/flow/src/components/Reject.vue +26 -10
- package/packages/flow/src/components/StartFlow.vue +38 -10
- package/packages/flow/src/components/taskUnionExamine.vue +44 -20
- package/packages/selector/src/selector-tree.vue +2 -1
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.scss +7 -3
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/selector.css +1 -1
- package/packages/theme-chalk/src/flow.scss +59 -24
- package/packages/theme-chalk/src/fonts/iconfont.scss +7 -3
- package/src/config/api.js +2 -1
- package/src/index.js +1 -1
- package/src/utils/axios.js +9 -2
package/lib/esign.js
CHANGED
|
@@ -199,7 +199,7 @@ function normalizeComponent(
|
|
|
199
199
|
// ESM COMPAT FLAG
|
|
200
200
|
__webpack_require__.r(__webpack_exports__);
|
|
201
201
|
|
|
202
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/esign/src/main.vue?vue&type=template&id=
|
|
202
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/esign/src/main.vue?vue&type=template&id=dd4e0e96&
|
|
203
203
|
var render = function () {
|
|
204
204
|
var _vm = this
|
|
205
205
|
var _h = _vm.$createElement
|
|
@@ -279,8 +279,8 @@ var render = function () {
|
|
|
279
279
|
attrs: {
|
|
280
280
|
isCrop: false,
|
|
281
281
|
height: _vm.esignHeight,
|
|
282
|
-
lineWidth: _vm.
|
|
283
|
-
lineColor: _vm.
|
|
282
|
+
lineWidth: _vm.esignLineWidth,
|
|
283
|
+
lineColor: _vm.esignColor,
|
|
284
284
|
},
|
|
285
285
|
}),
|
|
286
286
|
_c(
|
|
@@ -333,11 +333,9 @@ var staticRenderFns = []
|
|
|
333
333
|
render._withStripped = true
|
|
334
334
|
|
|
335
335
|
|
|
336
|
-
// CONCATENATED MODULE: ./packages/esign/src/main.vue?vue&type=template&id=
|
|
336
|
+
// CONCATENATED MODULE: ./packages/esign/src/main.vue?vue&type=template&id=dd4e0e96&
|
|
337
337
|
|
|
338
338
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/esign/src/main.vue?vue&type=script&lang=js&
|
|
339
|
-
var _props;
|
|
340
|
-
|
|
341
339
|
//
|
|
342
340
|
//
|
|
343
341
|
//
|
|
@@ -409,7 +407,7 @@ var _props;
|
|
|
409
407
|
};
|
|
410
408
|
},
|
|
411
409
|
|
|
412
|
-
props:
|
|
410
|
+
props: {
|
|
413
411
|
filePath: {
|
|
414
412
|
type: String,
|
|
415
413
|
default: ''
|
|
@@ -418,7 +416,7 @@ var _props;
|
|
|
418
416
|
type: [String, Number],
|
|
419
417
|
default: 80
|
|
420
418
|
},
|
|
421
|
-
|
|
419
|
+
esignLineWidth: {
|
|
422
420
|
type: Number,
|
|
423
421
|
default: 1
|
|
424
422
|
},
|
|
@@ -429,11 +427,12 @@ var _props;
|
|
|
429
427
|
esignHeight: {
|
|
430
428
|
type: [String, Number],
|
|
431
429
|
default: 550
|
|
430
|
+
},
|
|
431
|
+
esignWidth: {
|
|
432
|
+
type: [String, Number],
|
|
433
|
+
default: '330'
|
|
432
434
|
}
|
|
433
|
-
},
|
|
434
|
-
type: [String, Number],
|
|
435
|
-
default: '330'
|
|
436
|
-
}, _props),
|
|
435
|
+
},
|
|
437
436
|
watch: {
|
|
438
437
|
filePath: {
|
|
439
438
|
handler: function handler(val) {
|