askbot-dragon 1.6.76-beta → 1.6.78-beta
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/README.md +27 -27
- package/babel.config.js +6 -6
- package/dragon.iml +7 -7
- package/package.json +55 -55
- package/public/index.html +72 -72
- package/src/App.vue +31 -31
- package/src/api/index.js +1 -1
- package/src/api/mock.http +2 -2
- package/src/api/requestUrl.js +185 -185
- package/src/assets/js/AliyunlssUtil.js +92 -92
- package/src/assets/js/Base64Util.js +22 -22
- package/src/assets/js/common.js +252 -252
- package/src/assets/js/hammer.js +100 -100
- package/src/assets/js/script.js +36 -36
- package/src/assets/less/common.css +6773 -6773
- package/src/assets/less/converSationContainer/common.less +199 -199
- package/src/assets/less/converSationContainer/converSatonContainer.less +493 -493
- package/src/assets/less/iconfont.css +37 -37
- package/src/assets/less/ticketMessage.less +294 -294
- package/src/components/ActionAlertIframe.vue +177 -177
- package/src/components/AiGuide.vue +466 -466
- package/src/components/AnswerDocknowledge.vue +1059 -1059
- package/src/components/AnswerVoice.vue +285 -285
- package/src/components/AskIFrame.vue +15 -15
- package/src/components/ConversationContainer.vue +4934 -4934
- package/src/components/FileType.vue +86 -86
- package/src/components/Message.vue +27 -27
- package/src/components/MyEditor.vue +351 -351
- package/src/components/actionSatisfaction.vue +107 -107
- package/src/components/actionSendToBot.vue +62 -62
- package/src/components/answerDissatisfaction.vue +62 -62
- package/src/components/answerRadio.vue +186 -186
- package/src/components/ask-components/DissatisfactionOptions.vue +57 -57
- package/src/components/ask-components/Msgloading.vue +37 -37
- package/src/components/ask-components/SatisfactionV2.vue +15 -15
- package/src/components/askVideo.vue +162 -162
- package/src/components/assetDetails.vue +378 -378
- package/src/components/assetMessage.vue +228 -228
- package/src/components/associationIntention.vue +355 -355
- package/src/components/attachmentPreview.vue +90 -90
- package/src/components/botActionSatisfactor.vue +68 -68
- package/src/components/chatContent.vue +513 -513
- package/src/components/feedBack.vue +136 -136
- package/src/components/fielListView.vue +351 -351
- package/src/components/file/AliyunOssComponents.vue +108 -108
- package/src/components/formTemplate.vue +3572 -3572
- package/src/components/intelligentSummary.vue +227 -227
- package/src/components/kkview.vue +1138 -1138
- package/src/components/loadingProcess.vue +164 -164
- package/src/components/message/ActionAlertIframe.vue +112 -112
- package/src/components/message/ShopMessage.vue +164 -164
- package/src/components/message/TextMessage.vue +924 -924
- package/src/components/message/TicketMessage.vue +201 -201
- package/src/components/message/swiper/index.js +4 -4
- package/src/components/message/swiper/ticketSwiper.vue +503 -503
- package/src/components/message/swiper/ticketSwiperItem.vue +61 -61
- package/src/components/msgLoading.vue +231 -231
- package/src/components/myPopup.vue +70 -70
- package/src/components/newPdfPosition.vue +877 -877
- package/src/components/pdfPosition.vue +1508 -1506
- package/src/components/popup.vue +227 -227
- package/src/components/previewDoc.vue +247 -247
- package/src/components/previewPdf.vue +791 -757
- package/src/components/receiverMessagePlatform.vue +65 -65
- package/src/components/recommend.vue +80 -80
- package/src/components/selector/hOption.vue +20 -20
- package/src/components/selector/hSelector.vue +199 -199
- package/src/components/selector/hWrapper.vue +216 -216
- package/src/components/senderMessagePlatform.vue +50 -50
- package/src/components/source/BotMessage.vue +24 -24
- package/src/components/source/CustomMessage.vue +24 -24
- package/src/components/test.vue +260 -260
- package/src/components/tree.vue +294 -294
- package/src/components/utils/AliyunIssUtil.js +81 -81
- package/src/components/utils/ckeditor.js +174 -174
- package/src/components/utils/format_date.js +25 -25
- package/src/components/utils/index.js +6 -6
- package/src/components/utils/math_utils.js +29 -29
- package/src/components/voiceComponent.vue +119 -119
- package/src/components/welcomeKnowledgeFile.vue +340 -340
- package/src/components/welcomeLlmCard.vue +140 -140
- package/src/components/welcomeSuggest.vue +97 -97
- package/src/main.js +57 -57
- package/vue.config.js +54 -54
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="action-satisfaction"
|
|
4
|
-
>
|
|
5
|
-
<p class="satisfaction-des" v-if="msg.content.satisfactionDes" v-html="msg.content.satisfactionDes"></p>
|
|
6
|
-
<div class="statisfaction-list">
|
|
7
|
-
<div
|
|
8
|
-
class="statisfaction-item"
|
|
9
|
-
:class="isCheckSatis?'check-satisfied':''"
|
|
10
|
-
@click="
|
|
11
|
-
sendSatisfaction(
|
|
12
|
-
'USER_ACTION_TO_SATISFACTION_V2',
|
|
13
|
-
'满意',
|
|
14
|
-
msg.content.satisfactoryAnswer,
|
|
15
|
-
null,
|
|
16
|
-
msg.apiKey
|
|
17
|
-
)
|
|
18
|
-
"
|
|
19
|
-
>
|
|
20
|
-
满意
|
|
21
|
-
</div>
|
|
22
|
-
<div
|
|
23
|
-
class="statisfaction-item"
|
|
24
|
-
:class="isCheckDissatis?'check-satisfied':''"
|
|
25
|
-
@click="
|
|
26
|
-
sendSatisfaction(
|
|
27
|
-
'USER_ACTION_TO_SATISFACTION_V2',
|
|
28
|
-
'不满意',
|
|
29
|
-
msg.content.unsatisfiedAnswer,
|
|
30
|
-
msg.content.answerRadio,
|
|
31
|
-
msg.apiKey
|
|
32
|
-
)
|
|
33
|
-
"
|
|
34
|
-
>
|
|
35
|
-
不满意
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
|
|
39
|
-
</div>
|
|
40
|
-
</template>
|
|
41
|
-
|
|
42
|
-
<script>
|
|
43
|
-
export default {
|
|
44
|
-
name: "actionSatisfaction",
|
|
45
|
-
props:['msg'],
|
|
46
|
-
data(){
|
|
47
|
-
return{
|
|
48
|
-
isCheckSatis:false,
|
|
49
|
-
isCheckDissatis:false
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
methods:{
|
|
53
|
-
sendSatisfaction(type, choose, answer, answerRadio,answerApiKey){
|
|
54
|
-
if (choose==='满意'){
|
|
55
|
-
this.isCheckSatis = true
|
|
56
|
-
this.isCheckDissatis = false
|
|
57
|
-
}
|
|
58
|
-
else {
|
|
59
|
-
this.isCheckSatis = false
|
|
60
|
-
this.isCheckDissatis = true
|
|
61
|
-
}
|
|
62
|
-
this.$emit('sendSatisfaction',type, choose, answer, answerRadio,answerApiKey)
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
</script>
|
|
67
|
-
|
|
68
|
-
<style scoped lang="less">
|
|
69
|
-
@import url(../assets/less/converSationContainer/common);
|
|
70
|
-
.action-satisfaction{
|
|
71
|
-
.satisfaction-des{
|
|
72
|
-
word-wrap: break-word;
|
|
73
|
-
word-break: break-all;
|
|
74
|
-
overflow: hidden;
|
|
75
|
-
padding: 0px 0 10px 0;
|
|
76
|
-
height: auto;
|
|
77
|
-
/* border-bottom: 1px solid #EEEEEE;*/
|
|
78
|
-
}
|
|
79
|
-
.statisfaction-list{
|
|
80
|
-
display: flex;
|
|
81
|
-
align-items: center;
|
|
82
|
-
}
|
|
83
|
-
.statisfaction-item{
|
|
84
|
-
color: #616161;
|
|
85
|
-
min-width: 60px;
|
|
86
|
-
padding: 0 10px;
|
|
87
|
-
height: 29px;
|
|
88
|
-
background: #FFFFFF;
|
|
89
|
-
border: 1px solid #BEC5DB;
|
|
90
|
-
border-radius: 14px;
|
|
91
|
-
cursor:pointer;
|
|
92
|
-
display: flex;
|
|
93
|
-
align-items: center;
|
|
94
|
-
justify-content: center;
|
|
95
|
-
}
|
|
96
|
-
.statisfaction-item:first-child{
|
|
97
|
-
margin-right: 8px;
|
|
98
|
-
}
|
|
99
|
-
.check-satisfied{
|
|
100
|
-
border: 1px solid #BBCDFF;
|
|
101
|
-
color: #366aff;
|
|
102
|
-
}
|
|
103
|
-
.end{
|
|
104
|
-
border-bottom-left-radius: 25px !important;
|
|
105
|
-
border-bottom-right-radius: 25px !important;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="action-satisfaction"
|
|
4
|
+
>
|
|
5
|
+
<p class="satisfaction-des" v-if="msg.content.satisfactionDes" v-html="msg.content.satisfactionDes"></p>
|
|
6
|
+
<div class="statisfaction-list">
|
|
7
|
+
<div
|
|
8
|
+
class="statisfaction-item"
|
|
9
|
+
:class="isCheckSatis?'check-satisfied':''"
|
|
10
|
+
@click="
|
|
11
|
+
sendSatisfaction(
|
|
12
|
+
'USER_ACTION_TO_SATISFACTION_V2',
|
|
13
|
+
'满意',
|
|
14
|
+
msg.content.satisfactoryAnswer,
|
|
15
|
+
null,
|
|
16
|
+
msg.apiKey
|
|
17
|
+
)
|
|
18
|
+
"
|
|
19
|
+
>
|
|
20
|
+
满意
|
|
21
|
+
</div>
|
|
22
|
+
<div
|
|
23
|
+
class="statisfaction-item"
|
|
24
|
+
:class="isCheckDissatis?'check-satisfied':''"
|
|
25
|
+
@click="
|
|
26
|
+
sendSatisfaction(
|
|
27
|
+
'USER_ACTION_TO_SATISFACTION_V2',
|
|
28
|
+
'不满意',
|
|
29
|
+
msg.content.unsatisfiedAnswer,
|
|
30
|
+
msg.content.answerRadio,
|
|
31
|
+
msg.apiKey
|
|
32
|
+
)
|
|
33
|
+
"
|
|
34
|
+
>
|
|
35
|
+
不满意
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
</div>
|
|
40
|
+
</template>
|
|
41
|
+
|
|
42
|
+
<script>
|
|
43
|
+
export default {
|
|
44
|
+
name: "actionSatisfaction",
|
|
45
|
+
props:['msg'],
|
|
46
|
+
data(){
|
|
47
|
+
return{
|
|
48
|
+
isCheckSatis:false,
|
|
49
|
+
isCheckDissatis:false
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
methods:{
|
|
53
|
+
sendSatisfaction(type, choose, answer, answerRadio,answerApiKey){
|
|
54
|
+
if (choose==='满意'){
|
|
55
|
+
this.isCheckSatis = true
|
|
56
|
+
this.isCheckDissatis = false
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
this.isCheckSatis = false
|
|
60
|
+
this.isCheckDissatis = true
|
|
61
|
+
}
|
|
62
|
+
this.$emit('sendSatisfaction',type, choose, answer, answerRadio,answerApiKey)
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
</script>
|
|
67
|
+
|
|
68
|
+
<style scoped lang="less">
|
|
69
|
+
@import url(../assets/less/converSationContainer/common);
|
|
70
|
+
.action-satisfaction{
|
|
71
|
+
.satisfaction-des{
|
|
72
|
+
word-wrap: break-word;
|
|
73
|
+
word-break: break-all;
|
|
74
|
+
overflow: hidden;
|
|
75
|
+
padding: 0px 0 10px 0;
|
|
76
|
+
height: auto;
|
|
77
|
+
/* border-bottom: 1px solid #EEEEEE;*/
|
|
78
|
+
}
|
|
79
|
+
.statisfaction-list{
|
|
80
|
+
display: flex;
|
|
81
|
+
align-items: center;
|
|
82
|
+
}
|
|
83
|
+
.statisfaction-item{
|
|
84
|
+
color: #616161;
|
|
85
|
+
min-width: 60px;
|
|
86
|
+
padding: 0 10px;
|
|
87
|
+
height: 29px;
|
|
88
|
+
background: #FFFFFF;
|
|
89
|
+
border: 1px solid #BEC5DB;
|
|
90
|
+
border-radius: 14px;
|
|
91
|
+
cursor:pointer;
|
|
92
|
+
display: flex;
|
|
93
|
+
align-items: center;
|
|
94
|
+
justify-content: center;
|
|
95
|
+
}
|
|
96
|
+
.statisfaction-item:first-child{
|
|
97
|
+
margin-right: 8px;
|
|
98
|
+
}
|
|
99
|
+
.check-satisfied{
|
|
100
|
+
border: 1px solid #BBCDFF;
|
|
101
|
+
color: #366aff;
|
|
102
|
+
}
|
|
103
|
+
.end{
|
|
104
|
+
border-bottom-left-radius: 25px !important;
|
|
105
|
+
border-bottom-right-radius: 25px !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
108
|
</style>
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="action-send-to-bot"
|
|
4
|
-
>
|
|
5
|
-
<p class="bot-des" v-html="msg.content.description"></p>
|
|
6
|
-
<div class="options-list">
|
|
7
|
-
<p
|
|
8
|
-
v-for="(option, index) in msg.content.options"
|
|
9
|
-
class="options-item"
|
|
10
|
-
:class="index!==msg.content.options.length -1?'recommend-item':'last-item'"
|
|
11
|
-
:key="msg.nodeId + '_' + index"
|
|
12
|
-
@click="$emit('onRadioClick2', option.content, option.name, msg.apiKey)"
|
|
13
|
-
>
|
|
14
|
-
{{ option.name }}<i class="arsenal_icon arsenalangle-right-solid"></i>
|
|
15
|
-
</p>
|
|
16
|
-
</div>
|
|
17
|
-
|
|
18
|
-
</div>
|
|
19
|
-
</template>
|
|
20
|
-
|
|
21
|
-
<script>
|
|
22
|
-
export default {
|
|
23
|
-
name: "actionSendToBot",
|
|
24
|
-
props:['msg']
|
|
25
|
-
}
|
|
26
|
-
</script>
|
|
27
|
-
|
|
28
|
-
<style scoped lang="less">
|
|
29
|
-
.action-send-to-bot{
|
|
30
|
-
.bot-des {
|
|
31
|
-
word-wrap: break-word;
|
|
32
|
-
word-break: break-all;
|
|
33
|
-
overflow: hidden;
|
|
34
|
-
padding: 8px 10px 10px 0;
|
|
35
|
-
height: auto;
|
|
36
|
-
border-bottom: 1px solid #EEEEEE;
|
|
37
|
-
}
|
|
38
|
-
.options-list{
|
|
39
|
-
padding-top: 4px;
|
|
40
|
-
/* padding-top: 10px;*/
|
|
41
|
-
/*padding-right: 10px;*/
|
|
42
|
-
.options-item{
|
|
43
|
-
height: 25px;
|
|
44
|
-
line-height: 25px;
|
|
45
|
-
background-color: #ffffff;
|
|
46
|
-
color: #366aff;
|
|
47
|
-
cursor:pointer;
|
|
48
|
-
display: flex;
|
|
49
|
-
align-items: center;
|
|
50
|
-
justify-content: space-between;
|
|
51
|
-
i{
|
|
52
|
-
padding-left: 10px;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
.recommend-item{
|
|
56
|
-
padding: 8px 0;
|
|
57
|
-
}
|
|
58
|
-
.last-item{
|
|
59
|
-
padding-top: 8px;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="action-send-to-bot"
|
|
4
|
+
>
|
|
5
|
+
<p class="bot-des" v-html="msg.content.description"></p>
|
|
6
|
+
<div class="options-list">
|
|
7
|
+
<p
|
|
8
|
+
v-for="(option, index) in msg.content.options"
|
|
9
|
+
class="options-item"
|
|
10
|
+
:class="index!==msg.content.options.length -1?'recommend-item':'last-item'"
|
|
11
|
+
:key="msg.nodeId + '_' + index"
|
|
12
|
+
@click="$emit('onRadioClick2', option.content, option.name, msg.apiKey)"
|
|
13
|
+
>
|
|
14
|
+
{{ option.name }}<i class="arsenal_icon arsenalangle-right-solid"></i>
|
|
15
|
+
</p>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
</div>
|
|
19
|
+
</template>
|
|
20
|
+
|
|
21
|
+
<script>
|
|
22
|
+
export default {
|
|
23
|
+
name: "actionSendToBot",
|
|
24
|
+
props:['msg']
|
|
25
|
+
}
|
|
26
|
+
</script>
|
|
27
|
+
|
|
28
|
+
<style scoped lang="less">
|
|
29
|
+
.action-send-to-bot{
|
|
30
|
+
.bot-des {
|
|
31
|
+
word-wrap: break-word;
|
|
32
|
+
word-break: break-all;
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
padding: 8px 10px 10px 0;
|
|
35
|
+
height: auto;
|
|
36
|
+
border-bottom: 1px solid #EEEEEE;
|
|
37
|
+
}
|
|
38
|
+
.options-list{
|
|
39
|
+
padding-top: 4px;
|
|
40
|
+
/* padding-top: 10px;*/
|
|
41
|
+
/*padding-right: 10px;*/
|
|
42
|
+
.options-item{
|
|
43
|
+
height: 25px;
|
|
44
|
+
line-height: 25px;
|
|
45
|
+
background-color: #ffffff;
|
|
46
|
+
color: #366aff;
|
|
47
|
+
cursor:pointer;
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
justify-content: space-between;
|
|
51
|
+
i{
|
|
52
|
+
padding-left: 10px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
.recommend-item{
|
|
56
|
+
padding: 8px 0;
|
|
57
|
+
}
|
|
58
|
+
.last-item{
|
|
59
|
+
padding-top: 8px;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
63
|
</style>
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="answer-dissatisfaction">
|
|
3
|
-
<p class="satisfaction-reply-text" v-if="msg.content.replyText" v-html="msg.content.replyText"></p>
|
|
4
|
-
<p
|
|
5
|
-
v-for="(option, index) in msg.content.replyOptions"
|
|
6
|
-
class="statisfaction-item"
|
|
7
|
-
:key="index"
|
|
8
|
-
@click="sendDissatisfaction(option,msg.apiKey)">
|
|
9
|
-
{{ option.name }}<i class="arsenal_icon arsenalangle-right-solid"></i>
|
|
10
|
-
</p>
|
|
11
|
-
</div>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script>
|
|
15
|
-
export default {
|
|
16
|
-
name: "answerDissatisfaction",
|
|
17
|
-
data(){
|
|
18
|
-
return{
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
props:['msg'],
|
|
23
|
-
methods:{
|
|
24
|
-
sendDissatisfaction(option,apiKey){
|
|
25
|
-
this.$emit('sendDissatisfaction',option,apiKey)
|
|
26
|
-
/*let value = JSON.stringify({
|
|
27
|
-
input: option.name,
|
|
28
|
-
reply_text: option.answer
|
|
29
|
-
});
|
|
30
|
-
this.$emit('sendMessage','USER_ACTION_TO_DISSATISFACTION_V2',value,null,apiKey);*/
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
</script>
|
|
35
|
-
|
|
36
|
-
<style scoped lang="less">
|
|
37
|
-
.answer-dissatisfaction{
|
|
38
|
-
min-width: 100px;
|
|
39
|
-
.satisfaction-reply-text{
|
|
40
|
-
word-wrap: break-word;
|
|
41
|
-
word-break: break-all;
|
|
42
|
-
overflow: hidden;
|
|
43
|
-
padding: 8px 0 10px 0;
|
|
44
|
-
height: auto;
|
|
45
|
-
border-bottom: 1px solid #EEEEEE;
|
|
46
|
-
}
|
|
47
|
-
.statisfaction-item{
|
|
48
|
-
padding: 8px 0;
|
|
49
|
-
height: 25px;
|
|
50
|
-
line-height: 25px;
|
|
51
|
-
background-color: #ffffff;
|
|
52
|
-
color: #366aff;
|
|
53
|
-
cursor:pointer;
|
|
54
|
-
display: flex;
|
|
55
|
-
align-items: center;
|
|
56
|
-
justify-content: space-between;
|
|
57
|
-
}
|
|
58
|
-
.end{
|
|
59
|
-
border-bottom-left-radius: 25px !important;
|
|
60
|
-
border-bottom-right-radius: 25px !important;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
1
|
+
<template>
|
|
2
|
+
<div class="answer-dissatisfaction">
|
|
3
|
+
<p class="satisfaction-reply-text" v-if="msg.content.replyText" v-html="msg.content.replyText"></p>
|
|
4
|
+
<p
|
|
5
|
+
v-for="(option, index) in msg.content.replyOptions"
|
|
6
|
+
class="statisfaction-item"
|
|
7
|
+
:key="index"
|
|
8
|
+
@click="sendDissatisfaction(option,msg.apiKey)">
|
|
9
|
+
{{ option.name }}<i class="arsenal_icon arsenalangle-right-solid"></i>
|
|
10
|
+
</p>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
export default {
|
|
16
|
+
name: "answerDissatisfaction",
|
|
17
|
+
data(){
|
|
18
|
+
return{
|
|
19
|
+
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
props:['msg'],
|
|
23
|
+
methods:{
|
|
24
|
+
sendDissatisfaction(option,apiKey){
|
|
25
|
+
this.$emit('sendDissatisfaction',option,apiKey)
|
|
26
|
+
/*let value = JSON.stringify({
|
|
27
|
+
input: option.name,
|
|
28
|
+
reply_text: option.answer
|
|
29
|
+
});
|
|
30
|
+
this.$emit('sendMessage','USER_ACTION_TO_DISSATISFACTION_V2',value,null,apiKey);*/
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
</script>
|
|
35
|
+
|
|
36
|
+
<style scoped lang="less">
|
|
37
|
+
.answer-dissatisfaction{
|
|
38
|
+
min-width: 100px;
|
|
39
|
+
.satisfaction-reply-text{
|
|
40
|
+
word-wrap: break-word;
|
|
41
|
+
word-break: break-all;
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
padding: 8px 0 10px 0;
|
|
44
|
+
height: auto;
|
|
45
|
+
border-bottom: 1px solid #EEEEEE;
|
|
46
|
+
}
|
|
47
|
+
.statisfaction-item{
|
|
48
|
+
padding: 8px 0;
|
|
49
|
+
height: 25px;
|
|
50
|
+
line-height: 25px;
|
|
51
|
+
background-color: #ffffff;
|
|
52
|
+
color: #366aff;
|
|
53
|
+
cursor:pointer;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
justify-content: space-between;
|
|
57
|
+
}
|
|
58
|
+
.end{
|
|
59
|
+
border-bottom-left-radius: 25px !important;
|
|
60
|
+
border-bottom-right-radius: 25px !important;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
63
|
</style>
|