askbot-dragon 0.7.56 → 0.7.59

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 (66) hide show
  1. package/README.md +27 -27
  2. package/babel.config.js +5 -5
  3. package/dragon.iml +7 -7
  4. package/package.json +55 -54
  5. package/public/index.html +30 -30
  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/AskIFrame.vue +15 -15
  20. package/src/components/ConversationContainer.vue +1182 -1185
  21. package/src/components/FileType.vue +86 -86
  22. package/src/components/Message.vue +27 -27
  23. package/src/components/actionSatisfaction.vue +107 -107
  24. package/src/components/actionSendToBot.vue +62 -62
  25. package/src/components/answerDissatisfaction.vue +62 -62
  26. package/src/components/answerRadio.vue +76 -76
  27. package/src/components/ask-components/DissatisfactionOptions.vue +57 -57
  28. package/src/components/ask-components/Msgloading.vue +37 -37
  29. package/src/components/ask-components/SatisfactionV2.vue +15 -15
  30. package/src/components/askVideo.vue +138 -138
  31. package/src/components/assetDetails.vue +370 -370
  32. package/src/components/assetMessage.vue +228 -228
  33. package/src/components/associationIntention.vue +121 -121
  34. package/src/components/botActionSatisfactor.vue +68 -68
  35. package/src/components/chatContent.vue +513 -513
  36. package/src/components/feedBack.vue +136 -136
  37. package/src/components/file/AliyunOssComponents.vue +108 -108
  38. package/src/components/formTemplate.vue +1969 -1949
  39. package/src/components/loadingProcess.vue +164 -164
  40. package/src/components/message/ActionAlertIframe.vue +112 -112
  41. package/src/components/message/ShopMessage.vue +164 -164
  42. package/src/components/message/TextMessage.vue +924 -924
  43. package/src/components/message/TicketMessage.vue +177 -177
  44. package/src/components/message/swiper/index.js +4 -4
  45. package/src/components/message/swiper/ticketSwiper.vue +502 -502
  46. package/src/components/message/swiper/ticketSwiperItem.vue +61 -61
  47. package/src/components/msgLoading.vue +231 -231
  48. package/src/components/recommend.vue +89 -89
  49. package/src/components/selector/hOption.vue +20 -20
  50. package/src/components/selector/hSelector.vue +199 -199
  51. package/src/components/selector/hWrapper.vue +216 -216
  52. package/src/components/source/BotMessage.vue +24 -24
  53. package/src/components/source/CustomMessage.vue +24 -24
  54. package/src/components/test.vue +260 -260
  55. package/src/components/utils/AliyunIssUtil.js +72 -72
  56. package/src/components/utils/ckeditor.js +123 -124
  57. package/src/components/utils/command.js +69 -0
  58. package/src/components/utils/editing.js +12 -0
  59. package/src/components/utils/format_date.js +18 -18
  60. package/src/components/utils/index.js +6 -6
  61. package/src/components/utils/math_utils.js +15 -15
  62. package/src/components/utils/plugin-image.js +12 -0
  63. package/src/components/utils/toolbar-ui.js +42 -0
  64. package/src/components/voiceComponent.vue +119 -119
  65. package/src/main.js +45 -44
  66. package/vue.config.js +34 -34
@@ -1,178 +1,178 @@
1
- <template>
2
- <div class="media-body">
3
- <div class="ticketMessage">
4
- <ticket-swiper ref="swiper" :content="content" :type="type" @touchEnd="touchEnd">
5
- <template>
6
- <ticket-swiper-item
7
- v-for="(item,_index) in content.cards"
8
- :key="_index"
9
- :content="content"
10
- >
11
- <template>
12
- <div class="ticketMessageContain">
13
- <div :class="{isPhoneClass:isPhone===true,isCompayClass:isCompany===true}">
14
- <div :class="{isIosClass:isIos===true,isAndroidClass:isAndroid===true}">
15
- <div class="htmlClass">
16
- <div v-for="(items,ind) in item.content.htmlList"
17
- :key="ind"
18
- class="html-item"
19
- >
20
- <div class="img" v-if="items.type==='IMAGE'">
21
- <img :src="items.src">
22
- </div>
23
- <div class="singleClass" v-else-if="items.type==='SINGLE'">
24
- <div v-html="itemss" class="singleItem" v-for="(itemss,inde) in items.list" :key="inde"></div>
25
- </div>
26
- <div class="doubleClass" v-else-if="items.type==='DOUBLE'">
27
- <div class="doubleItem" v-for="(itemss,index) in items.list" :key="'__'+index" v-html="itemss">
28
- </div>
29
- </div>
30
- <div class="tripleClass" v-else-if="items.type==='TRIPLE'">
31
- <div v-html="itemss" class="tripleItem" v-for="(itemss,index) in items.list" :key="'___'+index"></div>
32
- </div>
33
- </div>
34
- </div>
35
- <div class="button-list">
36
- <div v-for="(items,index) in item.content.buttonList" :key="'____'+index" class="button-item">
37
- <div @click="btnClick(items)" class="buttonClassItem">
38
- <span class="btn-name">{{items.name}}</span>
39
- </div>
40
- </div>
41
- </div>
42
- </div>
43
- </div>
44
- </div>
45
- </template>
46
- </ticket-swiper-item>
47
- </template>
48
- </ticket-swiper>
49
- </div>
50
- </div>
51
- </template>
52
- <script>
53
- import ticketSwiper from "./swiper/ticketSwiper";
54
- import ticketSwiperItem from "./swiper/ticketSwiperItem";
55
- export default {
56
- name: "TicketMessage",
57
- props:{
58
- content: {
59
- type: Object,
60
- default() {
61
- return {}
62
- }
63
- },
64
- type:{
65
- type:String,
66
- default:''
67
- }
68
- },
69
- components:{
70
- ticketSwiperItem,
71
- ticketSwiper
72
- },
73
- data(){
74
- return{
75
- contents:{
76
- multiple:true,
77
- cards:[
78
- {content:{
79
- htmlList:[{type:'IMAGE',src:'https://guoranopen-zjk.oss-cn-zhangjiakou.aliyuncs.com/cdn-office-website/images/09-4.png'},{type:'SINGLE',list:['<p>aaaaaaaaaa</p>']},{type:'DOUBLE',list:['<p>北京首都国际机场</p>','<div>bbbbb</div>']},{type:'TRIPLE',list:['<p>北京首都国际机场啦啦啦啦</p>','<div>CA5689</div>','<p>上海虹桥国际机场</p>']},{type:'TRIPLE',list:['<p>7:00</p>','<div>SSS</div>','<p>12:00</p>']}],
80
- buttonList:[{name:'我是标签1',scope:'',test:''},{name:'我是标签2'}]
81
- }},
82
- {content:{
83
- htmlList:[{type:'SINGLE',list:['<p>aaaaa</p>','<a>我是链接</a>']},{type:'DOUBLE',list:['<p>aaaaa</p>','<div>bbbbb</div>']},{type:'TRIPLE',list:['<p>7:00</p>','<div></div>','<p>ccccc</p>']},{type:'TRIPLE',list:['<p>7:00</p>','<div>bbbbb</div>','<p>12:00</p>']}],
84
- buttonList:[{name:'我是标签1',scope:'',test:''}]
85
- }},
86
- {content:{
87
- htmlList:[{type:'SINGLE',list:['<p>邓伦李沁的背景图片</p>']},{type:'SINGLE',list:['<p>男生藏快递向求婚被他人错拆</p>']},{type:'SINGLE',list:['<p>aaaaa</p>']},{type:'SINGLE',list:['<p>aaaaa</p>']}],
88
- buttonList:[{name:'我是标签1'}]
89
- }}
90
-
91
- ]
92
- },
93
- device:'PC',
94
- slideWidth:'',
95
- swiperStyle: {},
96
- currIndex: 1,
97
- distance:0,
98
- isAndroid:false,
99
- isIos:false,
100
- isPhone:false,
101
- isCompany:false,
102
- swiper:false,
103
- text:[],
104
- textarea:[],
105
- onoff:true
106
- }
107
- },
108
- created() {
109
- this.isIosOrIsAndroid()
110
- this.isMobile()
111
- },
112
- mounted() {
113
-
114
- },
115
- methods:{
116
- SwiperImgLoad() {
117
- if (!this.loadCheck) {
118
- this.$emit("SwiperImgLoadEvent");
119
- this.loadCheck = true;
120
- }
121
- },
122
- slideLoadOn() {
123
- this.$refs.swiper.slideOn();
124
- },
125
- btnClick(items){
126
- items.apiKey=this.content.apiKey
127
- let that = this;
128
- if (that.onoff) {
129
- that.onoff = false;
130
- console.debug('card_template',items)
131
- this.$emit('btnClick',items,this.content.apiKey)
132
- setTimeout(function () {
133
- that.onoff = true;
134
- }, 600)
135
- } else {
136
- //如果一直走else分支可能是你没有在页面的data下面挂载onoff:true,不然一直都会走else
137
- console.debug("请稍后点击")
138
- }
139
- },
140
-
141
- isIosOrIsAndroid(){
142
- var u = navigator.userAgent;
143
- var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
144
- var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
145
- if(isAndroid){
146
- this.isAndroid=true
147
- }
148
- if(isiOS){
149
- this.isIos=true
150
- }
151
- },
152
- isMobile() {
153
- let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
154
- if (flag) {
155
- this.isPhone=true
156
- }
157
- else
158
- {
159
- this.isCompany=true
160
- }
161
- },
162
- touchMove(){
163
-
164
- },
165
- touchEnd(index){
166
- this.$emit('touchEnd',index)
167
- }
168
-
169
- },
170
- }
171
- </script>
172
-
173
- <style lang="less">
174
- @import "../../assets/less/ticketMessage";
175
- a{
176
- text-decoration: none;
177
- }
1
+ <template>
2
+ <div class="media-body">
3
+ <div class="ticketMessage">
4
+ <ticket-swiper ref="swiper" :content="content" :type="type" @touchEnd="touchEnd">
5
+ <template>
6
+ <ticket-swiper-item
7
+ v-for="(item,_index) in content.cards"
8
+ :key="_index"
9
+ :content="content"
10
+ >
11
+ <template>
12
+ <div class="ticketMessageContain">
13
+ <div :class="{isPhoneClass:isPhone===true,isCompayClass:isCompany===true}">
14
+ <div :class="{isIosClass:isIos===true,isAndroidClass:isAndroid===true}">
15
+ <div class="htmlClass">
16
+ <div v-for="(items,ind) in item.content.htmlList"
17
+ :key="ind"
18
+ class="html-item"
19
+ >
20
+ <div class="img" v-if="items.type==='IMAGE'">
21
+ <img :src="items.src">
22
+ </div>
23
+ <div class="singleClass" v-else-if="items.type==='SINGLE'">
24
+ <div v-html="itemss" class="singleItem" v-for="(itemss,inde) in items.list" :key="inde"></div>
25
+ </div>
26
+ <div class="doubleClass" v-else-if="items.type==='DOUBLE'">
27
+ <div class="doubleItem" v-for="(itemss,index) in items.list" :key="'__'+index" v-html="itemss">
28
+ </div>
29
+ </div>
30
+ <div class="tripleClass" v-else-if="items.type==='TRIPLE'">
31
+ <div v-html="itemss" class="tripleItem" v-for="(itemss,index) in items.list" :key="'___'+index"></div>
32
+ </div>
33
+ </div>
34
+ </div>
35
+ <div class="button-list">
36
+ <div v-for="(items,index) in item.content.buttonList" :key="'____'+index" class="button-item">
37
+ <div @click="btnClick(items)" class="buttonClassItem">
38
+ <span class="btn-name">{{items.name}}</span>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </template>
46
+ </ticket-swiper-item>
47
+ </template>
48
+ </ticket-swiper>
49
+ </div>
50
+ </div>
51
+ </template>
52
+ <script>
53
+ import ticketSwiper from "./swiper/ticketSwiper";
54
+ import ticketSwiperItem from "./swiper/ticketSwiperItem";
55
+ export default {
56
+ name: "TicketMessage",
57
+ props:{
58
+ content: {
59
+ type: Object,
60
+ default() {
61
+ return {}
62
+ }
63
+ },
64
+ type:{
65
+ type:String,
66
+ default:''
67
+ }
68
+ },
69
+ components:{
70
+ ticketSwiperItem,
71
+ ticketSwiper
72
+ },
73
+ data(){
74
+ return{
75
+ contents:{
76
+ multiple:true,
77
+ cards:[
78
+ {content:{
79
+ htmlList:[{type:'IMAGE',src:'https://guoranopen-zjk.oss-cn-zhangjiakou.aliyuncs.com/cdn-office-website/images/09-4.png'},{type:'SINGLE',list:['<p>aaaaaaaaaa</p>']},{type:'DOUBLE',list:['<p>北京首都国际机场</p>','<div>bbbbb</div>']},{type:'TRIPLE',list:['<p>北京首都国际机场啦啦啦啦</p>','<div>CA5689</div>','<p>上海虹桥国际机场</p>']},{type:'TRIPLE',list:['<p>7:00</p>','<div>SSS</div>','<p>12:00</p>']}],
80
+ buttonList:[{name:'我是标签1',scope:'',test:''},{name:'我是标签2'}]
81
+ }},
82
+ {content:{
83
+ htmlList:[{type:'SINGLE',list:['<p>aaaaa</p>','<a>我是链接</a>']},{type:'DOUBLE',list:['<p>aaaaa</p>','<div>bbbbb</div>']},{type:'TRIPLE',list:['<p>7:00</p>','<div></div>','<p>ccccc</p>']},{type:'TRIPLE',list:['<p>7:00</p>','<div>bbbbb</div>','<p>12:00</p>']}],
84
+ buttonList:[{name:'我是标签1',scope:'',test:''}]
85
+ }},
86
+ {content:{
87
+ htmlList:[{type:'SINGLE',list:['<p>邓伦李沁的背景图片</p>']},{type:'SINGLE',list:['<p>男生藏快递向求婚被他人错拆</p>']},{type:'SINGLE',list:['<p>aaaaa</p>']},{type:'SINGLE',list:['<p>aaaaa</p>']}],
88
+ buttonList:[{name:'我是标签1'}]
89
+ }}
90
+
91
+ ]
92
+ },
93
+ device:'PC',
94
+ slideWidth:'',
95
+ swiperStyle: {},
96
+ currIndex: 1,
97
+ distance:0,
98
+ isAndroid:false,
99
+ isIos:false,
100
+ isPhone:false,
101
+ isCompany:false,
102
+ swiper:false,
103
+ text:[],
104
+ textarea:[],
105
+ onoff:true
106
+ }
107
+ },
108
+ created() {
109
+ this.isIosOrIsAndroid()
110
+ this.isMobile()
111
+ },
112
+ mounted() {
113
+
114
+ },
115
+ methods:{
116
+ SwiperImgLoad() {
117
+ if (!this.loadCheck) {
118
+ this.$emit("SwiperImgLoadEvent");
119
+ this.loadCheck = true;
120
+ }
121
+ },
122
+ slideLoadOn() {
123
+ this.$refs.swiper.slideOn();
124
+ },
125
+ btnClick(items){
126
+ items.apiKey=this.content.apiKey
127
+ let that = this;
128
+ if (that.onoff) {
129
+ that.onoff = false;
130
+ console.debug('card_template',items)
131
+ this.$emit('btnClick',items,this.content.apiKey)
132
+ setTimeout(function () {
133
+ that.onoff = true;
134
+ }, 600)
135
+ } else {
136
+ //如果一直走else分支可能是你没有在页面的data下面挂载onoff:true,不然一直都会走else
137
+ console.debug("请稍后点击")
138
+ }
139
+ },
140
+
141
+ isIosOrIsAndroid(){
142
+ var u = navigator.userAgent;
143
+ var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
144
+ var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
145
+ if(isAndroid){
146
+ this.isAndroid=true
147
+ }
148
+ if(isiOS){
149
+ this.isIos=true
150
+ }
151
+ },
152
+ isMobile() {
153
+ let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
154
+ if (flag) {
155
+ this.isPhone=true
156
+ }
157
+ else
158
+ {
159
+ this.isCompany=true
160
+ }
161
+ },
162
+ touchMove(){
163
+
164
+ },
165
+ touchEnd(index){
166
+ this.$emit('touchEnd',index)
167
+ }
168
+
169
+ },
170
+ }
171
+ </script>
172
+
173
+ <style lang="less">
174
+ @import "../../assets/less/ticketMessage";
175
+ a{
176
+ text-decoration: none;
177
+ }
178
178
  </style>
@@ -1,4 +1,4 @@
1
- import Swiper from "./ticketSwiper";
2
- import SwiperItem from "./ticketSwiperItem";
3
-
4
- export { Swiper, SwiperItem };
1
+ import Swiper from "./ticketSwiper";
2
+ import SwiperItem from "./ticketSwiperItem";
3
+
4
+ export { Swiper, SwiperItem };