askbot-dragon 1.7.65-beta → 1.7.67-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 +57 -57
- package/public/index.html +73 -73
- 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 -141
- 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 +178 -178
- package/src/components/AiGuide.vue +434 -434
- 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 +10764 -10764
- package/src/components/FileType.vue +86 -86
- package/src/components/Message.vue +27 -27
- package/src/components/MyEditor.vue +342 -342
- 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 -162
- package/src/components/assetDetails.vue +378 -378
- package/src/components/assetMessage.vue +229 -229
- package/src/components/associationIntention.vue +378 -378
- 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 +3512 -3512
- package/src/components/imgView.vue +31 -31
- package/src/components/intelligentSummary.vue +234 -234
- package/src/components/kkview.vue +1138 -1138
- package/src/components/loadingProcess.vue +164 -164
- package/src/components/markDownText.vue +357 -357
- package/src/components/message/ActionAlertIframe.vue +112 -112
- package/src/components/message/ShopMessage.vue +164 -164
- package/src/components/message/TextMessage.vue +928 -928
- 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 +877 -877
- package/src/components/pagination.vue +128 -128
- package/src/components/pdfPosition.vue +1523 -1523
- package/src/components/popup.vue +228 -228
- package/src/components/preview/docView.vue +113 -113
- package/src/components/preview/excelView.vue +190 -190
- package/src/components/preview/newPositionPreview.vue +384 -369
- package/src/components/preview/pdfView.vue +824 -824
- package/src/components/previewDoc.vue +252 -252
- package/src/components/previewPdf.vue +1087 -1087
- 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 -347
- package/src/components/welcomeLlmCard.vue +144 -144
- package/src/components/welcomeSuggest.vue +97 -97
- package/src/locales/cn.json +95 -95
- package/src/locales/en.json +95 -95
- package/src/locales/jp.json +72 -72
- package/src/main.js +76 -76
- package/vue.config.js +54 -54
|
@@ -1,129 +1,129 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="pagination">
|
|
3
|
-
<el-pagination
|
|
4
|
-
@size-change="handleSizeChange"
|
|
5
|
-
@current-change="currentChange"
|
|
6
|
-
:current-page.sync="currentPages"
|
|
7
|
-
:page-size="pageSize"
|
|
8
|
-
layout="slot, prev, pager, next"
|
|
9
|
-
:total="total">
|
|
10
|
-
<span class="total-class">共 {{total}} 条数据</span>
|
|
11
|
-
</el-pagination>
|
|
12
|
-
</div>
|
|
13
|
-
</template>
|
|
14
|
-
|
|
15
|
-
<script>
|
|
16
|
-
export default {
|
|
17
|
-
name: "paginationPage",
|
|
18
|
-
data(){
|
|
19
|
-
return{
|
|
20
|
-
currentPages:1
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
props:['pageSize','currentPage','total',"isReportForm"],
|
|
24
|
-
watch:{
|
|
25
|
-
currentPage: {
|
|
26
|
-
handler(val){
|
|
27
|
-
this.currentPages = val
|
|
28
|
-
},
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
mounted() {
|
|
33
|
-
this.currentPages = this.currentPage
|
|
34
|
-
},
|
|
35
|
-
methods:{
|
|
36
|
-
handleSizeChange(value){
|
|
37
|
-
this.$emit('handleSizeChange',value)
|
|
38
|
-
},
|
|
39
|
-
currentChange(value){
|
|
40
|
-
this.$emit('currentChange',value)
|
|
41
|
-
},
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
</script>
|
|
45
|
-
|
|
46
|
-
<style scoped lang="less">
|
|
47
|
-
#pagination{
|
|
48
|
-
.total-class{
|
|
49
|
-
margin-right: 13px;
|
|
50
|
-
font-weight: 400;
|
|
51
|
-
}
|
|
52
|
-
position: absolute;
|
|
53
|
-
bottom: 0px;
|
|
54
|
-
right: 0;
|
|
55
|
-
width: 100%;
|
|
56
|
-
display: flex;
|
|
57
|
-
align-items: center;
|
|
58
|
-
justify-content: center;
|
|
59
|
-
height: 50px;
|
|
60
|
-
background-color: white;
|
|
61
|
-
box-shadow: 0px 0px 18px 0px rgba(29, 55, 129, 0.07);
|
|
62
|
-
border-radius: 5px;
|
|
63
|
-
/deep/.el-pager{
|
|
64
|
-
background: #EDF0F6;
|
|
65
|
-
border-radius: 15px;
|
|
66
|
-
}
|
|
67
|
-
/deep/.el-pagination.is-background .btn-next{
|
|
68
|
-
width: 30px;
|
|
69
|
-
height: 30px;
|
|
70
|
-
background: #EDF0F6;
|
|
71
|
-
border-radius: 50%;
|
|
72
|
-
}
|
|
73
|
-
/deep/.el-pagination .btn-next{
|
|
74
|
-
width: 30px;
|
|
75
|
-
height: 30px;
|
|
76
|
-
background: #EDF0F6;
|
|
77
|
-
border-radius: 50%;
|
|
78
|
-
padding-left: 0;
|
|
79
|
-
margin-left:5px ;
|
|
80
|
-
}
|
|
81
|
-
/deep/.el-pagination .btn-prev{
|
|
82
|
-
width: 30px;
|
|
83
|
-
height: 30px;
|
|
84
|
-
background: #EDF0F6;
|
|
85
|
-
border-radius: 50%;
|
|
86
|
-
padding-right: 0;
|
|
87
|
-
margin-right:5px ;
|
|
88
|
-
}
|
|
89
|
-
/deep/.el-pagination button{
|
|
90
|
-
padding: 0;
|
|
91
|
-
min-width: 30px;
|
|
92
|
-
}
|
|
93
|
-
/deep/.el-pager li{
|
|
94
|
-
background: #EDF0F6;
|
|
95
|
-
height: 30px;
|
|
96
|
-
min-width: 30px;
|
|
97
|
-
line-height: 30px;
|
|
98
|
-
font-size: 12px;
|
|
99
|
-
color: #717b90;
|
|
100
|
-
}
|
|
101
|
-
/deep/.el-pager li:first-child{
|
|
102
|
-
border-bottom-left-radius: 15px!important;
|
|
103
|
-
border-top-left-radius: 15px!important;
|
|
104
|
-
}
|
|
105
|
-
/deep/.el-pager li:last-child{
|
|
106
|
-
border-top-right-radius: 15px!important;
|
|
107
|
-
border-bottom-right-radius: 15px!important;
|
|
108
|
-
}
|
|
109
|
-
/deep/.el-pager li.active{
|
|
110
|
-
width: 30px;
|
|
111
|
-
height: 30px;
|
|
112
|
-
min-width: 30px;
|
|
113
|
-
background: #366AFF;
|
|
114
|
-
border: 3px solid #A1B9FF;
|
|
115
|
-
border-radius: 50%;
|
|
116
|
-
line-height: 24px;
|
|
117
|
-
color: white;
|
|
118
|
-
}
|
|
119
|
-
/deep/.el-pagination.is-background .el-pager li:not(.disabled).active{
|
|
120
|
-
background: #366AFF;
|
|
121
|
-
|
|
122
|
-
}
|
|
123
|
-
/deep/.el-pagination button:disabled{
|
|
124
|
-
i{
|
|
125
|
-
cursor: no-drop;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
1
|
+
<template>
|
|
2
|
+
<div id="pagination">
|
|
3
|
+
<el-pagination
|
|
4
|
+
@size-change="handleSizeChange"
|
|
5
|
+
@current-change="currentChange"
|
|
6
|
+
:current-page.sync="currentPages"
|
|
7
|
+
:page-size="pageSize"
|
|
8
|
+
layout="slot, prev, pager, next"
|
|
9
|
+
:total="total">
|
|
10
|
+
<span class="total-class">共 {{total}} 条数据</span>
|
|
11
|
+
</el-pagination>
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
export default {
|
|
17
|
+
name: "paginationPage",
|
|
18
|
+
data(){
|
|
19
|
+
return{
|
|
20
|
+
currentPages:1
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
props:['pageSize','currentPage','total',"isReportForm"],
|
|
24
|
+
watch:{
|
|
25
|
+
currentPage: {
|
|
26
|
+
handler(val){
|
|
27
|
+
this.currentPages = val
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
},
|
|
32
|
+
mounted() {
|
|
33
|
+
this.currentPages = this.currentPage
|
|
34
|
+
},
|
|
35
|
+
methods:{
|
|
36
|
+
handleSizeChange(value){
|
|
37
|
+
this.$emit('handleSizeChange',value)
|
|
38
|
+
},
|
|
39
|
+
currentChange(value){
|
|
40
|
+
this.$emit('currentChange',value)
|
|
41
|
+
},
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
</script>
|
|
45
|
+
|
|
46
|
+
<style scoped lang="less">
|
|
47
|
+
#pagination{
|
|
48
|
+
.total-class{
|
|
49
|
+
margin-right: 13px;
|
|
50
|
+
font-weight: 400;
|
|
51
|
+
}
|
|
52
|
+
position: absolute;
|
|
53
|
+
bottom: 0px;
|
|
54
|
+
right: 0;
|
|
55
|
+
width: 100%;
|
|
56
|
+
display: flex;
|
|
57
|
+
align-items: center;
|
|
58
|
+
justify-content: center;
|
|
59
|
+
height: 50px;
|
|
60
|
+
background-color: white;
|
|
61
|
+
box-shadow: 0px 0px 18px 0px rgba(29, 55, 129, 0.07);
|
|
62
|
+
border-radius: 5px;
|
|
63
|
+
/deep/.el-pager{
|
|
64
|
+
background: #EDF0F6;
|
|
65
|
+
border-radius: 15px;
|
|
66
|
+
}
|
|
67
|
+
/deep/.el-pagination.is-background .btn-next{
|
|
68
|
+
width: 30px;
|
|
69
|
+
height: 30px;
|
|
70
|
+
background: #EDF0F6;
|
|
71
|
+
border-radius: 50%;
|
|
72
|
+
}
|
|
73
|
+
/deep/.el-pagination .btn-next{
|
|
74
|
+
width: 30px;
|
|
75
|
+
height: 30px;
|
|
76
|
+
background: #EDF0F6;
|
|
77
|
+
border-radius: 50%;
|
|
78
|
+
padding-left: 0;
|
|
79
|
+
margin-left:5px ;
|
|
80
|
+
}
|
|
81
|
+
/deep/.el-pagination .btn-prev{
|
|
82
|
+
width: 30px;
|
|
83
|
+
height: 30px;
|
|
84
|
+
background: #EDF0F6;
|
|
85
|
+
border-radius: 50%;
|
|
86
|
+
padding-right: 0;
|
|
87
|
+
margin-right:5px ;
|
|
88
|
+
}
|
|
89
|
+
/deep/.el-pagination button{
|
|
90
|
+
padding: 0;
|
|
91
|
+
min-width: 30px;
|
|
92
|
+
}
|
|
93
|
+
/deep/.el-pager li{
|
|
94
|
+
background: #EDF0F6;
|
|
95
|
+
height: 30px;
|
|
96
|
+
min-width: 30px;
|
|
97
|
+
line-height: 30px;
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
color: #717b90;
|
|
100
|
+
}
|
|
101
|
+
/deep/.el-pager li:first-child{
|
|
102
|
+
border-bottom-left-radius: 15px!important;
|
|
103
|
+
border-top-left-radius: 15px!important;
|
|
104
|
+
}
|
|
105
|
+
/deep/.el-pager li:last-child{
|
|
106
|
+
border-top-right-radius: 15px!important;
|
|
107
|
+
border-bottom-right-radius: 15px!important;
|
|
108
|
+
}
|
|
109
|
+
/deep/.el-pager li.active{
|
|
110
|
+
width: 30px;
|
|
111
|
+
height: 30px;
|
|
112
|
+
min-width: 30px;
|
|
113
|
+
background: #366AFF;
|
|
114
|
+
border: 3px solid #A1B9FF;
|
|
115
|
+
border-radius: 50%;
|
|
116
|
+
line-height: 24px;
|
|
117
|
+
color: white;
|
|
118
|
+
}
|
|
119
|
+
/deep/.el-pagination.is-background .el-pager li:not(.disabled).active{
|
|
120
|
+
background: #366AFF;
|
|
121
|
+
|
|
122
|
+
}
|
|
123
|
+
/deep/.el-pagination button:disabled{
|
|
124
|
+
i{
|
|
125
|
+
cursor: no-drop;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
129
|
</style>
|