ecinc-cloud-mappaio 9.7.67 → 9.7.68
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/ecmappaio.common.js +274 -48
- package/lib/ecmappaio.umd.js +276 -50
- package/lib/ecmappaio.umd.min.js +1 -1
- package/package.json +1 -1
package/lib/ecmappaio.common.js
CHANGED
|
@@ -9468,7 +9468,7 @@ src.install = function (Vue) {
|
|
|
9468
9468
|
|
|
9469
9469
|
/***/ }),
|
|
9470
9470
|
|
|
9471
|
-
/***/
|
|
9471
|
+
/***/ 1328:
|
|
9472
9472
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
9473
9473
|
|
|
9474
9474
|
"use strict";
|
|
@@ -12646,8 +12646,8 @@ var BodyFile_component = (0,componentNormalizer/* default */.A)(
|
|
|
12646
12646
|
)
|
|
12647
12647
|
|
|
12648
12648
|
/* harmony default export */ var BodyFile = (BodyFile_component.exports);
|
|
12649
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=template&id=
|
|
12650
|
-
var
|
|
12649
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=template&id=2b945eda&scoped=true
|
|
12650
|
+
var HandleIdeavue_type_template_id_2b945eda_scoped_true_render = function render() {
|
|
12651
12651
|
var _vm = this,
|
|
12652
12652
|
_c = _vm._self._c;
|
|
12653
12653
|
return _c('div', [_vm.showIdea > 0 && _vm.shouldShow ? _c('div', {
|
|
@@ -12916,6 +12916,17 @@ var HandleIdeavue_type_template_id_d4a12f7a_scoped_true_render = function render
|
|
|
12916
12916
|
on: {
|
|
12917
12917
|
"click": _vm.startChat
|
|
12918
12918
|
}
|
|
12919
|
+
}), _c('van-button', {
|
|
12920
|
+
directives: [{
|
|
12921
|
+
name: "show",
|
|
12922
|
+
rawName: "v-show",
|
|
12923
|
+
value: false,
|
|
12924
|
+
expression: "false"
|
|
12925
|
+
}],
|
|
12926
|
+
staticClass: "phoneCallBtn",
|
|
12927
|
+
on: {
|
|
12928
|
+
"click": _vm.onPhoneCallBtnClick
|
|
12929
|
+
}
|
|
12919
12930
|
}), _c('van-button', {
|
|
12920
12931
|
directives: [{
|
|
12921
12932
|
name: "show",
|
|
@@ -12927,15 +12938,34 @@ var HandleIdeavue_type_template_id_d4a12f7a_scoped_true_render = function render
|
|
|
12927
12938
|
on: {
|
|
12928
12939
|
"click": _vm.todownload
|
|
12929
12940
|
}
|
|
12941
|
+
}), _c('van-action-sheet', {
|
|
12942
|
+
attrs: {
|
|
12943
|
+
"actions": _vm.phoneActions,
|
|
12944
|
+
"cancel-text": "取消"
|
|
12945
|
+
},
|
|
12946
|
+
on: {
|
|
12947
|
+
"select": _vm.onPhoneActionSelect
|
|
12948
|
+
},
|
|
12949
|
+
model: {
|
|
12950
|
+
value: _vm.showPhoneActionSheet,
|
|
12951
|
+
callback: function callback($$v) {
|
|
12952
|
+
_vm.showPhoneActionSheet = $$v;
|
|
12953
|
+
},
|
|
12954
|
+
expression: "showPhoneActionSheet"
|
|
12955
|
+
}
|
|
12930
12956
|
})], 1);
|
|
12931
12957
|
};
|
|
12932
|
-
var
|
|
12958
|
+
var HandleIdeavue_type_template_id_2b945eda_scoped_true_staticRenderFns = [];
|
|
12933
12959
|
|
|
12934
12960
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=script&lang=js
|
|
12935
12961
|
window.startChat = function (staffId) {
|
|
12936
12962
|
document.querySelector('.startChatBtn').staffId = staffId;
|
|
12937
12963
|
document.querySelector('.startChatBtn').click();
|
|
12938
12964
|
};
|
|
12965
|
+
window.showPhoneAction = function (staffId) {
|
|
12966
|
+
document.querySelector('.phoneCallBtn').staffId = staffId;
|
|
12967
|
+
document.querySelector('.phoneCallBtn').click();
|
|
12968
|
+
};
|
|
12939
12969
|
window.todownload = function (val) {
|
|
12940
12970
|
console.log(val);
|
|
12941
12971
|
document.querySelector('.donext-attachBtn').downUrl = val.split(',')[0];
|
|
@@ -13009,7 +13039,13 @@ window.todownload = function (val) {
|
|
|
13009
13039
|
// 是否允许发起聊天
|
|
13010
13040
|
loginUser: this.$store.getters.loginUser,
|
|
13011
13041
|
wfInstance: {},
|
|
13012
|
-
embeddedShown: false
|
|
13042
|
+
embeddedShown: false,
|
|
13043
|
+
// 意见栏是否已全部在业务表单内通过 idea-field 渲染
|
|
13044
|
+
showPhoneActionSheet: false,
|
|
13045
|
+
curPhoneNum: '',
|
|
13046
|
+
ideaStaffMobileMap: {},
|
|
13047
|
+
// 意见签名人staffId → 手机号
|
|
13048
|
+
phoneQueriedStaffIds: [] // 已查询过手机号的签名人staffId,避免 updated 反复触发重复请求
|
|
13013
13049
|
};
|
|
13014
13050
|
},
|
|
13015
13051
|
computed: {
|
|
@@ -13024,6 +13060,13 @@ window.todownload = function (val) {
|
|
|
13024
13060
|
shouldShow: function shouldShow() {
|
|
13025
13061
|
if (!this.checkEmbeddedShow) return true;
|
|
13026
13062
|
return !this.embeddedShown && this.visibleIdeaList.length > 0;
|
|
13063
|
+
},
|
|
13064
|
+
phoneActions: function phoneActions() {
|
|
13065
|
+
return [{
|
|
13066
|
+
name: this.$tx('ecmapp.common.makeCall', '拨打电话')
|
|
13067
|
+
}, {
|
|
13068
|
+
name: this.$tx('ecmapp.common.sendMessage', '发送短信')
|
|
13069
|
+
}];
|
|
13027
13070
|
}
|
|
13028
13071
|
},
|
|
13029
13072
|
watch: {
|
|
@@ -13100,12 +13143,13 @@ window.todownload = function (val) {
|
|
|
13100
13143
|
}
|
|
13101
13144
|
});
|
|
13102
13145
|
if (!this.loginUser.webchat) {
|
|
13103
|
-
this.anywhereChat = false
|
|
13146
|
+
//this.anywhereChat = false
|
|
13104
13147
|
}
|
|
13105
13148
|
},
|
|
13106
13149
|
updated: function updated() {
|
|
13107
13150
|
var _this4 = this;
|
|
13108
13151
|
var ideaDivs = document.querySelectorAll('.ideaDiv');
|
|
13152
|
+
var ideaStaffIds = []; // 非本人意见签名人的staffId,用于批量查询手机号
|
|
13109
13153
|
ideaDivs.forEach(function (ideaDiv) {
|
|
13110
13154
|
if (ideaDivs && _this4.anywhereChat) {
|
|
13111
13155
|
if (ideaDiv.innerText !== _this4.$tx('ecmapp.common.nothing', '无') && ideaDiv.innerText !== '' && ideaDiv.innerText !== _this4.$tx('ecmapp.common.nothing', '无') && ideaDiv.attributes['staffId']) {
|
|
@@ -13118,7 +13162,12 @@ window.todownload = function (val) {
|
|
|
13118
13162
|
}
|
|
13119
13163
|
});
|
|
13120
13164
|
if (!self) {
|
|
13121
|
-
|
|
13165
|
+
if (ideaStaffIds.indexOf(staffId) === -1) {
|
|
13166
|
+
ideaStaffIds.push(staffId);
|
|
13167
|
+
}
|
|
13168
|
+
if (!ideaDiv.querySelector('.idea-start-chat')) {
|
|
13169
|
+
ideaDiv.innerHTML += '<a href="javascript:" onclick="startChat(\'' + staffId + '\')"><i data-v-5c359387="" class="idea-start-chat van-icon van-icon-chat-o"></i></a>';
|
|
13170
|
+
}
|
|
13122
13171
|
}
|
|
13123
13172
|
}
|
|
13124
13173
|
}
|
|
@@ -13129,6 +13178,15 @@ window.todownload = function (val) {
|
|
|
13129
13178
|
span.style = 'width:20px';
|
|
13130
13179
|
}
|
|
13131
13180
|
});
|
|
13181
|
+
|
|
13182
|
+
// 仅查询未查过的签名人,updated 反复触发时不重复请求;查到的手机号用于给签名行注入拨打电话图标
|
|
13183
|
+
var newStaffIds = ideaStaffIds.filter(function (staffId) {
|
|
13184
|
+
return _this4.phoneQueriedStaffIds.indexOf(staffId) === -1;
|
|
13185
|
+
});
|
|
13186
|
+
if (newStaffIds.length > 0) {
|
|
13187
|
+
this.queryIdeaStaffMobiles(newStaffIds);
|
|
13188
|
+
}
|
|
13189
|
+
this.cropIdeaSignatureWhitespace();
|
|
13132
13190
|
},
|
|
13133
13191
|
beforeDestroy: function beforeDestroy() {},
|
|
13134
13192
|
mounted: function mounted() {
|
|
@@ -13236,17 +13294,9 @@ window.todownload = function (val) {
|
|
|
13236
13294
|
}).then(function (response) {
|
|
13237
13295
|
if (response.code === 'success') {
|
|
13238
13296
|
//response.body.listdata[0].webchat = '23234'
|
|
13239
|
-
if (response.body.listdata
|
|
13240
|
-
var formUrl = encodeURIComponent(location.href.split('#')[1]);
|
|
13297
|
+
if (response.body.listdata && response.body.listdata.length > 0) {
|
|
13241
13298
|
var webchat = response.body.listdata[0].webchat;
|
|
13242
|
-
_this8
|
|
13243
|
-
path: '/chatRoom',
|
|
13244
|
-
query: {
|
|
13245
|
-
webchat: webchat,
|
|
13246
|
-
openType: 'singleChat',
|
|
13247
|
-
from: formUrl
|
|
13248
|
-
}
|
|
13249
|
-
});
|
|
13299
|
+
_this8.openChatRoom(webchat);
|
|
13250
13300
|
} else {
|
|
13251
13301
|
_this8.$dialog.alert({
|
|
13252
13302
|
message: _this8.$tx('ecmapp.wflowform.notActivated', '未开通即时通信功能')
|
|
@@ -13254,22 +13304,196 @@ window.todownload = function (val) {
|
|
|
13254
13304
|
}
|
|
13255
13305
|
} else {
|
|
13256
13306
|
_this8.$dialog.alert({
|
|
13257
|
-
message:
|
|
13307
|
+
message: response.message
|
|
13258
13308
|
});
|
|
13259
13309
|
}
|
|
13260
13310
|
});
|
|
13311
|
+
},
|
|
13312
|
+
//跳转聊天室;表单页常处于PopupDialog右滑屏弹层栈中(路由带tier参数,每开一层弹层push一次tier+1),
|
|
13313
|
+
//直接push其他路由会销毁表单组件树,还开着的PopupDialog在beforeDestroy中会$router.back(-1)把路由拉回表单页并重新展开弹层;
|
|
13314
|
+
//须先按tier层数回退到无弹层的基础路由(弹层$route侦听器自行复位关闭),再跳转
|
|
13315
|
+
openChatRoom: function openChatRoom(webchat) {
|
|
13316
|
+
var _this9 = this;
|
|
13317
|
+
var hash = location.href.split('#')[1] || '';
|
|
13318
|
+
//返回地址剔除tier参数,从聊天室返回表单时不再带入弹层层级
|
|
13319
|
+
var fromUrl = hash.split('?')[0] + (hash.indexOf('?') > -1 ? '?' + hash.split('?')[1].split('&').filter(function (param) {
|
|
13320
|
+
return param.indexOf('tier=') !== 0;
|
|
13321
|
+
}).join('&') : '');
|
|
13322
|
+
var formUrl = encodeURIComponent(fromUrl);
|
|
13323
|
+
var pushChatRoom = function pushChatRoom() {
|
|
13324
|
+
_this9.$router.push({
|
|
13325
|
+
path: '/chatRoom',
|
|
13326
|
+
query: {
|
|
13327
|
+
webchat: webchat,
|
|
13328
|
+
openType: 'singleChat',
|
|
13329
|
+
from: formUrl
|
|
13330
|
+
}
|
|
13331
|
+
});
|
|
13332
|
+
};
|
|
13333
|
+
var curTier = ~~this.$route.query.tier;
|
|
13334
|
+
if (curTier > 0) {
|
|
13335
|
+
//回退到基础路由后等待路由更新与弹层状态复位(hash模式路由更新为异步事件),再跳转聊天室;
|
|
13336
|
+
//此时PopupDialog的tier均已归零,随表单销毁不会再back(-1)
|
|
13337
|
+
this.$router.go(-curTier);
|
|
13338
|
+
setTimeout(function () {
|
|
13339
|
+
pushChatRoom();
|
|
13340
|
+
}, 300);
|
|
13341
|
+
} else {
|
|
13342
|
+
pushChatRoom();
|
|
13343
|
+
}
|
|
13344
|
+
},
|
|
13345
|
+
//批量查询意见签名人联系信息,缓存手机号并为有手机号的签名行注入拨打电话图标(参考startChat的接口调用方式)
|
|
13346
|
+
queryIdeaStaffMobiles: function queryIdeaStaffMobiles(staffIds) {
|
|
13347
|
+
var _this10 = this;
|
|
13348
|
+
this.$http({
|
|
13349
|
+
method: 'GET',
|
|
13350
|
+
params: {
|
|
13351
|
+
staffIds: staffIds.join()
|
|
13352
|
+
},
|
|
13353
|
+
url: 'base/organMgr/findLinkManListByStaffIds'
|
|
13354
|
+
}).then(function (response) {
|
|
13355
|
+
staffIds.forEach(function (staffId) {
|
|
13356
|
+
if (_this10.phoneQueriedStaffIds.indexOf(staffId) === -1) {
|
|
13357
|
+
_this10.phoneQueriedStaffIds.push(staffId);
|
|
13358
|
+
}
|
|
13359
|
+
});
|
|
13360
|
+
if (response.code !== 'success' || !response.body || !response.body.listdata) return;
|
|
13361
|
+
response.body.listdata.forEach(function (item) {
|
|
13362
|
+
var sid = item.staffId || item.id;
|
|
13363
|
+
if (!sid || !item.mobile) return;
|
|
13364
|
+
_this10.ideaStaffMobileMap[sid] = item.mobile;
|
|
13365
|
+
document.querySelectorAll('.ideaDiv[staffId="' + sid + '"]').forEach(function (ideaDiv) {
|
|
13366
|
+
if (!ideaDiv.querySelector('.idea-phone-call')) {
|
|
13367
|
+
ideaDiv.innerHTML += '<a href="javascript:" onclick="showPhoneAction(\'' + sid + '\')"><i class="idea-phone-call van-icon van-icon-phone-o"></i></a>';
|
|
13368
|
+
}
|
|
13369
|
+
});
|
|
13370
|
+
});
|
|
13371
|
+
});
|
|
13372
|
+
},
|
|
13373
|
+
//隐藏按钮转发(见window.showPhoneAction):优先取缓存手机号,缺失时单人查询接口兜底,再弹出拨号/短信actionSheet
|
|
13374
|
+
onPhoneCallBtnClick: function onPhoneCallBtnClick() {
|
|
13375
|
+
var _this11 = this;
|
|
13376
|
+
var staffId = document.querySelector('.phoneCallBtn').staffId;
|
|
13377
|
+
var mobile = this.ideaStaffMobileMap[staffId];
|
|
13378
|
+
if (mobile) {
|
|
13379
|
+
this.curPhoneNum = mobile;
|
|
13380
|
+
this.showPhoneActionSheet = true;
|
|
13381
|
+
return;
|
|
13382
|
+
}
|
|
13383
|
+
this.$http({
|
|
13384
|
+
method: 'GET',
|
|
13385
|
+
params: {
|
|
13386
|
+
staffIds: staffId
|
|
13387
|
+
},
|
|
13388
|
+
url: 'base/organMgr/findLinkManListByStaffIds'
|
|
13389
|
+
}).then(function (response) {
|
|
13390
|
+
if (response.code === 'success' && response.body.listdata.length > 0 && response.body.listdata[0].mobile) {
|
|
13391
|
+
_this11.ideaStaffMobileMap[staffId] = response.body.listdata[0].mobile;
|
|
13392
|
+
_this11.curPhoneNum = response.body.listdata[0].mobile;
|
|
13393
|
+
_this11.showPhoneActionSheet = true;
|
|
13394
|
+
} else {
|
|
13395
|
+
_this11.$dialog.alert({
|
|
13396
|
+
message: _this11.$tx('ecmapp.wflowform.noPhoneNum', '未查询到该签名人的手机号')
|
|
13397
|
+
});
|
|
13398
|
+
}
|
|
13399
|
+
});
|
|
13400
|
+
},
|
|
13401
|
+
//参考InputField.vue:选择拨打电话/发送短信后通过tel:/sms:协议拉起
|
|
13402
|
+
onPhoneActionSelect: function onPhoneActionSelect(action) {
|
|
13403
|
+
var phoneNum = String(this.curPhoneNum).replace(/[\s-]/g, '');
|
|
13404
|
+
var callText = this.$tx('ecmapp.common.makeCall', '拨打电话');
|
|
13405
|
+
var smsText = this.$tx('ecmapp.common.sendMessage', '发送短信');
|
|
13406
|
+
if (action.name === callText) {
|
|
13407
|
+
window.location.href = 'tel:' + phoneNum;
|
|
13408
|
+
} else if (action.name === smsText) {
|
|
13409
|
+
window.location.href = 'sms:' + phoneNum;
|
|
13410
|
+
}
|
|
13411
|
+
this.showPhoneActionSheet = false;
|
|
13412
|
+
},
|
|
13413
|
+
//剪切手写签名图片四周留白,仅保留字迹部分;移植自ecwapp HandleIdea.vue,dataset.cropped防重复裁剪(重复调用幂等)
|
|
13414
|
+
cropIdeaSignatureWhitespace: function cropIdeaSignatureWhitespace() {
|
|
13415
|
+
var _this12 = this;
|
|
13416
|
+
document.querySelectorAll('.ideaSignature').forEach(function (img) {
|
|
13417
|
+
if (img.dataset.cropped === '1') return;
|
|
13418
|
+
if (img.complete) {
|
|
13419
|
+
_this12._cropSignature(img);
|
|
13420
|
+
} else {
|
|
13421
|
+
img.addEventListener('load', function () {
|
|
13422
|
+
return _this12._cropSignature(img);
|
|
13423
|
+
}, {
|
|
13424
|
+
once: true
|
|
13425
|
+
});
|
|
13426
|
+
}
|
|
13427
|
+
});
|
|
13428
|
+
},
|
|
13429
|
+
_cropSignature: function _cropSignature(img) {
|
|
13430
|
+
if (img.dataset.cropped === '1' || !img.naturalWidth || !img.naturalHeight) return;
|
|
13431
|
+
try {
|
|
13432
|
+
var width = img.naturalWidth;
|
|
13433
|
+
var height = img.naturalHeight;
|
|
13434
|
+
var canvas = document.createElement('canvas');
|
|
13435
|
+
canvas.width = width;
|
|
13436
|
+
canvas.height = height;
|
|
13437
|
+
var ctx = canvas.getContext('2d');
|
|
13438
|
+
ctx.drawImage(img, 0, 0);
|
|
13439
|
+
var pixels = ctx.getImageData(0, 0, width, height).data;
|
|
13440
|
+
|
|
13441
|
+
//以左上角像素为背景色,兼容透明底与白底图片,扫描内容像素边界
|
|
13442
|
+
var bgR = pixels[0];
|
|
13443
|
+
var bgG = pixels[1];
|
|
13444
|
+
var bgB = pixels[2];
|
|
13445
|
+
var bgA = pixels[3];
|
|
13446
|
+
var minX = width;
|
|
13447
|
+
var minY = height;
|
|
13448
|
+
var maxX = -1;
|
|
13449
|
+
var maxY = -1;
|
|
13450
|
+
for (var y = 0; y < height; y++) {
|
|
13451
|
+
for (var x = 0; x < width; x++) {
|
|
13452
|
+
var i = (y * width + x) * 4;
|
|
13453
|
+
var isContent = void 0;
|
|
13454
|
+
if (bgA < 20) {
|
|
13455
|
+
isContent = pixels[i + 3] > 20; //透明背景:不透明即内容
|
|
13456
|
+
} else {
|
|
13457
|
+
isContent = pixels[i + 3] > 20 && Math.abs(pixels[i] - bgR) + Math.abs(pixels[i + 1] - bgG) + Math.abs(pixels[i + 2] - bgB) > 80; //与背景色差异明显即内容
|
|
13458
|
+
}
|
|
13459
|
+
if (isContent) {
|
|
13460
|
+
if (x < minX) minX = x;
|
|
13461
|
+
if (x > maxX) maxX = x;
|
|
13462
|
+
if (y < minY) minY = y;
|
|
13463
|
+
if (y > maxY) maxY = y;
|
|
13464
|
+
}
|
|
13465
|
+
}
|
|
13466
|
+
}
|
|
13467
|
+
if (maxX < 0) return; //未识别到内容像素,保持原图
|
|
13468
|
+
|
|
13469
|
+
var pad = 2; //保留少量边距,避免裁掉笔锋
|
|
13470
|
+
minX = Math.max(0, minX - pad);
|
|
13471
|
+
minY = Math.max(0, minY - pad);
|
|
13472
|
+
maxX = Math.min(width - 1, maxX + pad);
|
|
13473
|
+
maxY = Math.min(height - 1, maxY + pad);
|
|
13474
|
+
var cropW = maxX - minX + 1;
|
|
13475
|
+
var cropH = maxY - minY + 1;
|
|
13476
|
+
var cropCanvas = document.createElement('canvas');
|
|
13477
|
+
cropCanvas.width = cropW;
|
|
13478
|
+
cropCanvas.height = cropH;
|
|
13479
|
+
cropCanvas.getContext('2d').drawImage(canvas, minX, minY, cropW, cropH, 0, 0, cropW, cropH);
|
|
13480
|
+
img.dataset.cropped = '1';
|
|
13481
|
+
img.src = cropCanvas.toDataURL('image/png');
|
|
13482
|
+
} catch (e) {
|
|
13483
|
+
//canvas被跨域污染等异常时不处理,保持原图
|
|
13484
|
+
}
|
|
13261
13485
|
}
|
|
13262
13486
|
}
|
|
13263
13487
|
});
|
|
13264
13488
|
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=script&lang=js
|
|
13265
13489
|
/* harmony default export */ var src_HandleIdeavue_type_script_lang_js = (HandleIdeavue_type_script_lang_js);
|
|
13266
|
-
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=
|
|
13267
|
-
var
|
|
13268
|
-
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=
|
|
13490
|
+
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=2b945eda&prod&scoped=true&lang=scss
|
|
13491
|
+
var HandleIdeavue_type_style_index_0_id_2b945eda_prod_scoped_true_lang_scss = __webpack_require__(8739);
|
|
13492
|
+
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=2b945eda&prod&scoped=true&lang=scss
|
|
13269
13493
|
|
|
13270
|
-
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=
|
|
13271
|
-
var
|
|
13272
|
-
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=
|
|
13494
|
+
// EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=2b945eda&prod&lang=css
|
|
13495
|
+
var HandleIdeavue_type_style_index_1_id_2b945eda_prod_lang_css = __webpack_require__(5641);
|
|
13496
|
+
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=2b945eda&prod&lang=css
|
|
13273
13497
|
|
|
13274
13498
|
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue
|
|
13275
13499
|
|
|
@@ -13283,11 +13507,11 @@ var HandleIdeavue_type_style_index_1_id_d4a12f7a_prod_lang_css = __webpack_requi
|
|
|
13283
13507
|
|
|
13284
13508
|
var HandleIdea_component = (0,componentNormalizer/* default */.A)(
|
|
13285
13509
|
src_HandleIdeavue_type_script_lang_js,
|
|
13286
|
-
|
|
13287
|
-
|
|
13510
|
+
HandleIdeavue_type_template_id_2b945eda_scoped_true_render,
|
|
13511
|
+
HandleIdeavue_type_template_id_2b945eda_scoped_true_staticRenderFns,
|
|
13288
13512
|
false,
|
|
13289
13513
|
null,
|
|
13290
|
-
"
|
|
13514
|
+
"2b945eda",
|
|
13291
13515
|
null
|
|
13292
13516
|
|
|
13293
13517
|
)
|
|
@@ -20572,6 +20796,7 @@ module.exports = {
|
|
|
20572
20796
|
handlingSuggestions: 'Handling Suggestions',
|
|
20573
20797
|
notActivated: 'Instant messaging feature not activated',
|
|
20574
20798
|
notActivated1: '{staffName} has not activated the instant messaging feature',
|
|
20799
|
+
noPhoneNum: 'No mobile number found for this signer',
|
|
20575
20800
|
specifyLimit: 'Specify deadline',
|
|
20576
20801
|
endless: 'No deadline',
|
|
20577
20802
|
pSelectAddHandler: 'Please select the new step handler!',
|
|
@@ -20816,6 +21041,7 @@ module.exports = {
|
|
|
20816
21041
|
handlingSuggestions: '处理意见',
|
|
20817
21042
|
notActivated: '未开通即时通信功能',
|
|
20818
21043
|
notActivated1: '{staffName}未开通即时通信功能',
|
|
21044
|
+
noPhoneNum: '未查询到该签名人的手机号',
|
|
20819
21045
|
specifyLimit: '指定时限',
|
|
20820
21046
|
endless: '无时限',
|
|
20821
21047
|
pSelectAddHandler: '请选择新增环节处理人!',
|
|
@@ -23380,7 +23606,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".pdftools-savedialog .van-loading{heig
|
|
|
23380
23606
|
|
|
23381
23607
|
/***/ }),
|
|
23382
23608
|
|
|
23383
|
-
/***/
|
|
23609
|
+
/***/ 7222:
|
|
23384
23610
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
23385
23611
|
|
|
23386
23612
|
"use strict";
|
|
@@ -23394,7 +23620,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23394
23620
|
|
|
23395
23621
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
23396
23622
|
// Module
|
|
23397
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".ideaDiv{position:relative}.idea-start-chat{margin-top:-20px;position:absolute;font-size:19px}", ""]);
|
|
23623
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".ideaDiv{position:relative}.idea-start-chat{right:28px}.idea-phone-call,.idea-start-chat{margin-top:-20px;position:absolute;font-size:19px}.idea-phone-call{right:2px}", ""]);
|
|
23398
23624
|
// Exports
|
|
23399
23625
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
23400
23626
|
|
|
@@ -24079,7 +24305,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".loading[data-v-3eb301b1]{margin-top:1
|
|
|
24079
24305
|
|
|
24080
24306
|
/***/ }),
|
|
24081
24307
|
|
|
24082
|
-
/***/
|
|
24308
|
+
/***/ 1045:
|
|
24083
24309
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
24084
24310
|
|
|
24085
24311
|
"use strict";
|
|
@@ -24093,7 +24319,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24093
24319
|
|
|
24094
24320
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
24095
24321
|
// Module
|
|
24096
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".handle-idea-container[data-v-
|
|
24322
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".handle-idea-container[data-v-2b945eda] .van-collapse .van-cell__title{color:#000;font-weight:400}[data-v-2b945eda] .ideaDiv{margin:5px 0}[data-v-2b945eda] .ideaDiv p{margin-top:0;margin-bottom:0}[data-v-2b945eda] .ideaDiv span{display:inline-block}[data-v-2b945eda] .ideaDiv .handwritingIdea{width:200px}[data-v-2b945eda] .ideaDiv .ideaSignature{max-width:80px;max-height:30px}[data-v-2b945eda] .ideaDiv .donext-attach{padding-left:10px;position:absolute}[data-v-2b945eda] .ideaDiv .donext-attach svg{margin-top:2px;width:15px;height:15px}[data-v-2b945eda] .highlight{font-weight:600;color:#323233}[data-v-2b945eda] .van-collapse-item--border:after,[data-v-2b945eda] .van-collapse-item__title:after{right:0}[data-v-2b945eda] .van-collapse-item__content{padding-top:1px}[data-v-2b945eda] .van-cell:after{border-bottom:0 solid}.viewAllComments[data-v-2b945eda]{height:45px;line-height:45px;text-align:center;color:#b7b7b7;font-size:12px;background:#fff}.HandleIdeaContent[data-v-2b945eda]{padding:6px 12px;color:#969799;font-size:14px;line-height:1.5;background-color:#fff}", ""]);
|
|
24097
24323
|
// Exports
|
|
24098
24324
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
24099
24325
|
|
|
@@ -51290,19 +51516,19 @@ var update = add("0ebc5c23", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
51290
51516
|
|
|
51291
51517
|
/***/ }),
|
|
51292
51518
|
|
|
51293
|
-
/***/
|
|
51519
|
+
/***/ 5641:
|
|
51294
51520
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
51295
51521
|
|
|
51296
51522
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
51297
51523
|
|
|
51298
51524
|
// load the styles
|
|
51299
|
-
var content = __webpack_require__(
|
|
51525
|
+
var content = __webpack_require__(7222);
|
|
51300
51526
|
if(content.__esModule) content = content.default;
|
|
51301
51527
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
51302
51528
|
if(content.locals) module.exports = content.locals;
|
|
51303
51529
|
// add the styles to the DOM
|
|
51304
51530
|
var add = (__webpack_require__(9548)/* ["default"] */ .A)
|
|
51305
|
-
var update = add("
|
|
51531
|
+
var update = add("a8b59c5e", content, true, {"sourceMap":false,"shadowMode":false});
|
|
51306
51532
|
|
|
51307
51533
|
/***/ }),
|
|
51308
51534
|
|
|
@@ -51818,19 +52044,19 @@ var update = add("24b5a016", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
51818
52044
|
|
|
51819
52045
|
/***/ }),
|
|
51820
52046
|
|
|
51821
|
-
/***/
|
|
52047
|
+
/***/ 8739:
|
|
51822
52048
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
51823
52049
|
|
|
51824
52050
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
51825
52051
|
|
|
51826
52052
|
// load the styles
|
|
51827
|
-
var content = __webpack_require__(
|
|
52053
|
+
var content = __webpack_require__(1045);
|
|
51828
52054
|
if(content.__esModule) content = content.default;
|
|
51829
52055
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
51830
52056
|
if(content.locals) module.exports = content.locals;
|
|
51831
52057
|
// add the styles to the DOM
|
|
51832
52058
|
var add = (__webpack_require__(9548)/* ["default"] */ .A)
|
|
51833
|
-
var update = add("
|
|
52059
|
+
var update = add("4a35a74a", content, true, {"sourceMap":false,"shadowMode":false});
|
|
51834
52060
|
|
|
51835
52061
|
/***/ }),
|
|
51836
52062
|
|
|
@@ -76209,43 +76435,43 @@ var asyncComponents = [
|
|
|
76209
76435
|
}],
|
|
76210
76436
|
// ========== ecmapp/Wflowform 工作流表单子组件 → chunk: m-wflow-form ==========
|
|
76211
76437
|
['Attachment', function () {
|
|
76212
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76438
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76213
76439
|
return m.Attachment;
|
|
76214
76440
|
});
|
|
76215
76441
|
}], ['BodyFile', function () {
|
|
76216
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76442
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76217
76443
|
return m.BodyFile;
|
|
76218
76444
|
});
|
|
76219
76445
|
}], ['HandleIdea', function () {
|
|
76220
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76446
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76221
76447
|
return m.HandleIdea;
|
|
76222
76448
|
});
|
|
76223
76449
|
}], ['SelectOuterDeputy', function () {
|
|
76224
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76450
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76225
76451
|
return m.SelectOuterDeputy;
|
|
76226
76452
|
});
|
|
76227
76453
|
}], ['SubmitHandle', function () {
|
|
76228
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76454
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76229
76455
|
return m.SubmitHandle;
|
|
76230
76456
|
});
|
|
76231
76457
|
}], ['SubmitDialog', function () {
|
|
76232
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76458
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76233
76459
|
return m.SubmitDialog;
|
|
76234
76460
|
});
|
|
76235
76461
|
}], ['ShortcutProcessing', function () {
|
|
76236
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76462
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76237
76463
|
return m.ShortcutProcessing;
|
|
76238
76464
|
});
|
|
76239
76465
|
}], ['WfNodelogList', function () {
|
|
76240
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76466
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76241
76467
|
return m.WfNodelogList;
|
|
76242
76468
|
});
|
|
76243
76469
|
}], ['WriteToReadIdea', function () {
|
|
76244
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76470
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76245
76471
|
return m.WriteToReadIdea;
|
|
76246
76472
|
});
|
|
76247
76473
|
}], ['VoiceInputDialog', function () {
|
|
76248
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76474
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328)).then(function (m) {
|
|
76249
76475
|
return m.VoiceInputDialog;
|
|
76250
76476
|
});
|
|
76251
76477
|
}]];
|
|
@@ -76303,7 +76529,7 @@ var WfengineModule = function WfengineModule() {
|
|
|
76303
76529
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 8838));
|
|
76304
76530
|
};
|
|
76305
76531
|
var WflowformModule = function WflowformModule() {
|
|
76306
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76532
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 1328));
|
|
76307
76533
|
};
|
|
76308
76534
|
|
|
76309
76535
|
// ---------- 重型功能(PDF/富文本,仅特定页面使用) ----------
|