askbot-dragon 1.7.84-beta → 1.7.85-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 +60 -58
- package/public/index.html +73 -76
- 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 +141 -117
- package/src/assets/js/Base64Util.js +22 -22
- package/src/assets/js/common.js +261 -261
- package/src/assets/js/hammer.js +100 -89
- package/src/assets/js/script.js +36 -36
- package/src/assets/less/common.css +6773 -6773
- package/src/assets/less/converSationContainer/common.less +199 -192
- 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 +178 -155
- package/src/components/AiGuide.vue +434 -471
- package/src/components/AnswerDocknowledge.vue +1203 -1203
- package/src/components/AnswerVoice.vue +285 -285
- package/src/components/AskIFrame.vue +15 -15
- package/src/components/ConversationContainer.vue +10684 -10880
- package/src/components/FileType.vue +86 -86
- package/src/components/Message.vue +27 -27
- package/src/components/MyEditor.vue +342 -341
- package/src/components/QwFeedback.vue +302 -302
- 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 +259 -259
- 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 -139
- package/src/components/assetDetails.vue +378 -378
- package/src/components/assetMessage.vue +229 -229
- package/src/components/associationIntention.vue +378 -374
- 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 +3522 -3518
- package/src/components/imgView.vue +31 -31
- package/src/components/intelligentSummary.vue +234 -230
- package/src/components/kkview.vue +1128 -1128
- package/src/components/loadingProcess.vue +164 -164
- package/src/components/markDownText.vue +959 -960
- package/src/components/message/ActionAlertIframe.vue +112 -112
- package/src/components/message/ShopMessage.vue +164 -164
- package/src/components/message/TextMessage.vue +928 -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 +73 -73
- package/src/components/newPdfPosition.vue +878 -0
- package/src/components/pagination.vue +128 -128
- package/src/components/pdfPosition.vue +1514 -1336
- package/src/components/popup.vue +228 -228
- package/src/components/preview/docView.vue +122 -113
- package/src/components/preview/excelView.vue +206 -198
- package/src/components/preview/newPositionPreview.vue +390 -388
- package/src/components/preview/pdfView.vue +831 -831
- package/src/components/previewDoc.vue +252 -248
- package/src/components/previewPdf.vue +1119 -1119
- package/src/components/receiverMessagePlatform.vue +69 -69
- 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 +58 -58
- 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 +307 -307
- package/src/components/utils/AliyunIssUtil.js +103 -103
- package/src/components/utils/ckeditor.js +185 -185
- 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 +347 -343
- package/src/components/welcomeLlmCard.vue +144 -140
- package/src/components/welcomeSuggest.vue +97 -97
- package/src/locales/cn.json +98 -98
- package/src/locales/en.json +98 -98
- package/src/locales/jp.json +73 -0
- package/src/main.js +76 -76
- package/vue.config.js +54 -54
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="container">
|
|
3
|
-
<div class="top-container">
|
|
4
|
-
<div class="close" @click="handleClose">{{ $t('dragonCommon.cancel') }}</div>
|
|
5
|
-
<div class="sure" @click="handleConfirm">{{ $t('dragonCommon.confirm') }}</div>
|
|
6
|
-
</div>
|
|
7
|
-
<van-list
|
|
8
|
-
v-model="loading"
|
|
9
|
-
:finished="finished"
|
|
10
|
-
:finished-text="$t('dragonCommon.noMore')"
|
|
11
|
-
:offset="1"
|
|
12
|
-
@load="onLoad"
|
|
13
|
-
class="list-container"
|
|
14
|
-
>
|
|
15
|
-
<van-cell v-for="item in list" :key="item.id" :title="item.name" />
|
|
16
|
-
</van-list>
|
|
17
|
-
</div>
|
|
18
|
-
</template>
|
|
19
|
-
<script>
|
|
20
|
-
export default {
|
|
21
|
-
props: {
|
|
22
|
-
finished:{
|
|
23
|
-
type: Boolean,
|
|
24
|
-
default: false
|
|
25
|
-
},
|
|
26
|
-
list:{
|
|
27
|
-
type:Array,
|
|
28
|
-
default:() =>{
|
|
29
|
-
return []
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
data() {
|
|
34
|
-
return {
|
|
35
|
-
show: false,
|
|
36
|
-
loading: false
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
methods: {
|
|
40
|
-
onload() {
|
|
41
|
-
this.$emit('onload')
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
mounted() {
|
|
45
|
-
this.$i18n.locale = sessionStorage.getItem("systemLanguage") || 'cn';
|
|
46
|
-
},
|
|
47
|
-
}
|
|
48
|
-
</script>
|
|
49
|
-
|
|
50
|
-
<style lang="less" scoped>
|
|
51
|
-
.container {
|
|
52
|
-
width: 100%;
|
|
53
|
-
height: 100%;
|
|
54
|
-
.top-container {
|
|
55
|
-
width: 100%;
|
|
56
|
-
height: 50px;
|
|
57
|
-
display: flex;
|
|
58
|
-
align-items: center;
|
|
59
|
-
justify-content: space-between;
|
|
60
|
-
padding: 0 20px;
|
|
61
|
-
box-sizing: border-box;
|
|
62
|
-
.sure {
|
|
63
|
-
color: #366aff;
|
|
64
|
-
}
|
|
65
|
-
.close {
|
|
66
|
-
color: #cccccc;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
.list-container {
|
|
70
|
-
width: 100%;
|
|
71
|
-
height: calc(100% - 50px);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
<template>
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="top-container">
|
|
4
|
+
<div class="close" @click="handleClose">{{ $t('dragonCommon.cancel') }}</div>
|
|
5
|
+
<div class="sure" @click="handleConfirm">{{ $t('dragonCommon.confirm') }}</div>
|
|
6
|
+
</div>
|
|
7
|
+
<van-list
|
|
8
|
+
v-model="loading"
|
|
9
|
+
:finished="finished"
|
|
10
|
+
:finished-text="$t('dragonCommon.noMore')"
|
|
11
|
+
:offset="1"
|
|
12
|
+
@load="onLoad"
|
|
13
|
+
class="list-container"
|
|
14
|
+
>
|
|
15
|
+
<van-cell v-for="item in list" :key="item.id" :title="item.name" />
|
|
16
|
+
</van-list>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
<script>
|
|
20
|
+
export default {
|
|
21
|
+
props: {
|
|
22
|
+
finished:{
|
|
23
|
+
type: Boolean,
|
|
24
|
+
default: false
|
|
25
|
+
},
|
|
26
|
+
list:{
|
|
27
|
+
type:Array,
|
|
28
|
+
default:() =>{
|
|
29
|
+
return []
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
data() {
|
|
34
|
+
return {
|
|
35
|
+
show: false,
|
|
36
|
+
loading: false
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
methods: {
|
|
40
|
+
onload() {
|
|
41
|
+
this.$emit('onload')
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
mounted() {
|
|
45
|
+
this.$i18n.locale = sessionStorage.getItem("systemLanguage") || 'cn';
|
|
46
|
+
},
|
|
47
|
+
}
|
|
48
|
+
</script>
|
|
49
|
+
|
|
50
|
+
<style lang="less" scoped>
|
|
51
|
+
.container {
|
|
52
|
+
width: 100%;
|
|
53
|
+
height: 100%;
|
|
54
|
+
.top-container {
|
|
55
|
+
width: 100%;
|
|
56
|
+
height: 50px;
|
|
57
|
+
display: flex;
|
|
58
|
+
align-items: center;
|
|
59
|
+
justify-content: space-between;
|
|
60
|
+
padding: 0 20px;
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
.sure {
|
|
63
|
+
color: #366aff;
|
|
64
|
+
}
|
|
65
|
+
.close {
|
|
66
|
+
color: #cccccc;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.list-container {
|
|
70
|
+
width: 100%;
|
|
71
|
+
height: calc(100% - 50px);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
74
|
</style>
|