askbot-dragon 1.5.18 → 1.5.21-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.
@@ -3,39 +3,48 @@
3
3
  <div class="ticketMessage">
4
4
  <ticket-swiper ref="swiper" :content="content" :type="type" @touchEnd="touchEnd">
5
5
  <template>
6
- <ticket-swiper-item
7
- v-for="(item,_index) in content.cards"
8
- :key="_index"
9
- :content="content"
10
- >
6
+ <ticket-swiper-item v-for="(item, _index) in formatContent(content.cards)" :key="_index" :content="content">
11
7
  <template>
12
8
  <div class="ticketMessageContain">
13
- <div :class="{isPhoneClass:isPhone===true,isCompayClass:isCompany===true}">
14
- <div :class="{isIosClass:isIos===true,isAndroidClass:isAndroid===true}">
9
+ <div :class="{ isPhoneClass: isPhone === true, isCompayClass: isCompany === true }">
10
+ <div :class="{ isIosClass: isIos === true, isAndroidClass: isAndroid === true }">
15
11
  <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'">
12
+ <div v-for="(items, ind) in item.content.htmlList" :key="'Out_' + ind" class="html-item">
13
+ <div class="img" v-if="items.type === 'IMAGE'">
21
14
  <img :src="items.src">
22
15
  </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>
16
+ <div class="singleClass" v-if="items.type === 'SINGLE'">
17
+ <div v-html="itemss" class="singleItem" v-for="(itemss, inde) in items.list" :key="'s_' + inde">
18
+ </div>
19
+ </div>
20
+ <div class="doubleClass" v-if="items.type === 'DOUBLE' && item.version != 1">
21
+ <div class="doubleItem" v-for="(itemss, index) in items.list" :key="'__' + index"
22
+ v-html="itemss">
23
+ </div>
25
24
  </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">
25
+ <div class="updateDoubleClass" v-if="items.type === 'DOUBLE' && item.version == 1">
26
+ <div class="doubleItem" :style="{ 'width': itemss.style.col / itemss.style.colums * 100 + '%' }"
27
+ v-for="(itemss, index) in items.tampList" :key="'__D' + index" v-html="itemss.html">
28
28
  </div>
29
+ <!-- <div class="doubleItem" v-for="(itemss,index) in items.tampList" :key="'__'+index">
30
+ {{itemss.style.col/itemss.style.colums*100}}{{itemss.html}}
31
+ </div> -->
29
32
  </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>
33
+ <div class="tripleClass" v-if="items.type === 'TRIPLE'">
34
+ <div v-html="itemss" class="tripleItem" v-for="(itemss, index) in items.list"
35
+ :key="'__t_' + index">
36
+ </div>
37
+ </div>
38
+ <div class="quadrupleClass" v-if="items.type === 'QUADRUPLE'">
39
+ <div v-html="itemss" class="quadrupleItem" v-for="(itemss, index) in items.list"
40
+ :key="'_q__' + index"></div>
32
41
  </div>
33
42
  </div>
34
43
  </div>
35
44
  <div class="button-list">
36
- <div v-for="(items,index) in item.content.buttonList" :key="'____'+index" class="button-item">
45
+ <div v-for="(items, index) in item.content.buttonList" :key="'____' + index" class="button-item">
37
46
  <div @click="btnClick(items)" class="buttonClassItem">
38
- <span class="btn-name">{{items.name}}</span>
47
+ <span class="btn-name">{{ items.name }}</span>
39
48
  </div>
40
49
  </div>
41
50
  </div>
@@ -50,129 +59,144 @@
50
59
  </div>
51
60
  </template>
52
61
  <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("请稍后点击")
62
+ import ticketSwiper from "./swiper/ticketSwiper";
63
+ import ticketSwiperItem from "./swiper/ticketSwiperItem";
64
+ export default {
65
+ name: "TicketMessage",
66
+ props: {
67
+ content: {
68
+ type: Object,
69
+ default() {
70
+ return {}
71
+ }
72
+ },
73
+ type: {
74
+ type: String,
75
+ default: ''
76
+ }
77
+ },
78
+ components: {
79
+ ticketSwiperItem,
80
+ ticketSwiper
81
+ },
82
+ data() {
83
+ return {
84
+ device: 'PC',
85
+ slideWidth: '',
86
+ swiperStyle: {},
87
+ currIndex: 1,
88
+ distance: 0,
89
+ isAndroid: false,
90
+ isIos: false,
91
+ isPhone: false,
92
+ isCompany: false,
93
+ swiper: false,
94
+ text: [],
95
+ textarea: [],
96
+ onoff: true
97
+ }
98
+ },
99
+ created() {
100
+ this.isIosOrIsAndroid()
101
+ this.isMobile()
102
+ },
103
+ mounted() {
104
+ // console.log(JSON.stringify(this.content.cards));
105
+ // this.content.cards.forEach(element => {
106
+ // if (element.version == 1) {
107
+ // element.content.htmlList.forEach((item) => {
108
+ // item.tampList = [];
109
+ // item.list.forEach((cell, cellIndex) => {
110
+ // let tampCell = {
111
+ // html: cell,
112
+ // style: item.style[cellIndex]
113
+ // }
114
+ // item.tampList.push(tampCell);
115
+ // })
116
+ // })
117
+ // }
118
+ // });
119
+ // this.content.cards = [...this.content.cards];
120
+ // console.log(this.content.cards);
121
+ },
122
+ methods: {
123
+ formatContent(arr) {
124
+ arr.forEach(element => {
125
+ if (element.version == 1) {
126
+ element.content.htmlList.forEach((item) => {
127
+ item.tampList = [];
128
+ item.list.forEach((cell, cellIndex) => {
129
+ let tampCell = {
130
+ html: cell,
131
+ style: item.style[cellIndex]
138
132
  }
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(){
133
+ item.tampList.push(tampCell);
134
+ })
135
+ })
136
+ }
137
+ });
138
+ return arr;
139
+ },
140
+ SwiperImgLoad() {
141
+ if (!this.loadCheck) {
142
+ this.$emit("SwiperImgLoadEvent");
143
+ this.loadCheck = true;
144
+ }
145
+ },
146
+ slideLoadOn() {
147
+ this.$refs.swiper.slideOn();
148
+ },
149
+ btnClick(items) {
150
+ items.apiKey = this.content.apiKey
151
+ let that = this;
152
+ if (that.onoff) {
153
+ that.onoff = false;
154
+ console.debug('card_template', items)
155
+ this.$emit('btnClick', items, this.content.apiKey)
156
+ setTimeout(function () {
157
+ that.onoff = true;
158
+ }, 600)
159
+ } else {
160
+ //如果一直走else分支可能是你没有在页面的data下面挂载onoff:true,不然一直都会走else
161
+ console.debug("请稍后点击")
162
+ }
163
+ },
163
164
 
164
- },
165
- touchEnd(index){
166
- this.$emit('touchEnd',index)
167
- }
165
+ isIosOrIsAndroid() {
166
+ var u = navigator.userAgent;
167
+ var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
168
+ var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
169
+ if (isAndroid) {
170
+ this.isAndroid = true
171
+ }
172
+ if (isiOS) {
173
+ this.isIos = true
174
+ }
175
+ },
176
+ isMobile() {
177
+ 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);
178
+ if (flag) {
179
+ this.isPhone = true
180
+ }
181
+ else {
182
+ this.isCompany = true
183
+ }
184
+ },
185
+ touchMove() {
168
186
 
169
- },
187
+ },
188
+ touchEnd(index) {
189
+ this.$emit('touchEnd', index)
170
190
  }
191
+
192
+ },
193
+ }
171
194
  </script>
172
195
 
173
196
  <style lang="less">
174
- @import "../../assets/less/ticketMessage";
175
- a{
176
- text-decoration: none;
197
+ @import "../../assets/less/ticketMessage";
198
+
199
+ a {
200
+ text-decoration: none;
177
201
  }
178
202
  </style>