ecinc-cloud-mappaio 9.7.68 → 9.7.70
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 +285 -130
- package/lib/ecmappaio.umd.js +287 -132
- 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
|
+
/***/ 620:
|
|
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=5ed9d962&scoped=true
|
|
12650
|
+
var HandleIdeavue_type_template_id_5ed9d962_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', {
|
|
@@ -12955,7 +12955,7 @@ var HandleIdeavue_type_template_id_2b945eda_scoped_true_render = function render
|
|
|
12955
12955
|
}
|
|
12956
12956
|
})], 1);
|
|
12957
12957
|
};
|
|
12958
|
-
var
|
|
12958
|
+
var HandleIdeavue_type_template_id_5ed9d962_scoped_true_staticRenderFns = [];
|
|
12959
12959
|
|
|
12960
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
|
|
12961
12961
|
window.startChat = function (staffId) {
|
|
@@ -13035,8 +13035,10 @@ window.todownload = function (val) {
|
|
|
13035
13035
|
collapseNames: [],
|
|
13036
13036
|
viewCommentsNum: null,
|
|
13037
13037
|
handleArr: [],
|
|
13038
|
-
anywhereChat:
|
|
13039
|
-
//
|
|
13038
|
+
anywhereChat: this.$settings && this.$settings.anywhereChat || false,
|
|
13039
|
+
// 是否允许发起聊天(settings.js配置)
|
|
13040
|
+
anywherePhone: this.$settings && this.$settings.anywherePhone || false,
|
|
13041
|
+
// 是否允许拨打电话(settings.js配置)
|
|
13040
13042
|
loginUser: this.$store.getters.loginUser,
|
|
13041
13043
|
wfInstance: {},
|
|
13042
13044
|
embeddedShown: false,
|
|
@@ -13143,56 +13145,17 @@ window.todownload = function (val) {
|
|
|
13143
13145
|
}
|
|
13144
13146
|
});
|
|
13145
13147
|
if (!this.loginUser.webchat) {
|
|
13146
|
-
|
|
13148
|
+
this.anywhereChat = false;
|
|
13147
13149
|
}
|
|
13148
13150
|
},
|
|
13149
13151
|
updated: function updated() {
|
|
13150
|
-
|
|
13151
|
-
var ideaDivs = document.querySelectorAll('.ideaDiv');
|
|
13152
|
-
var ideaStaffIds = []; // 非本人意见签名人的staffId,用于批量查询手机号
|
|
13153
|
-
ideaDivs.forEach(function (ideaDiv) {
|
|
13154
|
-
if (ideaDivs && _this4.anywhereChat) {
|
|
13155
|
-
if (ideaDiv.innerText !== _this4.$tx('ecmapp.common.nothing', '无') && ideaDiv.innerText !== '' && ideaDiv.innerText !== _this4.$tx('ecmapp.common.nothing', '无') && ideaDiv.attributes['staffId']) {
|
|
13156
|
-
var staffId = ideaDiv.attributes['staffId'].nodeValue;
|
|
13157
|
-
if (staffId) {
|
|
13158
|
-
var self = false;
|
|
13159
|
-
_this4.loginUser.staffList.forEach(function (staff) {
|
|
13160
|
-
if (staffId === staff.id) {
|
|
13161
|
-
self = true;
|
|
13162
|
-
}
|
|
13163
|
-
});
|
|
13164
|
-
if (!self) {
|
|
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
|
-
}
|
|
13171
|
-
}
|
|
13172
|
-
}
|
|
13173
|
-
}
|
|
13174
|
-
}
|
|
13175
|
-
var ps = ideaDiv.querySelectorAll('p');
|
|
13176
|
-
if (ps.length > 1) {
|
|
13177
|
-
var span = ps[ps.length - 1].querySelector('span');
|
|
13178
|
-
span.style = 'width:20px';
|
|
13179
|
-
}
|
|
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();
|
|
13152
|
+
this.adjustIdeaDivs();
|
|
13190
13153
|
},
|
|
13191
13154
|
beforeDestroy: function beforeDestroy() {},
|
|
13192
13155
|
mounted: function mounted() {
|
|
13193
|
-
var
|
|
13156
|
+
var _this4 = this;
|
|
13194
13157
|
setTimeout(function () {
|
|
13195
|
-
|
|
13158
|
+
_this4.showDoNextAttach();
|
|
13196
13159
|
var ideaDivs = document.querySelectorAll('.ideaDiv');
|
|
13197
13160
|
ideaDivs.forEach(function (ideaDiv) {
|
|
13198
13161
|
var ps = ideaDiv.querySelectorAll('p');
|
|
@@ -13203,14 +13166,62 @@ window.todownload = function (val) {
|
|
|
13203
13166
|
});
|
|
13204
13167
|
}, 0);
|
|
13205
13168
|
|
|
13169
|
+
// 首次渲染不会触发updated(仅后续数据变化重渲染才触发),标签页等场景挂载后无数据变化会导致图标不注入,此处主动执行一次;此时ideaDiv已在DOM中
|
|
13170
|
+
this.$nextTick(function () {
|
|
13171
|
+
_this4.adjustIdeaDivs();
|
|
13172
|
+
});
|
|
13173
|
+
|
|
13206
13174
|
// idea-field 在自身 mounted 中才渲染,延时检查表单内嵌情况
|
|
13207
13175
|
if (this.checkEmbeddedShow) {
|
|
13208
13176
|
setTimeout(function () {
|
|
13209
|
-
|
|
13177
|
+
_this4.checkEmbeddedShown();
|
|
13210
13178
|
}, 500);
|
|
13211
13179
|
}
|
|
13212
13180
|
},
|
|
13213
13181
|
methods: {
|
|
13182
|
+
// 意见栏DOM后处理:注入聊天/电话图标、触发手机号查询、签名留白裁剪;首次渲染不会触发updated,需由mounted主动调用一次,后续重渲染由updated触发(重渲染会清除innerHTML注入的图标,需反复补注)
|
|
13183
|
+
adjustIdeaDivs: function adjustIdeaDivs() {
|
|
13184
|
+
var _this5 = this;
|
|
13185
|
+
var ideaDivs = document.querySelectorAll('.ideaDiv');
|
|
13186
|
+
var ideaStaffIds = []; // 非本人意见签名人的staffId,用于批量查询手机号
|
|
13187
|
+
ideaDivs.forEach(function (ideaDiv) {
|
|
13188
|
+
if (ideaDivs && (_this5.anywhereChat || _this5.anywherePhone)) {
|
|
13189
|
+
if (ideaDiv.innerText !== _this5.$tx('ecmapp.common.nothing', '无') && ideaDiv.innerText !== '' && ideaDiv.innerText !== _this5.$tx('ecmapp.common.nothing', '无') && ideaDiv.attributes['staffId']) {
|
|
13190
|
+
var staffId = ideaDiv.attributes['staffId'].nodeValue;
|
|
13191
|
+
if (staffId) {
|
|
13192
|
+
var self = false;
|
|
13193
|
+
_this5.loginUser.staffList.forEach(function (staff) {
|
|
13194
|
+
if (staffId === staff.id) {
|
|
13195
|
+
self = true;
|
|
13196
|
+
}
|
|
13197
|
+
});
|
|
13198
|
+
if (!self) {
|
|
13199
|
+
if (_this5.anywherePhone && ideaStaffIds.indexOf(staffId) === -1) {
|
|
13200
|
+
ideaStaffIds.push(staffId);
|
|
13201
|
+
}
|
|
13202
|
+
if (_this5.anywhereChat && !ideaDiv.querySelector('.idea-start-chat')) {
|
|
13203
|
+
ideaDiv.innerHTML += '<a class="idea-icon-link" href="javascript:" onclick="startChat(\'' + staffId + '\')"><i data-v-5c359387="" class="idea-start-chat van-icon van-icon-chat-o"></i></a>';
|
|
13204
|
+
}
|
|
13205
|
+
}
|
|
13206
|
+
}
|
|
13207
|
+
}
|
|
13208
|
+
}
|
|
13209
|
+
var ps = ideaDiv.querySelectorAll('p');
|
|
13210
|
+
if (ps.length > 1) {
|
|
13211
|
+
var span = ps[ps.length - 1].querySelector('span');
|
|
13212
|
+
span.style = 'width:20px';
|
|
13213
|
+
}
|
|
13214
|
+
});
|
|
13215
|
+
|
|
13216
|
+
// 仅查询未查过的签名人,反复触发时不重复请求;查到的手机号用于给签名行注入拨打电话图标
|
|
13217
|
+
var newStaffIds = ideaStaffIds.filter(function (staffId) {
|
|
13218
|
+
return _this5.phoneQueriedStaffIds.indexOf(staffId) === -1;
|
|
13219
|
+
});
|
|
13220
|
+
if (newStaffIds.length > 0) {
|
|
13221
|
+
this.queryIdeaStaffMobiles(newStaffIds);
|
|
13222
|
+
}
|
|
13223
|
+
this.cropIdeaSignatureWhitespace();
|
|
13224
|
+
},
|
|
13214
13225
|
// 检查 wfIdeaList 中每个意见栏是否已在业务表单内通过 idea-field 渲染(生成 class 为 field-{意见栏名} 的 DOM)
|
|
13215
13226
|
checkEmbeddedShown: function checkEmbeddedShown() {
|
|
13216
13227
|
if (this.wfIdeaList.length === 0) {
|
|
@@ -13294,7 +13305,7 @@ window.todownload = function (val) {
|
|
|
13294
13305
|
}).then(function (response) {
|
|
13295
13306
|
if (response.code === 'success') {
|
|
13296
13307
|
//response.body.listdata[0].webchat = '23234'
|
|
13297
|
-
if (response.body.listdata && response.body.listdata.length > 0) {
|
|
13308
|
+
if (response.body.listdata && response.body.listdata.length > 0 && response.body.listdata[0].webchat) {
|
|
13298
13309
|
var webchat = response.body.listdata[0].webchat;
|
|
13299
13310
|
_this8.openChatRoom(webchat);
|
|
13300
13311
|
} else {
|
|
@@ -13322,7 +13333,7 @@ window.todownload = function (val) {
|
|
|
13322
13333
|
var formUrl = encodeURIComponent(fromUrl);
|
|
13323
13334
|
var pushChatRoom = function pushChatRoom() {
|
|
13324
13335
|
_this9.$router.push({
|
|
13325
|
-
path: '/chatRoom',
|
|
13336
|
+
path: '/chat/chatRoom',
|
|
13326
13337
|
query: {
|
|
13327
13338
|
webchat: webchat,
|
|
13328
13339
|
openType: 'singleChat',
|
|
@@ -13364,7 +13375,7 @@ window.todownload = function (val) {
|
|
|
13364
13375
|
_this10.ideaStaffMobileMap[sid] = item.mobile;
|
|
13365
13376
|
document.querySelectorAll('.ideaDiv[staffId="' + sid + '"]').forEach(function (ideaDiv) {
|
|
13366
13377
|
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>';
|
|
13378
|
+
ideaDiv.innerHTML += '<a class="idea-icon-link" href="javascript:" onclick="showPhoneAction(\'' + sid + '\')"><i class="idea-phone-call van-icon van-icon-phone-o"></i></a>';
|
|
13368
13379
|
}
|
|
13369
13380
|
});
|
|
13370
13381
|
});
|
|
@@ -13487,13 +13498,13 @@ window.todownload = function (val) {
|
|
|
13487
13498
|
});
|
|
13488
13499
|
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=script&lang=js
|
|
13489
13500
|
/* harmony default export */ var src_HandleIdeavue_type_script_lang_js = (HandleIdeavue_type_script_lang_js);
|
|
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=
|
|
13491
|
-
var
|
|
13492
|
-
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=
|
|
13501
|
+
// 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=5ed9d962&prod&scoped=true&lang=scss
|
|
13502
|
+
var HandleIdeavue_type_style_index_0_id_5ed9d962_prod_scoped_true_lang_scss = __webpack_require__(5689);
|
|
13503
|
+
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=0&id=5ed9d962&prod&scoped=true&lang=scss
|
|
13493
13504
|
|
|
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=
|
|
13495
|
-
var
|
|
13496
|
-
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=
|
|
13505
|
+
// 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=5ed9d962&prod&lang=css
|
|
13506
|
+
var HandleIdeavue_type_style_index_1_id_5ed9d962_prod_lang_css = __webpack_require__(9395);
|
|
13507
|
+
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue?vue&type=style&index=1&id=5ed9d962&prod&lang=css
|
|
13497
13508
|
|
|
13498
13509
|
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/HandleIdea.vue
|
|
13499
13510
|
|
|
@@ -13507,11 +13518,11 @@ var HandleIdeavue_type_style_index_1_id_2b945eda_prod_lang_css = __webpack_requi
|
|
|
13507
13518
|
|
|
13508
13519
|
var HandleIdea_component = (0,componentNormalizer/* default */.A)(
|
|
13509
13520
|
src_HandleIdeavue_type_script_lang_js,
|
|
13510
|
-
|
|
13511
|
-
|
|
13521
|
+
HandleIdeavue_type_template_id_5ed9d962_scoped_true_render,
|
|
13522
|
+
HandleIdeavue_type_template_id_5ed9d962_scoped_true_staticRenderFns,
|
|
13512
13523
|
false,
|
|
13513
13524
|
null,
|
|
13514
|
-
"
|
|
13525
|
+
"5ed9d962",
|
|
13515
13526
|
null
|
|
13516
13527
|
|
|
13517
13528
|
)
|
|
@@ -18153,8 +18164,8 @@ var SubmitDialog_component = (0,componentNormalizer/* default */.A)(
|
|
|
18153
18164
|
)
|
|
18154
18165
|
|
|
18155
18166
|
/* harmony default export */ var SubmitDialog = (SubmitDialog_component.exports);
|
|
18156
|
-
;// 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/WfNodelogList.vue?vue&type=template&id=
|
|
18157
|
-
var
|
|
18167
|
+
;// 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/WfNodelogList.vue?vue&type=template&id=3afd5fea&scoped=true
|
|
18168
|
+
var WfNodelogListvue_type_template_id_3afd5fea_scoped_true_render = function render() {
|
|
18158
18169
|
var _vm = this,
|
|
18159
18170
|
_c = _vm._self._c;
|
|
18160
18171
|
return _c('div', {
|
|
@@ -18192,6 +18203,7 @@ var WfNodelogListvue_type_template_id_16e84a2b_scoped_true_render = function ren
|
|
|
18192
18203
|
}
|
|
18193
18204
|
}, [_c('van-steps', {
|
|
18194
18205
|
attrs: {
|
|
18206
|
+
"active": -1,
|
|
18195
18207
|
"direction": "vertical",
|
|
18196
18208
|
"active-color": "#1989fa",
|
|
18197
18209
|
"active-icon": "passed",
|
|
@@ -18208,7 +18220,7 @@ var WfNodelogListvue_type_template_id_16e84a2b_scoped_true_render = function ren
|
|
|
18208
18220
|
}, _vm._l(_vm.wfNodeLogList, function (item) {
|
|
18209
18221
|
return _c('van-step', {
|
|
18210
18222
|
key: item.id,
|
|
18211
|
-
class: item.step === 1 || item.status == 6 || item.status == 7 || _vm.openType == 'callback' ? 'active-step-finish' : 'active-step-active'
|
|
18223
|
+
class: item.step === 1 || item.status == 6 || item.status == 7 || item.status == 9 || _vm.openType == 'callback' ? 'active-step-finish' : 'active-step-active'
|
|
18212
18224
|
}, [_vm.openType === 'callback' && _vm.callbackMode === 'beforeend' && item.status < 6 ? _c('van-checkbox', {
|
|
18213
18225
|
attrs: {
|
|
18214
18226
|
"slot": "inactive-icon",
|
|
@@ -18248,6 +18260,16 @@ var WfNodelogListvue_type_template_id_16e84a2b_scoped_true_render = function ren
|
|
|
18248
18260
|
return _vm.startChat(item.staffId, item.staffName);
|
|
18249
18261
|
}
|
|
18250
18262
|
}
|
|
18263
|
+
}) : _vm._e(), _vm.anywherePhone && _vm.loginUser.personAccount !== item.staffAccount && _vm.nodelogStaffMobileMap[item.staffId] ? _c('van-icon', {
|
|
18264
|
+
staticClass: "start-phone",
|
|
18265
|
+
attrs: {
|
|
18266
|
+
"name": "phone-o"
|
|
18267
|
+
},
|
|
18268
|
+
on: {
|
|
18269
|
+
"click": function click($event) {
|
|
18270
|
+
return _vm.onPhoneClick(item.staffId);
|
|
18271
|
+
}
|
|
18272
|
+
}
|
|
18251
18273
|
}) : _vm._e(), _vm._v(" " + _vm._s(item.staffName) + " ")], 1)]), _c('div', {
|
|
18252
18274
|
staticClass: "licont"
|
|
18253
18275
|
}, [_vm.showProcessedTimeLength === 1 ? [_c('p', [_c('span', {
|
|
@@ -18351,9 +18373,24 @@ var WfNodelogListvue_type_template_id_16e84a2b_scoped_true_render = function ren
|
|
|
18351
18373
|
}
|
|
18352
18374
|
}, [_vm._v("收 回")])], 1) : _vm._e()], 1), _c('WriteToReadIdea'), _c('ReturnHistoryNode', {
|
|
18353
18375
|
ref: "returnHistoryNode"
|
|
18354
|
-
}), _c('ModifyWflogAddUser'), _c('ModifyWflogForwardTodo')
|
|
18376
|
+
}), _c('ModifyWflogAddUser'), _c('ModifyWflogForwardTodo'), _c('van-action-sheet', {
|
|
18377
|
+
attrs: {
|
|
18378
|
+
"actions": _vm.phoneActions,
|
|
18379
|
+
"cancel-text": "取消"
|
|
18380
|
+
},
|
|
18381
|
+
on: {
|
|
18382
|
+
"select": _vm.onPhoneActionSelect
|
|
18383
|
+
},
|
|
18384
|
+
model: {
|
|
18385
|
+
value: _vm.showPhoneActionSheet,
|
|
18386
|
+
callback: function callback($$v) {
|
|
18387
|
+
_vm.showPhoneActionSheet = $$v;
|
|
18388
|
+
},
|
|
18389
|
+
expression: "showPhoneActionSheet"
|
|
18390
|
+
}
|
|
18391
|
+
})], 1);
|
|
18355
18392
|
};
|
|
18356
|
-
var
|
|
18393
|
+
var WfNodelogListvue_type_template_id_3afd5fea_scoped_true_staticRenderFns = [];
|
|
18357
18394
|
|
|
18358
18395
|
;// 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/ModifyWflogAddUser.vue?vue&type=template&id=2b451f48&scoped=true
|
|
18359
18396
|
var ModifyWflogAddUservue_type_template_id_2b451f48_scoped_true_render = function render() {
|
|
@@ -19899,12 +19936,28 @@ var WfNodelogListvue_type_script_lang_js_moment = __webpack_require__(5093);
|
|
|
19899
19936
|
// 总办理耗时
|
|
19900
19937
|
showpop: false,
|
|
19901
19938
|
// 是否显示滑屏窗口
|
|
19902
|
-
anywhereChat:
|
|
19903
|
-
//
|
|
19939
|
+
anywhereChat: this.$settings && this.$settings.anywhereChat || false,
|
|
19940
|
+
// 是否允许发起聊天(settings.js配置)
|
|
19941
|
+
anywherePhone: this.$settings && this.$settings.anywherePhone || false,
|
|
19942
|
+
// 是否允许拨打电话(settings.js配置)
|
|
19943
|
+
showPhoneActionSheet: false,
|
|
19944
|
+
curPhoneNum: '',
|
|
19945
|
+
nodelogStaffMobileMap: {},
|
|
19946
|
+
// 节点处理人staffId → 手机号
|
|
19947
|
+
phoneQueriedStaffIds: [],
|
|
19948
|
+
// 已查询过手机号的staffId,避免重复请求
|
|
19904
19949
|
loginUser: this.$store.getters.loginUser
|
|
19905
19950
|
};
|
|
19906
19951
|
},
|
|
19907
|
-
computed: {
|
|
19952
|
+
computed: {
|
|
19953
|
+
phoneActions: function phoneActions() {
|
|
19954
|
+
return [{
|
|
19955
|
+
name: this.$tx('ecmapp.common.makeCall', '拨打电话')
|
|
19956
|
+
}, {
|
|
19957
|
+
name: this.$tx('ecmapp.common.sendMessage', '发送短信')
|
|
19958
|
+
}];
|
|
19959
|
+
}
|
|
19960
|
+
},
|
|
19908
19961
|
watch: {},
|
|
19909
19962
|
created: function created() {
|
|
19910
19963
|
var curTN = this.$vnode.context.curTN;
|
|
@@ -20020,6 +20073,7 @@ var WfNodelogListvue_type_script_lang_js_moment = __webpack_require__(5093);
|
|
|
20020
20073
|
|
|
20021
20074
|
// 打开流程日志滑屏窗口
|
|
20022
20075
|
_this.showpop = true;
|
|
20076
|
+
_this.queryNodelogStaffMobiles();
|
|
20023
20077
|
} else {
|
|
20024
20078
|
console.log(response.message);
|
|
20025
20079
|
}
|
|
@@ -20186,20 +20240,8 @@ var WfNodelogListvue_type_script_lang_js_moment = __webpack_require__(5093);
|
|
|
20186
20240
|
url: 'base/organMgr/findLinkManListByStaffIds'
|
|
20187
20241
|
}).then(function (response) {
|
|
20188
20242
|
if (response.code === 'success') {
|
|
20189
|
-
if (response.body.listdata.length > 0 && response.body.listdata[0].webchat) {
|
|
20190
|
-
_this5
|
|
20191
|
-
setTimeout(function () {
|
|
20192
|
-
var wfNodelogListUrl = encodeURIComponent(location.href.split('#')[1]);
|
|
20193
|
-
var webchat = response.body.listdata[0].webchat;
|
|
20194
|
-
_this5.$router.push({
|
|
20195
|
-
path: '/chat/chatRoom',
|
|
20196
|
-
query: {
|
|
20197
|
-
webchat: webchat,
|
|
20198
|
-
openType: 'singleChat',
|
|
20199
|
-
from: wfNodelogListUrl
|
|
20200
|
-
}
|
|
20201
|
-
});
|
|
20202
|
-
}, 100);
|
|
20243
|
+
if (response.body.listdata && response.body.listdata.length > 0 && response.body.listdata[0].webchat) {
|
|
20244
|
+
_this5.openChatRoom(response.body.listdata[0].webchat);
|
|
20203
20245
|
} else {
|
|
20204
20246
|
_this5.$dialog.alert({
|
|
20205
20247
|
message: _this5.$tx('ecmapp.wflowform.notActivated1', {
|
|
@@ -20214,6 +20256,113 @@ var WfNodelogListvue_type_script_lang_js_moment = __webpack_require__(5093);
|
|
|
20214
20256
|
}
|
|
20215
20257
|
});
|
|
20216
20258
|
},
|
|
20259
|
+
//跳转聊天室;表单页常处于PopupDialog右滑屏弹层栈中(路由带tier参数,每开一层弹层push一次tier+1),
|
|
20260
|
+
//直接push其他路由会销毁表单组件树,还开着的PopupDialog在beforeDestroy中会$router.back(-1)把路由拉回并重新展开弹层;
|
|
20261
|
+
//须先按tier层数回退到无弹层的基础路由(弹层$route侦听器自行复位关闭),再跳转(参考HandleIdea.openChatRoom)
|
|
20262
|
+
openChatRoom: function openChatRoom(webchat) {
|
|
20263
|
+
var _this6 = this;
|
|
20264
|
+
var hash = location.href.split('#')[1] || '';
|
|
20265
|
+
//返回地址剔除tier参数,从聊天室返回表单时不再带入弹层层级
|
|
20266
|
+
var fromUrl = hash.split('?')[0] + (hash.indexOf('?') > -1 ? '?' + hash.split('?')[1].split('&').filter(function (param) {
|
|
20267
|
+
return param.indexOf('tier=') !== 0;
|
|
20268
|
+
}).join('&') : '');
|
|
20269
|
+
var formUrl = encodeURIComponent(fromUrl);
|
|
20270
|
+
var pushChatRoom = function pushChatRoom() {
|
|
20271
|
+
_this6.$router.push({
|
|
20272
|
+
path: '/chat/chatRoom',
|
|
20273
|
+
query: {
|
|
20274
|
+
webchat: webchat,
|
|
20275
|
+
openType: 'singleChat',
|
|
20276
|
+
from: formUrl
|
|
20277
|
+
}
|
|
20278
|
+
});
|
|
20279
|
+
};
|
|
20280
|
+
var curTier = ~~this.$route.query.tier;
|
|
20281
|
+
if (curTier > 0) {
|
|
20282
|
+
//回退到基础路由后等待路由更新与弹层状态复位(hash模式路由更新为异步事件),再跳转聊天室;
|
|
20283
|
+
//此时PopupDialog的tier均已归零,随表单销毁不会再back(-1)
|
|
20284
|
+
this.$router.go(-curTier);
|
|
20285
|
+
setTimeout(function () {
|
|
20286
|
+
pushChatRoom();
|
|
20287
|
+
}, 300);
|
|
20288
|
+
} else {
|
|
20289
|
+
pushChatRoom();
|
|
20290
|
+
}
|
|
20291
|
+
},
|
|
20292
|
+
//批量查询非本人节点处理人的手机号,缓存到nodelogStaffMobileMap,供模板电话图标显隐与点击拨号使用;列表场景查不到静默不提示
|
|
20293
|
+
queryNodelogStaffMobiles: function queryNodelogStaffMobiles() {
|
|
20294
|
+
var _this7 = this;
|
|
20295
|
+
if (!this.anywherePhone) return;
|
|
20296
|
+
var staffIds = [];
|
|
20297
|
+
this.wfNodeLogList.forEach(function (item) {
|
|
20298
|
+
if (_this7.loginUser.personAccount !== item.staffAccount && item.staffId && staffIds.indexOf(item.staffId) === -1) {
|
|
20299
|
+
staffIds.push(item.staffId);
|
|
20300
|
+
}
|
|
20301
|
+
});
|
|
20302
|
+
var newStaffIds = staffIds.filter(function (staffId) {
|
|
20303
|
+
return _this7.phoneQueriedStaffIds.indexOf(staffId) === -1;
|
|
20304
|
+
});
|
|
20305
|
+
if (newStaffIds.length === 0) return;
|
|
20306
|
+
this.$http({
|
|
20307
|
+
method: 'GET',
|
|
20308
|
+
params: {
|
|
20309
|
+
staffIds: newStaffIds.join()
|
|
20310
|
+
},
|
|
20311
|
+
url: 'base/organMgr/findLinkManListByStaffIds'
|
|
20312
|
+
}).then(function (response) {
|
|
20313
|
+
newStaffIds.forEach(function (staffId) {
|
|
20314
|
+
if (_this7.phoneQueriedStaffIds.indexOf(staffId) === -1) {
|
|
20315
|
+
_this7.phoneQueriedStaffIds.push(staffId);
|
|
20316
|
+
}
|
|
20317
|
+
});
|
|
20318
|
+
if (response.code !== 'success' || !response.body || !response.body.listdata) return;
|
|
20319
|
+
response.body.listdata.forEach(function (item) {
|
|
20320
|
+
var sid = item.staffId || item.id;
|
|
20321
|
+
if (!sid || !item.mobile) return;
|
|
20322
|
+
//$set保证新增属性响应式,触发模板电话图标显示
|
|
20323
|
+
_this7.$set(_this7.nodelogStaffMobileMap, sid, item.mobile);
|
|
20324
|
+
});
|
|
20325
|
+
});
|
|
20326
|
+
},
|
|
20327
|
+
//点击电话图标:优先取缓存手机号,缺失时单人查询接口兜底,再弹出拨号/短信actionSheet(参考HandleIdea.onPhoneCallBtnClick)
|
|
20328
|
+
onPhoneClick: function onPhoneClick(staffId) {
|
|
20329
|
+
var _this8 = this;
|
|
20330
|
+
var mobile = this.nodelogStaffMobileMap[staffId];
|
|
20331
|
+
if (mobile) {
|
|
20332
|
+
this.curPhoneNum = mobile;
|
|
20333
|
+
this.showPhoneActionSheet = true;
|
|
20334
|
+
return;
|
|
20335
|
+
}
|
|
20336
|
+
this.$http({
|
|
20337
|
+
method: 'GET',
|
|
20338
|
+
params: {
|
|
20339
|
+
staffIds: staffId
|
|
20340
|
+
},
|
|
20341
|
+
url: 'base/organMgr/findLinkManListByStaffIds'
|
|
20342
|
+
}).then(function (response) {
|
|
20343
|
+
if (response.code === 'success' && response.body.listdata && response.body.listdata.length > 0 && response.body.listdata[0].mobile) {
|
|
20344
|
+
_this8.$set(_this8.nodelogStaffMobileMap, staffId, response.body.listdata[0].mobile);
|
|
20345
|
+
_this8.curPhoneNum = response.body.listdata[0].mobile;
|
|
20346
|
+
_this8.showPhoneActionSheet = true;
|
|
20347
|
+
} else {
|
|
20348
|
+
_this8.$dialog.alert({
|
|
20349
|
+
message: _this8.$tx('ecmapp.wflowform.noPhoneNum', '未查询到该签名人的手机号')
|
|
20350
|
+
});
|
|
20351
|
+
}
|
|
20352
|
+
});
|
|
20353
|
+
},
|
|
20354
|
+
//参考InputField.vue:选择拨打电话/发送短信后通过tel:/sms:协议拉起
|
|
20355
|
+
onPhoneActionSelect: function onPhoneActionSelect(action) {
|
|
20356
|
+
var phoneNum = String(this.curPhoneNum).replace(/[\s-]/g, '');
|
|
20357
|
+
var callText = this.$tx('ecmapp.common.makeCall', '拨打电话');
|
|
20358
|
+
var smsText = this.$tx('ecmapp.common.sendMessage', '发送短信');
|
|
20359
|
+
if (action.name === callText) {
|
|
20360
|
+
window.location.href = 'tel:' + phoneNum;
|
|
20361
|
+
} else if (action.name === smsText) {
|
|
20362
|
+
window.location.href = 'sms:' + phoneNum;
|
|
20363
|
+
}
|
|
20364
|
+
this.showPhoneActionSheet = false;
|
|
20365
|
+
},
|
|
20217
20366
|
btnReturnHistoryClick: function btnReturnHistoryClick(tnPID) {
|
|
20218
20367
|
//驳回指定节点或任意节点,退回相关逻辑由ReturnHistoryNode组件处理
|
|
20219
20368
|
this.$refs.returnHistoryNode.open(tnPID, this.$vnode.context, this.quickSubmitNoConfirm);
|
|
@@ -20222,9 +20371,9 @@ var WfNodelogListvue_type_script_lang_js_moment = __webpack_require__(5093);
|
|
|
20222
20371
|
});
|
|
20223
20372
|
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/WfNodelogList.vue?vue&type=script&lang=js
|
|
20224
20373
|
/* harmony default export */ var src_WfNodelogListvue_type_script_lang_js = (WfNodelogListvue_type_script_lang_js);
|
|
20225
|
-
// 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/WfNodelogList.vue?vue&type=style&index=0&id=
|
|
20226
|
-
var
|
|
20227
|
-
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/WfNodelogList.vue?vue&type=style&index=0&id=
|
|
20374
|
+
// 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/WfNodelogList.vue?vue&type=style&index=0&id=3afd5fea&prod&scoped=true&lang=scss
|
|
20375
|
+
var WfNodelogListvue_type_style_index_0_id_3afd5fea_prod_scoped_true_lang_scss = __webpack_require__(4322);
|
|
20376
|
+
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/WfNodelogList.vue?vue&type=style&index=0&id=3afd5fea&prod&scoped=true&lang=scss
|
|
20228
20377
|
|
|
20229
20378
|
;// CONCATENATED MODULE: ./packages/ecmapp/Wflowform/src/WfNodelogList.vue
|
|
20230
20379
|
|
|
@@ -20237,11 +20386,11 @@ var WfNodelogListvue_type_style_index_0_id_16e84a2b_prod_scoped_true_lang_scss =
|
|
|
20237
20386
|
|
|
20238
20387
|
var WfNodelogList_component = (0,componentNormalizer/* default */.A)(
|
|
20239
20388
|
src_WfNodelogListvue_type_script_lang_js,
|
|
20240
|
-
|
|
20241
|
-
|
|
20389
|
+
WfNodelogListvue_type_template_id_3afd5fea_scoped_true_render,
|
|
20390
|
+
WfNodelogListvue_type_template_id_3afd5fea_scoped_true_staticRenderFns,
|
|
20242
20391
|
false,
|
|
20243
20392
|
null,
|
|
20244
|
-
"
|
|
20393
|
+
"3afd5fea",
|
|
20245
20394
|
null
|
|
20246
20395
|
|
|
20247
20396
|
)
|
|
@@ -23606,7 +23755,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".pdftools-savedialog .van-loading{heig
|
|
|
23606
23755
|
|
|
23607
23756
|
/***/ }),
|
|
23608
23757
|
|
|
23609
|
-
/***/
|
|
23758
|
+
/***/ 4924:
|
|
23610
23759
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
23611
23760
|
|
|
23612
23761
|
"use strict";
|
|
@@ -23620,7 +23769,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23620
23769
|
|
|
23621
23770
|
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()));
|
|
23622
23771
|
// Module
|
|
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}", ""]);
|
|
23772
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".ideaDiv{position:relative}.idea-icon-link{color:inherit}.idea-start-chat{right:28px}.idea-phone-call,.idea-start-chat{margin-top:-20px;position:absolute;font-size:19px}.idea-phone-call{right:2px}", ""]);
|
|
23624
23773
|
// Exports
|
|
23625
23774
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
23626
23775
|
|
|
@@ -24095,7 +24244,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".divPortraitContainer[data-v-98e0ea4c]
|
|
|
24095
24244
|
|
|
24096
24245
|
/***/ }),
|
|
24097
24246
|
|
|
24098
|
-
/***/
|
|
24247
|
+
/***/ 4781:
|
|
24099
24248
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
24100
24249
|
|
|
24101
24250
|
"use strict";
|
|
@@ -24109,7 +24258,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24109
24258
|
|
|
24110
24259
|
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()));
|
|
24111
24260
|
// Module
|
|
24112
|
-
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-
|
|
24261
|
+
___CSS_LOADER_EXPORT___.push([module.id, "[data-v-079241d1] .van-nav-bar__title{margin-left:16px}.nav-right[data-v-079241d1]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.popup-body[data-v-079241d1]{height:calc(100vh - 46px)}.popup-body[data-v-079241d1],.popup-body-nonav[data-v-079241d1]{overflow-y:auto;background-color:#f7f8fa}.popup-body-nonav[data-v-079241d1]{height:100vh}", ""]);
|
|
24113
24262
|
// Exports
|
|
24114
24263
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
24115
24264
|
|
|
@@ -24305,7 +24454,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".loading[data-v-3eb301b1]{margin-top:1
|
|
|
24305
24454
|
|
|
24306
24455
|
/***/ }),
|
|
24307
24456
|
|
|
24308
|
-
/***/
|
|
24457
|
+
/***/ 435:
|
|
24309
24458
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
24310
24459
|
|
|
24311
24460
|
"use strict";
|
|
@@ -24319,7 +24468,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24319
24468
|
|
|
24320
24469
|
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()));
|
|
24321
24470
|
// Module
|
|
24322
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".handle-idea-container[data-v-
|
|
24471
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".handle-idea-container[data-v-5ed9d962] .van-collapse .van-cell__title{color:#000;font-weight:400}[data-v-5ed9d962] .ideaDiv{margin:5px 0}[data-v-5ed9d962] .ideaDiv p{margin-top:0;margin-bottom:0}[data-v-5ed9d962] .ideaDiv span{display:inline-block}[data-v-5ed9d962] .ideaDiv .handwritingIdea{width:200px}[data-v-5ed9d962] .ideaDiv .ideaSignature{max-width:80px;max-height:30px}[data-v-5ed9d962] .ideaDiv .donext-attach{padding-left:10px;position:absolute}[data-v-5ed9d962] .ideaDiv .donext-attach svg{margin-top:2px;width:15px;height:15px}[data-v-5ed9d962] .highlight{font-weight:600;color:#323233}[data-v-5ed9d962] .van-collapse-item--border:after,[data-v-5ed9d962] .van-collapse-item__title:after{right:0}[data-v-5ed9d962] .van-collapse-item__content{padding-top:1px}[data-v-5ed9d962] .van-cell:after{border-bottom:0 solid}.viewAllComments[data-v-5ed9d962]{height:45px;line-height:45px;text-align:center;color:#b7b7b7;font-size:12px;background:#fff}.HandleIdeaContent[data-v-5ed9d962]{padding:6px 12px;color:#969799;font-size:14px;line-height:1.5;background-color:#fff}", ""]);
|
|
24323
24472
|
// Exports
|
|
24324
24473
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
24325
24474
|
|
|
@@ -24478,7 +24627,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".voice-input-popup[data-v-813d3ba6]{pa
|
|
|
24478
24627
|
|
|
24479
24628
|
/***/ }),
|
|
24480
24629
|
|
|
24481
|
-
/***/
|
|
24630
|
+
/***/ 8484:
|
|
24482
24631
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
24483
24632
|
|
|
24484
24633
|
"use strict";
|
|
@@ -24492,7 +24641,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24492
24641
|
|
|
24493
24642
|
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()));
|
|
24494
24643
|
// Module
|
|
24495
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".wf-nodelogs-container[data-v-
|
|
24644
|
+
___CSS_LOADER_EXPORT___.push([module.id, ".wf-nodelogs-container[data-v-3afd5fea]{margin-bottom:10px}.wf-nodelogs-container .call-back-file .van-steps[data-v-3afd5fea]{height:calc(100% - 60px);overflow-y:auto}.wf-nodelogs-container[data-v-3afd5fea] .popup-body/deep/.van-steps .van-step--vertical{padding-right:16px}.wf-nodelogs-container[data-v-3afd5fea] .popup-body/deep/.van-steps .van-step__title{color:#444!important}.wf-nodelogs-container[data-v-3afd5fea] .popup-body/deep/.van-steps .van-step__line{background-color:#ebedf0!important}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .active-step-finish .van-icon-close,.wf-nodelogs-container[data-v-3afd5fea] .popup-body .active-step-finish .van-step__icon{font-size:20px}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .active-step-finish .van-step__circle-container{color:#1989fa!important}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .active-step-active .van-step__circle-container{color:#07c160!important}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .active-step-active .van-icon-edit{font-size:20px}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .elapsed-time{float:right}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .licont{color:#969799}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .licont .fr{float:right}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .handwritingIdea{width:200px}.wf-nodelogs-container[data-v-3afd5fea] .popup-body .start-chat,.wf-nodelogs-container[data-v-3afd5fea] .popup-body .start-phone{font-size:19px;padding-left:5px;padding-right:5px;vertical-align:-3px}", ""]);
|
|
24496
24645
|
// Exports
|
|
24497
24646
|
/* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
|
|
24498
24647
|
|
|
@@ -51516,19 +51665,19 @@ var update = add("0ebc5c23", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
51516
51665
|
|
|
51517
51666
|
/***/ }),
|
|
51518
51667
|
|
|
51519
|
-
/***/
|
|
51668
|
+
/***/ 9395:
|
|
51520
51669
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
51521
51670
|
|
|
51522
51671
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
51523
51672
|
|
|
51524
51673
|
// load the styles
|
|
51525
|
-
var content = __webpack_require__(
|
|
51674
|
+
var content = __webpack_require__(4924);
|
|
51526
51675
|
if(content.__esModule) content = content.default;
|
|
51527
51676
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
51528
51677
|
if(content.locals) module.exports = content.locals;
|
|
51529
51678
|
// add the styles to the DOM
|
|
51530
51679
|
var add = (__webpack_require__(9548)/* ["default"] */ .A)
|
|
51531
|
-
var update = add("
|
|
51680
|
+
var update = add("3bf5c273", content, true, {"sourceMap":false,"shadowMode":false});
|
|
51532
51681
|
|
|
51533
51682
|
/***/ }),
|
|
51534
51683
|
|
|
@@ -51884,19 +52033,19 @@ var update = add("dc862010", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
51884
52033
|
|
|
51885
52034
|
/***/ }),
|
|
51886
52035
|
|
|
51887
|
-
/***/
|
|
52036
|
+
/***/ 1735:
|
|
51888
52037
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
51889
52038
|
|
|
51890
52039
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
51891
52040
|
|
|
51892
52041
|
// load the styles
|
|
51893
|
-
var content = __webpack_require__(
|
|
52042
|
+
var content = __webpack_require__(4781);
|
|
51894
52043
|
if(content.__esModule) content = content.default;
|
|
51895
52044
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
51896
52045
|
if(content.locals) module.exports = content.locals;
|
|
51897
52046
|
// add the styles to the DOM
|
|
51898
52047
|
var add = (__webpack_require__(9548)/* ["default"] */ .A)
|
|
51899
|
-
var update = add("
|
|
52048
|
+
var update = add("6a5f6702", content, true, {"sourceMap":false,"shadowMode":false});
|
|
51900
52049
|
|
|
51901
52050
|
/***/ }),
|
|
51902
52051
|
|
|
@@ -52044,19 +52193,19 @@ var update = add("24b5a016", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
52044
52193
|
|
|
52045
52194
|
/***/ }),
|
|
52046
52195
|
|
|
52047
|
-
/***/
|
|
52196
|
+
/***/ 5689:
|
|
52048
52197
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
52049
52198
|
|
|
52050
52199
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
52051
52200
|
|
|
52052
52201
|
// load the styles
|
|
52053
|
-
var content = __webpack_require__(
|
|
52202
|
+
var content = __webpack_require__(435);
|
|
52054
52203
|
if(content.__esModule) content = content.default;
|
|
52055
52204
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
52056
52205
|
if(content.locals) module.exports = content.locals;
|
|
52057
52206
|
// add the styles to the DOM
|
|
52058
52207
|
var add = (__webpack_require__(9548)/* ["default"] */ .A)
|
|
52059
|
-
var update = add("
|
|
52208
|
+
var update = add("074f9a0e", content, true, {"sourceMap":false,"shadowMode":false});
|
|
52060
52209
|
|
|
52061
52210
|
/***/ }),
|
|
52062
52211
|
|
|
@@ -52172,19 +52321,19 @@ var update = add("d301d61e", content, true, {"sourceMap":false,"shadowMode":fals
|
|
|
52172
52321
|
|
|
52173
52322
|
/***/ }),
|
|
52174
52323
|
|
|
52175
|
-
/***/
|
|
52324
|
+
/***/ 4322:
|
|
52176
52325
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
52177
52326
|
|
|
52178
52327
|
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
52179
52328
|
|
|
52180
52329
|
// load the styles
|
|
52181
|
-
var content = __webpack_require__(
|
|
52330
|
+
var content = __webpack_require__(8484);
|
|
52182
52331
|
if(content.__esModule) content = content.default;
|
|
52183
52332
|
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
52184
52333
|
if(content.locals) module.exports = content.locals;
|
|
52185
52334
|
// add the styles to the DOM
|
|
52186
52335
|
var add = (__webpack_require__(9548)/* ["default"] */ .A)
|
|
52187
|
-
var update = add("
|
|
52336
|
+
var update = add("2676d666", content, true, {"sourceMap":false,"shadowMode":false});
|
|
52188
52337
|
|
|
52189
52338
|
/***/ }),
|
|
52190
52339
|
|
|
@@ -59059,8 +59208,8 @@ FloatButtonGroup_src.install = function (Vue) {
|
|
|
59059
59208
|
Vue.component(FloatButtonGroup_src.name, FloatButtonGroup_src);
|
|
59060
59209
|
};
|
|
59061
59210
|
/* harmony default export */ var FloatButtonGroup = (FloatButtonGroup_src);
|
|
59062
|
-
;// 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/PopupDialog/src/index.vue?vue&type=template&id=
|
|
59063
|
-
var
|
|
59211
|
+
;// 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/PopupDialog/src/index.vue?vue&type=template&id=079241d1&scoped=true
|
|
59212
|
+
var srcvue_type_template_id_079241d1_scoped_true_render = function render() {
|
|
59064
59213
|
var _vm = this,
|
|
59065
59214
|
_c = _vm._self._c;
|
|
59066
59215
|
return _c('van-popup', {
|
|
@@ -59075,6 +59224,12 @@ var srcvue_type_template_id_02d89fca_scoped_true_render = function render() {
|
|
|
59075
59224
|
"duration": _vm.duration
|
|
59076
59225
|
},
|
|
59077
59226
|
on: {
|
|
59227
|
+
"touchstart": function touchstart($event) {
|
|
59228
|
+
$event.stopPropagation();
|
|
59229
|
+
},
|
|
59230
|
+
"touchend": function touchend($event) {
|
|
59231
|
+
$event.stopPropagation();
|
|
59232
|
+
},
|
|
59078
59233
|
"close": _vm.onCloseDialog,
|
|
59079
59234
|
"closed": _vm.onClosedDialog
|
|
59080
59235
|
},
|
|
@@ -59110,7 +59265,7 @@ var srcvue_type_template_id_02d89fca_scoped_true_render = function render() {
|
|
|
59110
59265
|
class: _vm.title != null ? 'popup-body' : 'popup-body-nonav'
|
|
59111
59266
|
}, [_vm._t("default")], 2)], 1);
|
|
59112
59267
|
};
|
|
59113
|
-
var
|
|
59268
|
+
var srcvue_type_template_id_079241d1_scoped_true_staticRenderFns = [];
|
|
59114
59269
|
|
|
59115
59270
|
;// 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/PopupDialog/src/index.vue?vue&type=script&lang=js
|
|
59116
59271
|
function srcvue_type_script_lang_js_typeof(o) { "@babel/helpers - typeof"; return srcvue_type_script_lang_js_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, srcvue_type_script_lang_js_typeof(o); }
|
|
@@ -59257,9 +59412,9 @@ function srcvue_type_script_lang_js_toPrimitive(t, r) { if ("object" != srcvue_t
|
|
|
59257
59412
|
});
|
|
59258
59413
|
;// CONCATENATED MODULE: ./packages/ecmapp/PopupDialog/src/index.vue?vue&type=script&lang=js
|
|
59259
59414
|
/* harmony default export */ var ecmapp_PopupDialog_srcvue_type_script_lang_js = (PopupDialog_srcvue_type_script_lang_js);
|
|
59260
|
-
// 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/PopupDialog/src/index.vue?vue&type=style&index=0&id=
|
|
59261
|
-
var
|
|
59262
|
-
;// CONCATENATED MODULE: ./packages/ecmapp/PopupDialog/src/index.vue?vue&type=style&index=0&id=
|
|
59415
|
+
// 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/PopupDialog/src/index.vue?vue&type=style&index=0&id=079241d1&prod&scoped=true&lang=scss
|
|
59416
|
+
var srcvue_type_style_index_0_id_079241d1_prod_scoped_true_lang_scss = __webpack_require__(1735);
|
|
59417
|
+
;// CONCATENATED MODULE: ./packages/ecmapp/PopupDialog/src/index.vue?vue&type=style&index=0&id=079241d1&prod&scoped=true&lang=scss
|
|
59263
59418
|
|
|
59264
59419
|
;// CONCATENATED MODULE: ./packages/ecmapp/PopupDialog/src/index.vue
|
|
59265
59420
|
|
|
@@ -59272,11 +59427,11 @@ var srcvue_type_style_index_0_id_02d89fca_prod_scoped_true_lang_scss = __webpack
|
|
|
59272
59427
|
|
|
59273
59428
|
var PopupDialog_src_component = (0,componentNormalizer/* default */.A)(
|
|
59274
59429
|
ecmapp_PopupDialog_srcvue_type_script_lang_js,
|
|
59275
|
-
|
|
59276
|
-
|
|
59430
|
+
srcvue_type_template_id_079241d1_scoped_true_render,
|
|
59431
|
+
srcvue_type_template_id_079241d1_scoped_true_staticRenderFns,
|
|
59277
59432
|
false,
|
|
59278
59433
|
null,
|
|
59279
|
-
"
|
|
59434
|
+
"079241d1",
|
|
59280
59435
|
null
|
|
59281
59436
|
|
|
59282
59437
|
)
|
|
@@ -76435,43 +76590,43 @@ var asyncComponents = [
|
|
|
76435
76590
|
}],
|
|
76436
76591
|
// ========== ecmapp/Wflowform 工作流表单子组件 → chunk: m-wflow-form ==========
|
|
76437
76592
|
['Attachment', function () {
|
|
76438
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76593
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76439
76594
|
return m.Attachment;
|
|
76440
76595
|
});
|
|
76441
76596
|
}], ['BodyFile', function () {
|
|
76442
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76597
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76443
76598
|
return m.BodyFile;
|
|
76444
76599
|
});
|
|
76445
76600
|
}], ['HandleIdea', function () {
|
|
76446
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76601
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76447
76602
|
return m.HandleIdea;
|
|
76448
76603
|
});
|
|
76449
76604
|
}], ['SelectOuterDeputy', function () {
|
|
76450
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76605
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76451
76606
|
return m.SelectOuterDeputy;
|
|
76452
76607
|
});
|
|
76453
76608
|
}], ['SubmitHandle', function () {
|
|
76454
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76609
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76455
76610
|
return m.SubmitHandle;
|
|
76456
76611
|
});
|
|
76457
76612
|
}], ['SubmitDialog', function () {
|
|
76458
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76613
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76459
76614
|
return m.SubmitDialog;
|
|
76460
76615
|
});
|
|
76461
76616
|
}], ['ShortcutProcessing', function () {
|
|
76462
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76617
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76463
76618
|
return m.ShortcutProcessing;
|
|
76464
76619
|
});
|
|
76465
76620
|
}], ['WfNodelogList', function () {
|
|
76466
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76621
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76467
76622
|
return m.WfNodelogList;
|
|
76468
76623
|
});
|
|
76469
76624
|
}], ['WriteToReadIdea', function () {
|
|
76470
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76625
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76471
76626
|
return m.WriteToReadIdea;
|
|
76472
76627
|
});
|
|
76473
76628
|
}], ['VoiceInputDialog', function () {
|
|
76474
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76629
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620)).then(function (m) {
|
|
76475
76630
|
return m.VoiceInputDialog;
|
|
76476
76631
|
});
|
|
76477
76632
|
}]];
|
|
@@ -76529,7 +76684,7 @@ var WfengineModule = function WfengineModule() {
|
|
|
76529
76684
|
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 8838));
|
|
76530
76685
|
};
|
|
76531
76686
|
var WflowformModule = function WflowformModule() {
|
|
76532
|
-
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__,
|
|
76687
|
+
return Promise.resolve(/* import() eager */).then(__webpack_require__.bind(__webpack_require__, 620));
|
|
76533
76688
|
};
|
|
76534
76689
|
|
|
76535
76690
|
// ---------- 重型功能(PDF/富文本,仅特定页面使用) ----------
|