cloud-web-corejs 1.0.54-dev.26 → 1.0.54-dev.27
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
CHANGED
@@ -47,7 +47,7 @@
|
|
47
47
|
:showProperties="false" :showSize="true" :createBy="false"></baseUpload>
|
48
48
|
</template>
|
49
49
|
<template v-else-if="item.contentType == 2">
|
50
|
-
<ul>
|
50
|
+
<ul class="onlieTalk-search-list">
|
51
51
|
<li v-for="(answer,index) in item.answers" :key="index">
|
52
52
|
<a href="javascript:void(0);" class="a-link"
|
53
53
|
@click="answerCheckHandle(answer)">{{ answer.question }}</a>
|
@@ -68,16 +68,16 @@
|
|
68
68
|
<i class="el-icon-folder-opened btn" @click="addFile" :disabled="!talkUserId"></i>
|
69
69
|
</el-tooltip>
|
70
70
|
</div> -->
|
71
|
-
<!-- <div class="pop-inputTips" v-show="false">
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
71
|
+
<!-- <div class="pop-inputTips" v-show="false">
|
72
|
+
<p>该商品的<span>有效</span>日期?</p>
|
73
|
+
<p><span>有效</span>使用时间是什么时候?</p>
|
74
|
+
<p>该商品的<span>有效</span>日期?</p>
|
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
|
+
</div>-->
|
81
81
|
<el-input type="textarea" :rows="6" class="txt-textarea" v-model="talkUser.content" placeholder="请输入
|
82
82
|
选择此处,可粘贴文件(Ctrl+V)"
|
83
83
|
:disabled="!talkUserId" ref="contentRef" @paste.native="pasteMessage"
|
@@ -255,7 +255,7 @@
|
|
255
255
|
:showProperties="false" :showSize="true" :createBy="false"></baseUpload>
|
256
256
|
</template>
|
257
257
|
<template v-else-if="item.contentType == 2">
|
258
|
-
<ul>
|
258
|
+
<ul class="onlieTalk-search-list">
|
259
259
|
<li v-for="(answer,index) in item.answers" :key="index">
|
260
260
|
<a href="javascript:void(0);" class="a-link">{{ answer.question }}</a>
|
261
261
|
</li>
|
@@ -362,7 +362,17 @@ export default {
|
|
362
362
|
padding: 12px 16px;
|
363
363
|
color: #323232;
|
364
364
|
font-size: 13px;
|
365
|
-
|
365
|
+
overflow: hidden;
|
366
|
+
.onlieTalk-search-list{
|
367
|
+
list-style: none;margin: -6px 0;padding: 0;min-width: 360px;max-width: 90%;border: solid 1px #eee;padding: 4px 8px;border-radius: 6px;margin: 10px 0 4px;background: #f7f7f7;overflow: hidden;
|
368
|
+
li{
|
369
|
+
padding: 12px 2px;border-bottom: dashed 1px #dfdfdf;display: block;position: relative;font-size: 12px;cursor: pointer;
|
370
|
+
&: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;}
|
371
|
+
&:last-child{
|
372
|
+
border-bottom: none;
|
373
|
+
}
|
374
|
+
}
|
375
|
+
}
|
366
376
|
.name {
|
367
377
|
color: #999;
|
368
378
|
margin-bottom: 5px;
|
@@ -376,10 +386,11 @@ export default {
|
|
376
386
|
font-size: 12px;
|
377
387
|
color: #999;
|
378
388
|
}
|
379
|
-
|
389
|
+
::v-deep .upload-box{margin:-10px 0 0 0 !important;border-top:none}
|
380
390
|
&:hover {
|
381
391
|
background: #f7f7f7;
|
382
392
|
}
|
393
|
+
|
383
394
|
}
|
384
395
|
}
|
385
396
|
|
@@ -594,7 +605,16 @@ export default {
|
|
594
605
|
.item {
|
595
606
|
margin: 10px 0;
|
596
607
|
font-size: 14px;
|
597
|
-
|
608
|
+
.onlieTalk-search-list{
|
609
|
+
list-style: none;margin: -6px 0;padding: 0;min-width: 360px;max-width: 90%;
|
610
|
+
li{
|
611
|
+
padding: 12px 2px;border-bottom: dashed 1px #dfdfdf;display: block;position: relative;font-size: 12px;cursor: pointer;
|
612
|
+
&: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;}
|
613
|
+
&:last-child{
|
614
|
+
border-bottom: none;
|
615
|
+
}
|
616
|
+
}
|
617
|
+
}
|
598
618
|
.name {
|
599
619
|
color: rgba(102, 102, 102, 0.6);
|
600
620
|
margin-bottom: 4px;
|