askbot-dragon 0.7.22 → 0.7.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "0.7.22",
3
+ "version": "0.7.26",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -83,7 +83,7 @@
83
83
  overflow: hidden;
84
84
  img{
85
85
  width: 100%;
86
- height:calc((100vw - 120px) / 2.35);
86
+ height:calc((100vw - 110px) / 2.35);
87
87
  object-fit: contain;
88
88
  }
89
89
  }
@@ -923,50 +923,7 @@ export default {
923
923
  processAction:[
924
924
  {
925
925
  content:{
926
- html:'<p><img onclick=\'previewImage(this)\' width=\\"100%\\" src=\\"https://static.guoranbot.com/ueditor/2021/07/02/78f1af50e47440c1b573f227c2618be1/下载" title="下载 (1).png" alt="下载 (1).png"/></p>',
927
- actionType: "answer_text",
928
- list:['关联意图'],
929
- recommend:{
930
- description: "关联意图测试描述",
931
- list:[
932
- {
933
- id: "3539",
934
- text: "文本",
935
- type: 1
936
- },
937
- {
938
- id: "3540",
939
- text: "图片",
940
- type: 1
941
- }
942
- ],
943
- status: true
944
- },
945
- replyIndex: 0
946
- },
947
- type:'answer_text',
948
- id:'60df04245987400458f697cd',
949
- intentId:6064,
950
- recommend:{
951
- description: "关联意图测试描述",
952
- list:[
953
- {
954
- id: "3539",
955
- text: "文本",
956
- type: 1
957
- },
958
- {
959
- id: "3540",
960
- text: "图片",
961
- type: 1
962
- }
963
- ],
964
- status: true
965
- },
966
- },
967
- {
968
- content:{
969
- html:'<p><img onclick=\'previewImage(this)\' width=\\"100%\\" src=\\"https://static.guoranbot.com/ueditor/2021/07/02/78f1af50e47440c1b573f227c2618be1/下载" title="下载 (1).png" alt="下载 (1).png"/></p>',
926
+ html:'哈哈哈哈',
970
927
  recommend:{
971
928
  description: "关联意图测试描述",
972
929
  list:[
@@ -1008,8 +965,9 @@ export default {
1008
965
  {
1009
966
  content:{
1010
967
  url:'https://guoranopen-zjk.oss-cn-zhangjiakou.aliyuncs.com/2021/08/24/07/35/45c878fd-6a8e-40e2-b599-bdba8e17cf8a/微信图片_20210423113520.jpg?x-oss-process=image/auto-orient,1/quality,q_90/watermark,text_MjE=,color_cccccc,size_48,rotate_315,fill_1,x_10,y_10,t_0',
968
+ html:'测试文本-关联推荐没有描述',
1011
969
  recommend:{
1012
- description: "关联意图测试描述",
970
+ description: "",
1013
971
  list:[
1014
972
  {
1015
973
  id: "3539",
@@ -1029,7 +987,7 @@ export default {
1029
987
  id:'6124d9b1c12fa234e0b3ddc8',
1030
988
  intentId:6064,
1031
989
  recommend:{
1032
- description: "关联意图测试描述",
990
+ description: "",
1033
991
  list:[
1034
992
  {
1035
993
  id: "3539",
@@ -97,7 +97,7 @@ export default {
97
97
  margin-right: 8px;
98
98
  }
99
99
  .check-satisfied{
100
- border: 1px solid #BEC5DB;
100
+ border: 1px solid #BBCDFF;
101
101
  color: #366aff;
102
102
  }
103
103
  .end{
@@ -16,6 +16,7 @@
16
16
  x5-video-player-type="h5-page"
17
17
  style="object-fit: contain;width: calc(100vw - 139px);height: 160px;background-color: black;border-radius: 25px;max-width: 230px;padding-left: 10px"
18
18
  preload
19
+ :poster="videoSrc+'?spm=qipa250&x-oss-process=video/snapshot,t_1000,f_jpg,w_0,h_0,m_fast'"
19
20
  class="video-player vjs-custom-skin"
20
21
  :id="msg.keyId+'key'">
21
22
  <source :src="videoSrc"/>
@@ -51,11 +52,8 @@
51
52
  mounted() {
52
53
  this.$nextTick(()=>{
53
54
  this.videoSrc = this.url ? this.url : this.localUrl
54
- setTimeout(()=>{
55
- this.getImage()
56
- },200)
57
-
58
-
55
+ this.poster = this.videoSrc+'?spm=qipa250&x-oss-process=video/snapshot,t_1000,f_jpg,w_0,h_0,m_fast'
56
+ console.debug('poster',this.poster)
59
57
  })
60
58
 
61
59
  },
@@ -1809,12 +1809,12 @@ export default {
1809
1809
  }
1810
1810
  }
1811
1811
  .submitClass{
1812
- width: 100px;
1812
+ min-width: 100px;
1813
1813
  background-color: #366aff;
1814
1814
  color: white!important;
1815
1815
  height: 32px;
1816
1816
  i{
1817
- margin-right: 10px;
1817
+ padding-right: 8px;
1818
1818
  font-weight: 600;
1819
1819
  }
1820
1820
  }
@@ -1873,12 +1873,12 @@ export default {
1873
1873
  width: 100%;
1874
1874
  font-size: 1em;
1875
1875
  .submitClass{
1876
- width: 100px;
1876
+ min-width: 100px;
1877
1877
  color: white!important;
1878
1878
  background-color:#366aff;
1879
1879
  border-color: #366aff;
1880
1880
  i{
1881
- margin-right: 10px;
1881
+ padding-right: 8px;
1882
1882
  font-weight: 600;
1883
1883
  }
1884
1884
  }
@@ -337,11 +337,11 @@ export default {
337
337
  if(flag){
338
338
  this.isPhone=true
339
339
  let el=this.$el
340
- el.style.width='calc(100vw - 120px)'
340
+ el.style.width='calc(100vw - 110px)'
341
341
  let swiper=document.getElementsByClassName('swiper')
342
342
  for (let i=0;i<swiper.length;i++)
343
343
  {
344
- swiper[i].style.width='calc(100vw - 120px)'
344
+ swiper[i].style.width='calc(100vw - 110px)'
345
345
  }
346
346
 
347
347