cloud-web-corejs 1.0.194 → 1.0.195
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/package.json +1 -1
- package/src/components/VabUpload/index.js +48 -1
- package/src/components/VabUpload/mixins.js +1821 -1
- package/src/components/VabUpload/privateProfileDialogMixins.js +1063 -1
- package/src/components/advancedSearchDialog/mixins.js +28 -1
- package/src/components/baseAlert/index.js +44 -1
- package/src/components/baseAlert/mixins.js +61 -1
- package/src/components/baseAttachment/install.js +21 -5
- package/src/components/baseAttachment/mixins.js +317 -1
- package/src/components/baseInputBatch/mixins.js +58 -1
- package/src/components/baseInputExport/mixins.js +391 -1
- package/src/components/baseTabs/mixins.js +166 -1
- package/src/components/cnPrint/index.js +44 -1
- package/src/components/cnPrint/mixins.js +189 -1
- package/src/components/code-editor/index.vue +51 -136
- package/src/components/confirmDialog/index.js +41 -1
- package/src/components/confirmDialog/mixins.js +31 -1
- package/src/components/errorMsg/index.js +44 -1
- package/src/components/errorMsg/mixins.js +96 -1
- package/src/components/excelExport/index.js +43 -1
- package/src/components/excelExport/mixins.js +964 -1
- package/src/components/excelImport/index.js +74 -13
- package/src/components/excelImport/mixins.js +774 -1
- package/src/components/fileLibrary/mixins/categoryMoveDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileCategoryDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileHistoryDialogMixins.js +2 -2
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +202 -350
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +26 -33
- package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +5 -5
- package/src/components/fileLibrary/mixins/indexMixins.js +106 -250
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +4 -64
- package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +4 -3
- package/src/components/formOplog/mixins.js +77 -1
- package/src/components/hiprint/view/design/mixins.js +611 -1
- package/src/components/jdPrint/index.js +44 -1
- package/src/components/jdPrint/mixins.js +208 -1
- package/src/components/jsonImport/index.js +187 -17
- package/src/components/jsonImport/mixins.js +332 -1
- package/src/components/langImport/index.js +80 -1
- package/src/components/langImport/mixins.js +484 -1
- package/src/components/langTag/mixins/addButton.js +51 -5
- package/src/components/langTag/mixins/deleteButton.js +55 -5
- package/src/components/langTag/mixins/view.js +47 -5
- package/src/components/luckysheet/export.js +591 -1
- package/src/components/luckysheet/fileUtils.js +147 -1
- package/src/components/luckysheet/index.js +72 -1
- package/src/components/obsUpload/index.js +34 -1
- package/src/components/obsUpload/mixins.js +1469 -1
- package/src/components/onlineTalk/index.vue +5 -327
- package/src/components/onlineTalk/mixins.js +852 -1
- package/src/components/oplogTable/mixins.js +80 -1
- package/src/components/pddPrint/index.js +44 -1
- package/src/components/pddPrint/mixins.js +252 -1
- package/src/components/projectTag/mixins/addButton.js +52 -1
- package/src/components/projectTag/mixins/deleteButton.js +52 -1
- package/src/components/projectTag/mixins/view.js +43 -1
- package/src/components/scriptDescription/mixins.js +30 -1
- package/src/components/scriptTest/mixins.js +90 -1
- package/src/components/statusTag/mixins.js +66 -1
- package/src/components/table/CellSlot.vue +2 -29
- package/src/components/table/config - hx5.0.js +79 -0
- package/src/components/table/config.js +74 -1
- package/src/components/table/index - hx5.0.js +958 -0
- package/src/components/table/index.js +1055 -1
- package/src/components/table/tableFormMixin.js +281 -1
- package/src/components/table/util/index.js +3 -10
- package/src/components/table/vxeFilter/index.js +153 -1
- package/src/components/table/vxeFilter/mixin.js +301 -1
- package/src/components/vipPrint/index.js +44 -1
- package/src/components/vipPrint/mixins.js +268 -1
- package/src/components/wf/mixins/addOpinionButton.js +51 -1
- package/src/components/wf/mixins/setCandidateButton.js +156 -1
- package/src/components/wf/mixins/setCandidateDialog.js +212 -1
- package/src/components/wf/mixins/setCandidateDialog2.js +247 -1
- package/src/components/wf/mixins/wfFlowEleScriptDialog.js +129 -1
- package/src/components/wf/mixins/wfTaskUserRangeDialog.js +67 -1
- package/src/components/wf/wf.js +2156 -1
- package/src/components/wf/wfUtil.js +279 -1
- package/src/components/xform/form-designer/designer.js +1685 -1
- package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +112 -1
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +290 -1
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +1769 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +1654 -1
- package/src/components/xform/form-designer/form-widget/indexMixin.js +183 -1
- package/src/components/xform/form-designer/indexMixin.js +847 -1
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +335 -1
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +589 -1
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +308 -1
- package/src/components/xform/form-render/container-item/containerItemMixin.js +389 -1
- package/src/components/xform/form-render/container-item/data-table-mixin.js +3064 -1
- package/src/components/xform/form-render/dynamicDialogRender.js +199 -1
- package/src/components/xform/form-render/indexMixin.js +3725 -1
- package/src/components/xform/form-render/refMixin.js +31 -1
- package/src/components/xform/mixins/defaultHandle.js +343 -1
- package/src/components/xform/mixins/scriptHttp.js +1 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/format.js +1 -1
- package/src/components/xform/utils/formula-util.js +4 -0
- package/src/components/xform/utils/smart-vue-i18n/index.js +2 -1
- package/src/components/xform/utils/util.js +1464 -1
- package/src/components/xform/utils/validators.js +134 -1
- package/src/components/xhsPrint/index.js +44 -1
- package/src/components/xhsPrint/mixins.js +269 -1
- package/src/directive/LimitNumber/index.js +125 -1
- package/src/directive/el-dialog-center/index.js +34 -1
- package/src/directive/el-drag-dialog/drag.js +86 -1
- package/src/directive/el-readonly/index.js +15 -1
- package/src/directive/permission/hasPermi.js +34 -1
- package/src/permission.js +135 -1
- package/src/store/config/index.js +667 -1
- package/src/store/modules/permission.js +0 -15
- package/src/store/modules/settings.js +26 -1
- package/src/store/modules/tagsView.js +200 -1
- package/src/store/modules/user.js +356 -1
- package/src/utils/aes.js +15 -1
- package/src/utils/auth.js +27 -1
- package/src/utils/global.js +362 -1
- package/src/utils/index.js +579 -1
- package/src/utils/keepAlive.js +181 -1
- package/src/utils/pddLog.js +17 -28
- package/src/utils/request.js +368 -1
- package/src/utils/vab.js +1258 -1
- package/src/utils/validate.js +106 -1
- package/src/utils/wf.js +749 -4
|
@@ -42,21 +42,10 @@
|
|
|
42
42
|
<template v-if="item.contentType == 0">
|
|
43
43
|
{{ item.content }}
|
|
44
44
|
</template>
|
|
45
|
-
<template v-else
|
|
45
|
+
<template v-else>
|
|
46
46
|
<baseUpload accept="file" multi="false" :file.sync="item.file" :edit="false"
|
|
47
47
|
:showProperties="false" :showSize="true" :createBy="false"></baseUpload>
|
|
48
48
|
</template>
|
|
49
|
-
<template v-else-if="item.contentType == 2">
|
|
50
|
-
<ul class="onlieTalk-search-list">
|
|
51
|
-
<div class="tit"><i class="el-icon-chat-round"></i><b>猜你想问</b></div>
|
|
52
|
-
<div class="o-cont">
|
|
53
|
-
<li v-for="(answer,index) in item.answers" :key="index">
|
|
54
|
-
<a href="javascript:void(0);" class="a-link"
|
|
55
|
-
@click="answerCheckHandle(answer)">{{index+1}}、{{ answer.question }}</a>
|
|
56
|
-
</li>
|
|
57
|
-
</div>
|
|
58
|
-
</ul>
|
|
59
|
-
</template>
|
|
60
49
|
</div>
|
|
61
50
|
</div>
|
|
62
51
|
</template>
|
|
@@ -71,16 +60,6 @@
|
|
|
71
60
|
<i class="el-icon-folder-opened btn" @click="addFile" :disabled="!talkUserId"></i>
|
|
72
61
|
</el-tooltip>
|
|
73
62
|
</div> -->
|
|
74
|
-
<!-- <div class="pop-inputTips" v-show="false">
|
|
75
|
-
<p>该商品的<span>有效</span>日期?</p>
|
|
76
|
-
<p><span>有效</span>使用时间是什么时候?</p>
|
|
77
|
-
<p>该商品的<span>有效</span>日期?</p>
|
|
78
|
-
<p><span>有效</span>使用时间是什么时候?</p>
|
|
79
|
-
<p>该商品的<span>有效</span>日期?</p>
|
|
80
|
-
<p><span>有效</span>使用时间是什么时候?</p>
|
|
81
|
-
<p>该商品的<span>有效</span>日期?</p>
|
|
82
|
-
<p><span>有效</span>使用时间是什么时候?</p>
|
|
83
|
-
</div>-->
|
|
84
63
|
<el-input type="textarea" :rows="6" class="txt-textarea" v-model="talkUser.content" placeholder="请输入
|
|
85
64
|
选择此处,可粘贴文件(Ctrl+V)"
|
|
86
65
|
:disabled="!talkUserId" ref="contentRef" @paste.native="pasteMessage"
|
|
@@ -138,9 +117,6 @@
|
|
|
138
117
|
<i class="iconfont icon-wendangshangchuan"></i>
|
|
139
118
|
从个人文档工作区选择
|
|
140
119
|
</el-button>
|
|
141
|
-
<el-button type="info" plain class="button-sty" @click="openHistoryDialog"><i
|
|
142
|
-
class="el-icon-time"></i>历史记录
|
|
143
|
-
</el-button>
|
|
144
120
|
</div>
|
|
145
121
|
<div class="fr">
|
|
146
122
|
<span class="t">Ctrl + Enter </span>
|
|
@@ -215,63 +191,6 @@
|
|
|
215
191
|
</el-button>
|
|
216
192
|
</span>
|
|
217
193
|
</el-dialog>
|
|
218
|
-
|
|
219
|
-
<el-dialog
|
|
220
|
-
title="历史记录"
|
|
221
|
-
:append-to-body="true"
|
|
222
|
-
:modal-append-to-body="true"
|
|
223
|
-
:close-on-click-modal="false"
|
|
224
|
-
v-if="showHistoryDialog"
|
|
225
|
-
:visible.sync="showHistoryDialog"
|
|
226
|
-
:modal="false"
|
|
227
|
-
custom-class="dialog-style list-dialog history-dialog"
|
|
228
|
-
width="586px"
|
|
229
|
-
v-el-drag-dialog
|
|
230
|
-
v-el-dialog-center
|
|
231
|
-
>
|
|
232
|
-
<div class="history-box">
|
|
233
|
-
<div class="h-form">
|
|
234
|
-
<div class="search-box">
|
|
235
|
-
<div class="search-classify" v-if="historyType == 2" @click="checkHistoryType(null)"><i
|
|
236
|
-
class="el-icon-files"></i><span>文件</span><i
|
|
237
|
-
class='el-icon-close'></i></div>
|
|
238
|
-
<div class="search-classify" v-if="historyType == 1" @click="checkHistoryType(null)"><i
|
|
239
|
-
class="el-icon-files"></i><span>图片</span><i
|
|
240
|
-
class='el-icon-close'></i></div>
|
|
241
|
-
<el-input class="search-input" v-model="historyKeyword" clearable @input="changeHistoryKeyword"></el-input>
|
|
242
|
-
</div>
|
|
243
|
-
<div class="keys-box">
|
|
244
|
-
<span @click="checkHistoryType(2)">文件</span>
|
|
245
|
-
<span @click="checkHistoryType(1)">图片</span>
|
|
246
|
-
</div>
|
|
247
|
-
</div>
|
|
248
|
-
<div class="h-list" @scroll="handleScrollH" >
|
|
249
|
-
<div class="item" v-for="(item,index) in talkHRecords" :key="index" :class="'talk_h'+item.id">
|
|
250
|
-
<div class="name">{{ item.sendUserName }}</div>
|
|
251
|
-
<div class="time">{{ item.createDate }}</div>
|
|
252
|
-
<div>
|
|
253
|
-
<template v-if="item.contentType == 0">
|
|
254
|
-
{{ item.content }}
|
|
255
|
-
</template>
|
|
256
|
-
<template v-else-if="item.contentType == 1">
|
|
257
|
-
<baseUpload accept="file" multi="false" :file.sync="item.file" :edit="false"
|
|
258
|
-
:showProperties="false" :showSize="true" :createBy="false"></baseUpload>
|
|
259
|
-
</template>
|
|
260
|
-
<template v-else-if="item.contentType == 2">
|
|
261
|
-
<ul class="onlieTalk-search-list">
|
|
262
|
-
<div class="tit"><i class="el-icon-chat-round"></i><b>猜你想问</b></div>
|
|
263
|
-
<div class="o-cont">
|
|
264
|
-
<li v-for="(answer,index) in item.answers" :key="index">
|
|
265
|
-
<a href="javascript:void(0);" class="a-link">{{index+1}}、{{ answer.question }}</a>
|
|
266
|
-
</li>
|
|
267
|
-
</div>
|
|
268
|
-
</ul>
|
|
269
|
-
</template>
|
|
270
|
-
</div>
|
|
271
|
-
</div>
|
|
272
|
-
</div>
|
|
273
|
-
</div>
|
|
274
|
-
</el-dialog>
|
|
275
194
|
</div>
|
|
276
195
|
</template>
|
|
277
196
|
|
|
@@ -284,213 +203,11 @@ export default {
|
|
|
284
203
|
components: {
|
|
285
204
|
userDialog,
|
|
286
205
|
privateProfileDialog: () => import('../../components/VabUpload/privateProfileDialog')
|
|
287
|
-
}
|
|
288
|
-
data() {
|
|
289
|
-
return {};
|
|
290
|
-
},
|
|
291
|
-
mounted() {
|
|
292
|
-
},
|
|
206
|
+
}
|
|
293
207
|
};
|
|
294
208
|
</script>
|
|
295
209
|
<style scoped lang="scss">
|
|
296
210
|
@import '~@/styles/variables.scss';
|
|
297
|
-
.onlieTalk-search-list{
|
|
298
|
-
list-style: none;margin: -8px -4px 0;padding: 0;min-width: 360px;max-width: 90%;
|
|
299
|
-
.tit{color: #333;font-size: 14px;margin: 10px 0 3px;padding-left: 6px;
|
|
300
|
-
i{margin-right: 3px;}
|
|
301
|
-
}
|
|
302
|
-
.o-cont{background: #FFF;border-radius: 5px;margin-top: 7px;padding: 0 12px;}
|
|
303
|
-
li{
|
|
304
|
-
padding: 10px 2px;border-bottom: dashed 1px #dfdfdf;display: block;position: relative;font-size: 12px;cursor: pointer;
|
|
305
|
-
&:after{content:"\e6e0";font-family: element-icons!important;color:#747474;height:30px;border-radius: 50%;position: absolute;top:50%;margin-top:-15px;right:0;line-height:30px;}
|
|
306
|
-
&:last-child{
|
|
307
|
-
border-bottom: none;
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
.history-box {
|
|
312
|
-
.h-form {
|
|
313
|
-
padding: 2px 16px 10px;
|
|
314
|
-
|
|
315
|
-
.search-classify {
|
|
316
|
-
background: #F4F4F4;
|
|
317
|
-
line-height: 28px;
|
|
318
|
-
height: 28px;
|
|
319
|
-
padding: 0 8px;
|
|
320
|
-
border-radius: 3px;
|
|
321
|
-
|
|
322
|
-
> i, > span {
|
|
323
|
-
vertical-align: middle;
|
|
324
|
-
font-size: 13px;
|
|
325
|
-
margin-top: 2px;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
> span {
|
|
329
|
-
margin: 0 2px 0 4px
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.el-icon-close {
|
|
333
|
-
cursor: pointer;
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
::v-deep .search-box {
|
|
338
|
-
border: solid 1px #eee;
|
|
339
|
-
padding: 5px;
|
|
340
|
-
border-radius: 8px;
|
|
341
|
-
display: flex;
|
|
342
|
-
background: #FFF;
|
|
343
|
-
|
|
344
|
-
.el-input {
|
|
345
|
-
flex: 1;
|
|
346
|
-
|
|
347
|
-
.el-input__inner {
|
|
348
|
-
border: none;
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.keys-box {
|
|
354
|
-
margin-top: 10px;
|
|
355
|
-
padding: 0 2px;
|
|
356
|
-
|
|
357
|
-
span {
|
|
358
|
-
display: inline-block;
|
|
359
|
-
margin-right: 42px;
|
|
360
|
-
font-size: 13px;
|
|
361
|
-
color: #2A6494;
|
|
362
|
-
cursor: pointer;
|
|
363
|
-
border-bottom: solid 1px #F7F7F7;
|
|
364
|
-
|
|
365
|
-
&:hover {
|
|
366
|
-
border-bottom: solid 1px #2A6494
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.h-list {
|
|
373
|
-
height: 520px;
|
|
374
|
-
overflow: auto;
|
|
375
|
-
padding: 2px 0;
|
|
376
|
-
background-color: #FFF;
|
|
377
|
-
|
|
378
|
-
.item {
|
|
379
|
-
border-bottom: solid 1px #f2f2f2;
|
|
380
|
-
position: relative;
|
|
381
|
-
padding: 12px 16px;
|
|
382
|
-
color: #323232;
|
|
383
|
-
font-size: 13px;
|
|
384
|
-
overflow: hidden;
|
|
385
|
-
.onlieTalk-search-list{
|
|
386
|
-
border: solid 1px #eee;padding:0 8px 6px;border-radius: 6px;margin: 10px 0 4px;background: #f7f7f7;overflow: hidden;
|
|
387
|
-
}
|
|
388
|
-
.name {
|
|
389
|
-
color: #999;
|
|
390
|
-
margin-bottom: 5px;
|
|
391
|
-
font-size: 12px;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
.time {
|
|
395
|
-
position: absolute;
|
|
396
|
-
right: 16px;
|
|
397
|
-
top: 14px;
|
|
398
|
-
font-size: 12px;
|
|
399
|
-
color: #999;
|
|
400
|
-
}
|
|
401
|
-
::v-deep .upload-box{margin:-10px 0 0 0 !important;border-top:none}
|
|
402
|
-
&:hover {
|
|
403
|
-
background: #f7f7f7;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.h-pic {
|
|
410
|
-
height: 520px;
|
|
411
|
-
overflow: auto;
|
|
412
|
-
padding: 8px 14px;
|
|
413
|
-
background-color: #FFF;
|
|
414
|
-
|
|
415
|
-
.item {
|
|
416
|
-
width: 133px;
|
|
417
|
-
height: 133px;
|
|
418
|
-
display: inline-block;
|
|
419
|
-
vertical-align: middle;
|
|
420
|
-
margin: 3px;
|
|
421
|
-
|
|
422
|
-
.el-image {
|
|
423
|
-
width: 100%;
|
|
424
|
-
height: 100%;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
&:hover .el-image {
|
|
428
|
-
border: solid 1px #2A6494
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.h-file {
|
|
434
|
-
height: 520px;
|
|
435
|
-
overflow: auto;
|
|
436
|
-
padding: 8px 0;
|
|
437
|
-
background-color: #FFF;
|
|
438
|
-
|
|
439
|
-
.item {
|
|
440
|
-
position: relative;
|
|
441
|
-
padding: 8px 16px 0;
|
|
442
|
-
color: #323232;
|
|
443
|
-
font-size: 13px;
|
|
444
|
-
display: flex;
|
|
445
|
-
|
|
446
|
-
.img {
|
|
447
|
-
width: 58px;
|
|
448
|
-
height: 58px;
|
|
449
|
-
|
|
450
|
-
.el-image {
|
|
451
|
-
width: 100%;
|
|
452
|
-
height: 100%;
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.txt {
|
|
457
|
-
border-bottom: solid 1px #f2f2f2;
|
|
458
|
-
flex: 1;
|
|
459
|
-
display: flex;
|
|
460
|
-
color: #999;
|
|
461
|
-
font-size: 12px;
|
|
462
|
-
padding: 0 0 6px;
|
|
463
|
-
margin-left: 12px;
|
|
464
|
-
|
|
465
|
-
p {
|
|
466
|
-
margin: 0 0 8px;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.name {
|
|
470
|
-
color: #323232;
|
|
471
|
-
font-size: 13px;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.t-l {
|
|
475
|
-
flex: 1
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.t-r {
|
|
479
|
-
font-size: 12px;
|
|
480
|
-
text-align: right;
|
|
481
|
-
|
|
482
|
-
.ico {
|
|
483
|
-
display: inline-block;
|
|
484
|
-
color: #2A6494;
|
|
485
|
-
margin-left: 8px;
|
|
486
|
-
font-size: 16px;
|
|
487
|
-
}
|
|
488
|
-
}
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
|
|
494
211
|
|
|
495
212
|
.ico-online {
|
|
496
213
|
background: url(~@/resources/images/ico-service.png) no-repeat center 19px #FFF;
|
|
@@ -616,8 +333,7 @@ export default {
|
|
|
616
333
|
|
|
617
334
|
.item {
|
|
618
335
|
margin: 10px 0;
|
|
619
|
-
font-size:
|
|
620
|
-
|
|
336
|
+
font-size:14px;
|
|
621
337
|
.name {
|
|
622
338
|
color: rgba(102, 102, 102, 0.6);
|
|
623
339
|
margin-bottom: 4px;
|
|
@@ -662,8 +378,7 @@ export default {
|
|
|
662
378
|
|
|
663
379
|
&.right {
|
|
664
380
|
text-align: right;
|
|
665
|
-
font-size:
|
|
666
|
-
|
|
381
|
+
font-size:14px;
|
|
667
382
|
.cont {
|
|
668
383
|
background-color: #D8E8F9;
|
|
669
384
|
|
|
@@ -699,36 +414,6 @@ export default {
|
|
|
699
414
|
display: flex;
|
|
700
415
|
flex-direction: column;
|
|
701
416
|
|
|
702
|
-
.pop-inputTips {
|
|
703
|
-
position: absolute;
|
|
704
|
-
background: #FFF;
|
|
705
|
-
left: 10px;
|
|
706
|
-
border: solid 1px #eee;
|
|
707
|
-
overflow: auto;
|
|
708
|
-
height: 160px;
|
|
709
|
-
width: 400px;
|
|
710
|
-
font-size: 13px;
|
|
711
|
-
bottom: 100%;
|
|
712
|
-
margin-bottom: -22px;
|
|
713
|
-
z-index: 22;
|
|
714
|
-
box-shadow: 0 0 14px rgb(0 0 0 / 11%);
|
|
715
|
-
padding: 2px 0;
|
|
716
|
-
|
|
717
|
-
p {
|
|
718
|
-
padding: 10px 16px;
|
|
719
|
-
margin: 0;
|
|
720
|
-
cursor: pointer;
|
|
721
|
-
|
|
722
|
-
&:hover {
|
|
723
|
-
background: #f7f7f7
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
span {
|
|
727
|
-
color: $red
|
|
728
|
-
}
|
|
729
|
-
}
|
|
730
|
-
}
|
|
731
|
-
|
|
732
417
|
.btns {
|
|
733
418
|
background-color: #FAFAFA;
|
|
734
419
|
height: 36px;
|
|
@@ -744,7 +429,7 @@ export default {
|
|
|
744
429
|
|
|
745
430
|
.txt-textarea {
|
|
746
431
|
flex: 1;
|
|
747
|
-
padding-top:
|
|
432
|
+
padding-top: 6px;
|
|
748
433
|
|
|
749
434
|
.el-textarea__inner {
|
|
750
435
|
border: none;
|
|
@@ -899,13 +584,6 @@ export default {
|
|
|
899
584
|
}
|
|
900
585
|
}
|
|
901
586
|
|
|
902
|
-
.fl {
|
|
903
|
-
.button-sty .el-icon-time {
|
|
904
|
-
margin-bottom: 2px;
|
|
905
|
-
margin-right: 2px;
|
|
906
|
-
}
|
|
907
|
-
}
|
|
908
|
-
|
|
909
587
|
.fr {
|
|
910
588
|
.t {
|
|
911
589
|
vertical-align: middle;
|