askbot-dragon 1.0.12 → 1.0.13

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.
Files changed (77) hide show
  1. package/README.md +27 -27
  2. package/babel.config.js +6 -6
  3. package/dragon.iml +7 -7
  4. package/package.json +56 -56
  5. package/public/index.html +43 -43
  6. package/src/App.vue +31 -31
  7. package/src/api/index.js +1 -1
  8. package/src/api/mock.http +2 -2
  9. package/src/api/requestUrl.js +185 -185
  10. package/src/assets/js/AliyunlssUtil.js +92 -92
  11. package/src/assets/js/Base64Util.js +22 -22
  12. package/src/assets/js/script.js +36 -36
  13. package/src/assets/less/common.css +6773 -6773
  14. package/src/assets/less/converSationContainer/common.less +191 -191
  15. package/src/assets/less/converSationContainer/converSatonContainer.less +493 -493
  16. package/src/assets/less/iconfont.css +37 -37
  17. package/src/assets/less/ticketMessage.less +211 -211
  18. package/src/components/ActionAlertIframe.vue +112 -112
  19. package/src/components/AiGuide.vue +467 -467
  20. package/src/components/AskIFrame.vue +15 -15
  21. package/src/components/ConversationContainer.vue +4617 -4617
  22. package/src/components/FileType.vue +86 -86
  23. package/src/components/Message.vue +27 -27
  24. package/src/components/actionSatisfaction.vue +107 -107
  25. package/src/components/actionSendToBot.vue +62 -62
  26. package/src/components/answerDissatisfaction.vue +62 -62
  27. package/src/components/answerRadio.vue +76 -76
  28. package/src/components/ask-components/DissatisfactionOptions.vue +57 -57
  29. package/src/components/ask-components/Msgloading.vue +37 -37
  30. package/src/components/ask-components/SatisfactionV2.vue +15 -15
  31. package/src/components/askVideo.vue +138 -138
  32. package/src/components/assetDetails.vue +370 -370
  33. package/src/components/assetMessage.vue +228 -228
  34. package/src/components/associationIntention.vue +243 -241
  35. package/src/components/botActionSatisfactor.vue +68 -68
  36. package/src/components/chatContent.vue +513 -513
  37. package/src/components/feedBack.vue +136 -136
  38. package/src/components/fielListView.vue +346 -346
  39. package/src/components/file/AliyunOssComponents.vue +108 -108
  40. package/src/components/formTemplate.vue +3344 -3342
  41. package/src/components/loadingProcess.vue +164 -164
  42. package/src/components/message/ActionAlertIframe.vue +112 -112
  43. package/src/components/message/ShopMessage.vue +164 -164
  44. package/src/components/message/TextMessage.vue +924 -924
  45. package/src/components/message/TicketMessage.vue +177 -177
  46. package/src/components/message/swiper/index.js +4 -4
  47. package/src/components/message/swiper/ticketSwiper.vue +503 -503
  48. package/src/components/message/swiper/ticketSwiperItem.vue +61 -61
  49. package/src/components/msgLoading.vue +231 -231
  50. package/src/components/myPopup.vue +70 -70
  51. package/src/components/popup.vue +227 -227
  52. package/src/components/receiverMessagePlatform.vue +65 -65
  53. package/src/components/recommend.vue +89 -89
  54. package/src/components/selector/hOption.vue +20 -20
  55. package/src/components/selector/hSelector.vue +199 -199
  56. package/src/components/selector/hWrapper.vue +216 -216
  57. package/src/components/senderMessagePlatform.vue +50 -50
  58. package/src/components/source/BotMessage.vue +24 -24
  59. package/src/components/source/CustomMessage.vue +24 -24
  60. package/src/components/test.vue +260 -260
  61. package/src/components/tree.vue +247 -247
  62. package/src/components/utils/AliyunIssUtil.js +72 -72
  63. package/src/components/utils/ckeditor.js +155 -153
  64. package/src/components/utils/ckeditorImageUpload/command.js +109 -109
  65. package/src/components/utils/ckeditorImageUpload/editing.js +11 -11
  66. package/src/components/utils/ckeditorImageUpload/plugin-image.js +11 -11
  67. package/src/components/utils/ckeditorImageUpload/toolbar-ui.js +40 -40
  68. package/src/components/utils/ckeditorfileUpload/common.js +111 -111
  69. package/src/components/utils/ckeditorfileUpload/editing.js +11 -11
  70. package/src/components/utils/ckeditorfileUpload/plugin_file.js +11 -11
  71. package/src/components/utils/ckeditorfileUpload/toolbar_ui.js +34 -34
  72. package/src/components/utils/format_date.js +25 -25
  73. package/src/components/utils/index.js +6 -6
  74. package/src/components/utils/math_utils.js +29 -29
  75. package/src/components/voiceComponent.vue +119 -119
  76. package/src/main.js +60 -60
  77. package/vue.config.js +47 -47
@@ -1,37 +1,37 @@
1
- @font-face {
2
- font-family: 'iconfont'; /* Project id 2913049 */
3
- src: url('//at.alicdn.com/t/font_2913049_aukej8oi7nm.woff2?t=1647920908718') format('woff2'),
4
- url('//at.alicdn.com/t/font_2913049_aukej8oi7nm.woff?t=1647920908718') format('woff'),
5
- url('//at.alicdn.com/t/font_2913049_aukej8oi7nm.ttf?t=1647920908718') format('truetype');
6
- }
7
-
8
- .iconfont {
9
- font-family: "iconfont" !important;
10
- font-size: 16px;
11
- font-style: normal;
12
- -webkit-font-smoothing: antialiased;
13
- -moz-osx-font-smoothing: grayscale;
14
- }
15
- .guoran-arsenalchess-pawn-solid1:before {
16
- content: "\e77f";
17
- }
18
-
19
- .guoran-biaoqian:before {
20
- content: '\e79f';
21
- }
22
- .guoran-miaoshu:before {
23
- content: '\e799';
24
- }
25
- .guoran-xinghao:before {
26
- content: '\e7a7';
27
- }
28
- .guoran-geren:before {
29
- content: '\e745';
30
- }
31
- .guoran-bumen:before {
32
- content: '\e79e';
33
- }
34
- .guoran-guanlizhe:before {
35
- content: '\e79a';
36
- }
37
-
1
+ @font-face {
2
+ font-family: 'iconfont'; /* Project id 2913049 */
3
+ src: url('//at.alicdn.com/t/font_2913049_aukej8oi7nm.woff2?t=1647920908718') format('woff2'),
4
+ url('//at.alicdn.com/t/font_2913049_aukej8oi7nm.woff?t=1647920908718') format('woff'),
5
+ url('//at.alicdn.com/t/font_2913049_aukej8oi7nm.ttf?t=1647920908718') format('truetype');
6
+ }
7
+
8
+ .iconfont {
9
+ font-family: "iconfont" !important;
10
+ font-size: 16px;
11
+ font-style: normal;
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+ .guoran-arsenalchess-pawn-solid1:before {
16
+ content: "\e77f";
17
+ }
18
+
19
+ .guoran-biaoqian:before {
20
+ content: '\e79f';
21
+ }
22
+ .guoran-miaoshu:before {
23
+ content: '\e799';
24
+ }
25
+ .guoran-xinghao:before {
26
+ content: '\e7a7';
27
+ }
28
+ .guoran-geren:before {
29
+ content: '\e745';
30
+ }
31
+ .guoran-bumen:before {
32
+ content: '\e79e';
33
+ }
34
+ .guoran-guanlizhe:before {
35
+ content: '\e79a';
36
+ }
37
+
@@ -1,211 +1,211 @@
1
-
2
-
3
- .ticketMessageContain{
4
- .htmlClass{
5
- padding-bottom: 12px;
6
- }
7
- .button-item{
8
- display: flex;
9
- align-content: center;
10
- justify-content: center;
11
- margin-bottom: 14px;
12
- }
13
- .button-item:last-child{
14
- margin-bottom: 0!important;
15
- }
16
- .buttonClassItem{
17
- width: 178px;
18
- /* padding: 0px 30px;*/
19
- height: 30px;
20
- background: #FFFFFF;
21
- border: 1px solid #BBCDFF;
22
- border-radius: 14px;
23
- color: #366aff;
24
- display: flex;
25
- align-content: center;
26
- justify-content: center;
27
- overflow: hidden;
28
- text-overflow: ellipsis;
29
- white-space: nowrap;
30
- cursor: pointer;
31
- .btn-name{
32
- display: flex;
33
- align-items: center;
34
- }
35
- }
36
- .isCompayClass{
37
- .el-divider--horizontal{
38
- margin: 8px 0 0 0 !important;
39
- height: 1.9px!important;
40
- width: 100%;
41
- }
42
- .htmlClass {
43
- .img{
44
- overflow: hidden;
45
- img{
46
- width: 300px;
47
- height:calc(400px / 2.35);
48
- }
49
- }
50
- }
51
- .singleClass{
52
- padding: 8px 0;
53
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
54
- font-size: 1em;
55
- }
56
- }
57
- .doubleClass{
58
- padding: 8px 0;
59
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
60
- font-size: 1em;
61
- }
62
- }
63
- .tripleClass{
64
- padding: 8px 0;
65
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
66
- font-size: 1em;
67
- }
68
- }
69
- .buttonClass{
70
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
71
- font-size: 1em;
72
- }
73
- }
74
- }
75
- .isPhoneClass{
76
- .el-divider--horizontal{
77
- margin: 8px 0 0 0 !important;
78
- height: 1.9px!important;
79
- width: 100%;
80
- }
81
- .htmlClass{
82
- .img{
83
- overflow: hidden;
84
- img{
85
- width: 100%;
86
- height:calc((100vw - 110px) / 2.35);
87
- object-fit: contain;
88
- }
89
- }
90
- }
91
- .isAndroidClass{
92
- .singleClass{
93
- padding: 8px 0;
94
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
95
- font-size: 1em;
96
- text-align: left;
97
- }
98
- }
99
- .doubleClass{
100
- padding: 8px 0;
101
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
102
- font-size: 1em;
103
- }
104
- }
105
- .tripleClass{
106
- padding: 8px 0;
107
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
108
- font-size: 1em;
109
- }
110
- }
111
- .buttonClass{
112
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
113
- font-size: 1em;
114
- }
115
- }
116
- }
117
- .isIosClass{
118
- .singleClass{
119
- padding: 8px 0;
120
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
121
- ffont-size: 1em;
122
- }
123
- }
124
- .doubleClass{
125
- padding: 8px 0;
126
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
127
- font-size: 1em;
128
- }
129
- }
130
- .tripleClass{
131
- padding: 8px 0;
132
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
133
- font-size: 1em;
134
- }
135
- }
136
- .buttonClass{
137
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
138
- font-size: 1em;
139
- }
140
- }
141
- }
142
- }
143
- .singleClass{
144
- display: flex;
145
- justify-content: space-between;
146
- .singleItem{
147
- padding: 0 4px;
148
- white-space: normal;
149
- word-wrap: break-word;
150
- text-align: left!important;
151
- width: 99%;
152
- }
153
- }
154
- .doubleClass{
155
- display: flex;
156
- justify-content: space-between;
157
- .doubleItem{
158
- width: 50%;
159
- padding: 0 4px;
160
- white-space: normal;
161
- word-wrap: break-word;
162
- }
163
- .doubleItem:nth-of-type(1){
164
- text-align: left;
165
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
166
- text-align: left!important;
167
- }
168
-
169
- }
170
- .doubleItem:last-child{
171
- text-align: right;
172
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
173
- text-align: right!important;
174
- }
175
- }
176
- }
177
- .tripleClass{
178
- display: flex;
179
- flex-direction: row;
180
- justify-content: space-between;
181
- align-items: center;
182
- .tripleItem{
183
- width: 33.33%;
184
- padding: 0 4px;
185
- white-space: normal;
186
- word-wrap: break-word;
187
- }
188
- .tripleItem:nth-of-type(1){
189
- text-align: left;
190
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
191
- text-align: left!important;
192
- }
193
- }
194
- .tripleItem:nth-of-type(2){
195
- text-align: center;
196
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
197
- text-align: center!important;
198
- }
199
- }
200
- .tripleItem:last-child{
201
- text-align: right;
202
- div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
203
- text-align: right!important;
204
- }
205
- }
206
- }
207
- }
208
-
209
-
210
-
211
-
1
+
2
+
3
+ .ticketMessageContain{
4
+ .htmlClass{
5
+ padding-bottom: 12px;
6
+ }
7
+ .button-item{
8
+ display: flex;
9
+ align-content: center;
10
+ justify-content: center;
11
+ margin-bottom: 14px;
12
+ }
13
+ .button-item:last-child{
14
+ margin-bottom: 0!important;
15
+ }
16
+ .buttonClassItem{
17
+ width: 178px;
18
+ /* padding: 0px 30px;*/
19
+ height: 30px;
20
+ background: #FFFFFF;
21
+ border: 1px solid #BBCDFF;
22
+ border-radius: 14px;
23
+ color: #366aff;
24
+ display: flex;
25
+ align-content: center;
26
+ justify-content: center;
27
+ overflow: hidden;
28
+ text-overflow: ellipsis;
29
+ white-space: nowrap;
30
+ cursor: pointer;
31
+ .btn-name{
32
+ display: flex;
33
+ align-items: center;
34
+ }
35
+ }
36
+ .isCompayClass{
37
+ .el-divider--horizontal{
38
+ margin: 8px 0 0 0 !important;
39
+ height: 1.9px!important;
40
+ width: 100%;
41
+ }
42
+ .htmlClass {
43
+ .img{
44
+ overflow: hidden;
45
+ img{
46
+ width: 300px;
47
+ height:calc(400px / 2.35);
48
+ }
49
+ }
50
+ }
51
+ .singleClass{
52
+ padding: 8px 0;
53
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
54
+ font-size: 1em;
55
+ }
56
+ }
57
+ .doubleClass{
58
+ padding: 8px 0;
59
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
60
+ font-size: 1em;
61
+ }
62
+ }
63
+ .tripleClass{
64
+ padding: 8px 0;
65
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
66
+ font-size: 1em;
67
+ }
68
+ }
69
+ .buttonClass{
70
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
71
+ font-size: 1em;
72
+ }
73
+ }
74
+ }
75
+ .isPhoneClass{
76
+ .el-divider--horizontal{
77
+ margin: 8px 0 0 0 !important;
78
+ height: 1.9px!important;
79
+ width: 100%;
80
+ }
81
+ .htmlClass{
82
+ .img{
83
+ overflow: hidden;
84
+ img{
85
+ width: 100%;
86
+ height:calc((100vw - 110px) / 2.35);
87
+ object-fit: contain;
88
+ }
89
+ }
90
+ }
91
+ .isAndroidClass{
92
+ .singleClass{
93
+ padding: 8px 0;
94
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
95
+ font-size: 1em;
96
+ text-align: left;
97
+ }
98
+ }
99
+ .doubleClass{
100
+ padding: 8px 0;
101
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
102
+ font-size: 1em;
103
+ }
104
+ }
105
+ .tripleClass{
106
+ padding: 8px 0;
107
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
108
+ font-size: 1em;
109
+ }
110
+ }
111
+ .buttonClass{
112
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
113
+ font-size: 1em;
114
+ }
115
+ }
116
+ }
117
+ .isIosClass{
118
+ .singleClass{
119
+ padding: 8px 0;
120
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
121
+ ffont-size: 1em;
122
+ }
123
+ }
124
+ .doubleClass{
125
+ padding: 8px 0;
126
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td{
127
+ font-size: 1em;
128
+ }
129
+ }
130
+ .tripleClass{
131
+ padding: 8px 0;
132
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
133
+ font-size: 1em;
134
+ }
135
+ }
136
+ .buttonClass{
137
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
138
+ font-size: 1em;
139
+ }
140
+ }
141
+ }
142
+ }
143
+ .singleClass{
144
+ display: flex;
145
+ justify-content: space-between;
146
+ .singleItem{
147
+ padding: 0 4px;
148
+ white-space: normal;
149
+ word-wrap: break-word;
150
+ text-align: left!important;
151
+ width: 99%;
152
+ }
153
+ }
154
+ .doubleClass{
155
+ display: flex;
156
+ justify-content: space-between;
157
+ .doubleItem{
158
+ width: 50%;
159
+ padding: 0 4px;
160
+ white-space: normal;
161
+ word-wrap: break-word;
162
+ }
163
+ .doubleItem:nth-of-type(1){
164
+ text-align: left;
165
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
166
+ text-align: left!important;
167
+ }
168
+
169
+ }
170
+ .doubleItem:last-child{
171
+ text-align: right;
172
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
173
+ text-align: right!important;
174
+ }
175
+ }
176
+ }
177
+ .tripleClass{
178
+ display: flex;
179
+ flex-direction: row;
180
+ justify-content: space-between;
181
+ align-items: center;
182
+ .tripleItem{
183
+ width: 33.33%;
184
+ padding: 0 4px;
185
+ white-space: normal;
186
+ word-wrap: break-word;
187
+ }
188
+ .tripleItem:nth-of-type(1){
189
+ text-align: left;
190
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
191
+ text-align: left!important;
192
+ }
193
+ }
194
+ .tripleItem:nth-of-type(2){
195
+ text-align: center;
196
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
197
+ text-align: center!important;
198
+ }
199
+ }
200
+ .tripleItem:last-child{
201
+ text-align: right;
202
+ div, h1, h2, h3, h4, h5, h6, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
203
+ text-align: right!important;
204
+ }
205
+ }
206
+ }
207
+ }
208
+
209
+
210
+
211
+