|
@@ -4,13 +4,13 @@
|
4
|
4
|
<div class="user-info">
|
5
|
5
|
<div class="title">
|
6
|
6
|
<div class="txt">个人信息</div>
|
7
|
|
- <div
|
|
7
|
+ <!-- <div
|
8
|
8
|
class="test-record"
|
9
|
9
|
@click="toTestRecord"
|
10
|
10
|
v-if="userInfo.analysis_id"
|
11
|
11
|
>
|
12
|
12
|
测肤记录
|
13
|
|
- </div>
|
|
13
|
+ </div> -->
|
14
|
14
|
</div>
|
15
|
15
|
<div class="detail-info">
|
16
|
16
|
<div class="user-img">
|
|
@@ -21,14 +21,17 @@
|
21
|
21
|
<div class="name">
|
22
|
22
|
<span>{{ userInfo.nickname | ellipsis(3) }}</span>
|
23
|
23
|
</div>
|
|
24
|
+ <!-- <div class="skin-type">
|
|
25
|
+ 肤龄:<span>{{ userInfo.age }}</span>
|
|
26
|
+ </div> -->
|
24
|
27
|
<div class="sex"><img :src="gender" alt="" /></div>
|
25
|
|
- <!-- <div class="age">
|
|
28
|
+ <div class="age">
|
26
|
29
|
<span>{{ userInfo.skin_age }}</span
|
27
|
30
|
><span class="min-size">肤龄</span>
|
28
|
|
- </div> -->
|
|
31
|
+ </div>
|
29
|
32
|
</div>
|
30
|
33
|
<div class="real-name">
|
31
|
|
- 姓名:
|
|
34
|
+ 真实姓名:
|
32
|
35
|
<span v-show="!nameInpVisible">{{ userInfo.real_name }}</span>
|
33
|
36
|
<el-input
|
34
|
37
|
size="mini"
|
|
@@ -46,84 +49,116 @@
|
46
|
49
|
srcset=""
|
47
|
50
|
/>
|
48
|
51
|
</div>
|
|
52
|
+
|
49
|
53
|
<div class="skin-type">
|
50
|
|
- 肤质:<span>{{ userInfo.skin_type }}</span>
|
51
|
|
- </div>
|
52
|
|
- <div class="skin-type">
|
53
|
|
- 肤龄:<span>{{ userInfo.age }}</span>
|
54
|
|
- </div>
|
55
|
|
- <div class="skin-color">
|
56
|
|
- 肤色:<span>{{ userInfo.skin_color }}</span>
|
|
54
|
+ 用户ID:<span> {{ userInfo.user_id }}</span>
|
57
|
55
|
</div>
|
|
56
|
+ <!-- <div class="skin-type">
|
|
57
|
+ 上传报告时间:<span> {{ userDetail.create_time }}</span>
|
|
58
|
+ </div> -->
|
58
|
59
|
</div>
|
59
|
60
|
</div>
|
60
|
61
|
</div>
|
61
|
62
|
|
62
|
63
|
<div class="personage-data">
|
63
|
64
|
<div class="myDataList">
|
64
|
|
- 检测时间:
|
65
|
|
- <span>{{ userInfo.check_time }}</span>
|
66
|
|
- </div>
|
67
|
|
- <div class="myDataList">
|
68
|
|
- 出生日期:
|
|
65
|
+ <span class="dataListTitle">出生日期</span> :
|
|
66
|
+
|
69
|
67
|
<span>{{ userInfo.birthday }}</span>
|
70
|
68
|
</div>
|
71
|
69
|
<div class="myDataList">
|
72
|
|
- 手机号:
|
|
70
|
+ <span class="dataListTitle">联系电话</span> :
|
73
|
71
|
<span>{{ userInfo.mobile }}</span>
|
74
|
72
|
</div>
|
75
|
73
|
|
76
|
74
|
<div class="myDataList">
|
77
|
|
- 所在地:
|
|
75
|
+ <span class="dataListTitle">所在地</span> :
|
78
|
76
|
<span>{{ userInfo.city }}</span>
|
79
|
77
|
</div>
|
80
|
78
|
|
81
|
79
|
<div class="myDataList">
|
82
|
|
- 开卡店铺:
|
83
|
|
- <span>{{ userInfo.store_name }}</span>
|
|
80
|
+ <span class="dataListTitle">客户来源</span> :
|
|
81
|
+ <!-- <span>{{ userInfo.store_name }}</span> -->
|
|
82
|
+ <el-select
|
|
83
|
+ v-model="sourceValue"
|
|
84
|
+ placeholder="请选择"
|
|
85
|
+ size="mini"
|
|
86
|
+ @change="selectSource"
|
|
87
|
+ >
|
|
88
|
+ <el-option
|
|
89
|
+ v-for="(item, index) in sourceList"
|
|
90
|
+ :key="index"
|
|
91
|
+ :label="item"
|
|
92
|
+ :value="index"
|
|
93
|
+ >
|
|
94
|
+ </el-option>
|
|
95
|
+ </el-select>
|
84
|
96
|
</div>
|
|
97
|
+ <div class="assetInfo">资产信息</div>
|
85
|
98
|
|
86
|
99
|
<div class="myDataList coupon-num">
|
87
|
|
- 次卡数量:
|
|
100
|
+ <span class="dataListTitle">次卡数量</span> :
|
88
|
101
|
<span @click="toOrder(2)">{{ order_total.card_num }}</span>
|
89
|
102
|
</div>
|
90
|
103
|
|
91
|
104
|
<div class="myDataList coupon-num">
|
92
|
|
- 优惠券数量:
|
|
105
|
+ <span class="dataListTitle">优惠券</span> :
|
93
|
106
|
<span @click="toOrder(4)">{{ userInfo.card_num }}</span>
|
94
|
107
|
</div>
|
95
|
108
|
|
96
|
109
|
<div class="myDataList">
|
97
|
|
- 储值金额:
|
98
|
|
- <span class="JEcolor">
|
99
|
|
- ¥
|
100
|
|
- <span class="bigSixe">{{ userInfo.amount }}</span>
|
|
110
|
+ <span class="dataListTitle">储值金额</span> :
|
|
111
|
+ <span class="JEcolor" @click="toOrder(5)">
|
|
112
|
+ ¥<span class="bigSixe">{{ userInfo.amount }}</span>
|
101
|
113
|
<!-- .00 -->
|
102
|
114
|
</span>
|
103
|
115
|
</div>
|
104
|
116
|
<div class="myDataList">
|
105
|
|
- 积分:
|
|
117
|
+ <span class="dataListTitle">积分</span> :
|
106
|
118
|
<span>{{ userInfo.coin }}</span>
|
107
|
119
|
</div>
|
108
|
|
- <div class="myDataList" @click="remarkPupopVisible = true">
|
|
120
|
+ <div class="detectionInfo">
|
|
121
|
+ <div>检测信息</div>
|
|
122
|
+ <div @click="goTestSkin">测肤记录</div>
|
|
123
|
+ </div>
|
|
124
|
+ <div class="skin-type">
|
|
125
|
+ <span class="dataListTitle">肤质</span> :
|
|
126
|
+ <span class="item" v-if="userDetail.detection">{{
|
|
127
|
+ skin_type[userDetail.detection.skin_type - 1]
|
|
128
|
+ }}</span>
|
|
129
|
+ </div>
|
|
130
|
+ <!-- <div class="skin-color">
|
|
131
|
+ <span class="dataListTitle">肤色</span> :
|
|
132
|
+ <span>{{ userInfo.skin_color }}</span>
|
|
133
|
+ </div> -->
|
|
134
|
+ <div class="myDataList">
|
|
135
|
+ <span class="dataListTitle">测肤时间</span> :
|
|
136
|
+ <span v-if="userDetail.detection">{{ userDetail.detection.create_time }}</span>
|
|
137
|
+ </div>
|
|
138
|
+ <!-- <div class="myDataList" @click="remarkPupopVisible = true">
|
109
|
139
|
备注信息:
|
110
|
140
|
<span>{{ userInfo.remark | ellipsis(20) }}</span>
|
111
|
|
- </div>
|
|
141
|
+ </div> -->
|
112
|
142
|
</div>
|
113
|
143
|
</div>
|
114
|
144
|
<div class="right">
|
115
|
145
|
<div class="right-top">
|
116
|
146
|
<div class="right-top-data">
|
117
|
147
|
<div class="lable">
|
118
|
|
- <div class="lable-title">面诊标签</div>
|
|
148
|
+ <div class="lable-title">
|
|
149
|
+ <div>面诊标签</div>
|
|
150
|
+ <div @click="goTestSkinDetials" v-if='userDetail.detection'>执行方案</div>
|
|
151
|
+ </div>
|
119
|
152
|
<div class="problem">
|
120
|
|
- <div class="problem-title">问题标签</div>
|
|
153
|
+ <div class="problem-title">问题标签 </div>
|
|
154
|
+ :
|
121
|
155
|
<div class="problem-lable">
|
122
|
156
|
<div class="lable-text problem-text">{{ problem }}</div>
|
123
|
157
|
</div>
|
124
|
158
|
</div>
|
125
|
159
|
<div class="problem">
|
126
|
|
- <div class="problem-title">面部标签</div>
|
|
160
|
+ <div class="problem-title">面部标签 </div>
|
|
161
|
+ :
|
127
|
162
|
<div class="problem-lable">
|
128
|
163
|
<div
|
129
|
164
|
class="lable-text"
|
|
@@ -178,19 +213,27 @@
|
178
|
213
|
<div class="consume-content">
|
179
|
214
|
<div class="consume-one">
|
180
|
215
|
<div class="consume-type">
|
181
|
|
- 总消费金额:<span class="consume-price">999</span>
|
|
216
|
+ 总消费金额:<span class="consume-price">{{
|
|
217
|
+ userDetail.total_price
|
|
218
|
+ }}</span>
|
182
|
219
|
</div>
|
183
|
220
|
<div class="consume-type">
|
184
|
|
- 项目叠加次数:<span class="consume-price">999</span>
|
|
221
|
+ 项目叠加次数:<span class="consume-price">{{
|
|
222
|
+ userDetail.overlay
|
|
223
|
+ }}</span>
|
185
|
224
|
</div>
|
186
|
225
|
</div>
|
187
|
226
|
<div class="consume-two">
|
188
|
227
|
<div class="consume-type">
|
189
|
|
- 总储值金额:<span class="consume-price">999</span>
|
|
228
|
+ 总储值金额:<span class="consume-price">{{
|
|
229
|
+ userDetail.balance==null?0:userDetail.balance
|
|
230
|
+ }}</span>
|
190
|
231
|
</div>
|
191
|
232
|
|
192
|
233
|
<div class="consume-type">
|
193
|
|
- 转化次数:<span class="consume-price">999</span>
|
|
234
|
+ 转化次数:<span class="consume-price">{{
|
|
235
|
+ userDetail.conversion
|
|
236
|
+ }}</span>
|
194
|
237
|
</div>
|
195
|
238
|
</div>
|
196
|
239
|
</div>
|
|
@@ -200,46 +243,56 @@
|
200
|
243
|
<div class="record-item">
|
201
|
244
|
<div class="record-title">项目</div>
|
202
|
245
|
:
|
203
|
|
- <div class="record-name">
|
204
|
|
- 【进店必做】寡肽小气泡温和清洁拔出黑头…
|
|
246
|
+ <div v-if="userDetail.project" class="record-name">
|
|
247
|
+ {{ userDetail.project.project_name }}
|
|
248
|
+ </div>
|
|
249
|
+ <div v-if="userDetail.project">
|
|
250
|
+ {{ userDetail.project.create_time }}
|
205
|
251
|
</div>
|
206
|
|
- <div>2022.10.13 12:12</div>
|
207
|
252
|
</div>
|
208
|
253
|
<div class="record-item">
|
209
|
254
|
<div class="record-title">次卡</div>
|
210
|
255
|
:
|
211
|
|
- <div class="record-name">
|
212
|
|
- 【进店必做】寡肽小气泡温和清洁拔出黑头…
|
|
256
|
+ <div v-if="userDetail.user_card" class="record-name">
|
|
257
|
+ {{ userDetail.user_card.card_name }}
|
|
258
|
+ </div>
|
|
259
|
+ <div v-if="userDetail.user_card">
|
|
260
|
+ {{ userDetail.user_card.create_time }}
|
213
|
261
|
</div>
|
214
|
|
- <div>2022.10.13 12:12</div>
|
215
|
262
|
</div>
|
216
|
263
|
<div class="record-item">
|
217
|
264
|
<div class="record-title">美妆产品</div>
|
218
|
265
|
:
|
219
|
|
- <div class="record-name">
|
220
|
|
- 【进店必做】寡肽小气泡温和清洁拔出黑头…
|
|
266
|
+ <div v-if="userDetail.goods" class="record-name">
|
|
267
|
+ {{ userDetail.goods.goods_name }}
|
|
268
|
+ </div>
|
|
269
|
+ <div v-if="userDetail.goods">
|
|
270
|
+ {{ userDetail.goods.create_time }}
|
221
|
271
|
</div>
|
222
|
|
- <div>2022.10.13 12:12</div>
|
223
|
272
|
</div>
|
224
|
273
|
<div class="record-item">
|
225
|
274
|
<div class="record-title">充值</div>
|
226
|
275
|
:
|
227
|
|
- <div class="record-name">
|
228
|
|
- 【进店必做】寡肽小气泡温和清洁拔出黑头…
|
|
276
|
+ <div v-if="userDetail.recharge" class="record-name">
|
|
277
|
+ {{ userDetail.recharge.price }}
|
|
278
|
+ </div>
|
|
279
|
+ <div v-if="userDetail.recharge">
|
|
280
|
+ {{ userDetail.recharge.create_time }}
|
229
|
281
|
</div>
|
230
|
|
- <div>2022.10.13 12:12</div>
|
231
|
282
|
</div>
|
232
|
283
|
</div>
|
233
|
284
|
<div class="consume-title">最近消耗</div>
|
234
|
285
|
<div class="card-record">
|
235
|
|
- <div class="record-item">
|
236
|
|
- <div class="record-title">消耗次卡</div>
|
237
|
|
- :
|
238
|
|
- <div class="record-name">
|
239
|
|
- 【进店必做】寡肽小气泡温和清洁拔出黑头…
|
|
286
|
+ <div class="record-item">
|
|
287
|
+ <div class="record-title">消耗次卡</div>
|
|
288
|
+ :
|
|
289
|
+ <div v-if="userDetail.time_card" class="record-name">
|
|
290
|
+ {{ userDetail.time_card.card_name }}
|
|
291
|
+ </div>
|
|
292
|
+ <div v-if="userDetail.time_card">
|
|
293
|
+ {{ userDetail.time_card.create_time }}
|
|
294
|
+ </div>
|
240
|
295
|
</div>
|
241
|
|
- <div>2022.10.13 12:12</div>
|
242
|
|
- </div>
|
243
|
296
|
</div>
|
244
|
297
|
</div>
|
245
|
298
|
</div>
|
|
@@ -305,6 +358,20 @@ export default {
|
305
|
358
|
isPupop: false,
|
306
|
359
|
nameInpVisible: false,
|
307
|
360
|
remarkPupopVisible: false,
|
|
361
|
+ sourceList: [
|
|
362
|
+ " ",
|
|
363
|
+ "线下进店",
|
|
364
|
+ "种子用户",
|
|
365
|
+ "美团/大众",
|
|
366
|
+ "抖音",
|
|
367
|
+ "达人探店",
|
|
368
|
+ "霸王餐",
|
|
369
|
+ "老带新/转介绍",
|
|
370
|
+ ], //客户来源下拉选择
|
|
371
|
+ sourceValue: "", //客户来源值
|
|
372
|
+ id: this.$route.id, //用户的id
|
|
373
|
+ userDetail: [], //客户管理详情
|
|
374
|
+ skin_type: ["干性肌肤", "中性肌肤", "油性肌肤", "混合型肌肤"], //肤质 (肤质类型 1-干性肌肤 2-中性肌肤 3-油性肌肤 4-混合型肌肤)
|
308
|
375
|
};
|
309
|
376
|
},
|
310
|
377
|
components: { minePupop },
|
|
@@ -319,6 +386,42 @@ export default {
|
319
|
386
|
watch: {},
|
320
|
387
|
|
321
|
388
|
methods: {
|
|
389
|
+ // 获取客户管理详情
|
|
390
|
+ getUserDetail() {
|
|
391
|
+ api.getUserDetail({ id: this.id }).then((res) => {
|
|
392
|
+ this.userDetail = res.data;
|
|
393
|
+ this.sourceValue = this.sourceList[res.data.tag];
|
|
394
|
+ });
|
|
395
|
+ },
|
|
396
|
+ // 编辑客户管理用户标签
|
|
397
|
+ editSign(tag){
|
|
398
|
+ api.editSign({
|
|
399
|
+ tag,
|
|
400
|
+ id:this.id
|
|
401
|
+ }).then()
|
|
402
|
+ },
|
|
403
|
+ // 选择客户来源
|
|
404
|
+ selectSource(e) {
|
|
405
|
+ this.editSign(e)
|
|
406
|
+ },
|
|
407
|
+ // 跳转到测肤记录详情
|
|
408
|
+ goTestSkinDetials() {
|
|
409
|
+ this.$router.push({
|
|
410
|
+ path: "/testSkin/details",
|
|
411
|
+ query: {
|
|
412
|
+ id: this.userDetail.detection.id
|
|
413
|
+ }
|
|
414
|
+ });
|
|
415
|
+ },
|
|
416
|
+ // 跳转到测肤记录列表
|
|
417
|
+ goTestSkin() {
|
|
418
|
+ this.$router.push({
|
|
419
|
+ path: "/testSkin",
|
|
420
|
+ query: {
|
|
421
|
+ isback: true,
|
|
422
|
+ },
|
|
423
|
+ });
|
|
424
|
+ },
|
322
|
425
|
getPadUserInfo() {
|
323
|
426
|
api.getPadUserInfo({ id: this.id }).then((res) => {
|
324
|
427
|
console.log(res, "aaaaaaaa");
|
|
@@ -397,6 +500,8 @@ export default {
|
397
|
500
|
activeName = "second";
|
398
|
501
|
} else if (index == 4) {
|
399
|
502
|
activeName = "fourth";
|
|
503
|
+ }else if(index==5){
|
|
504
|
+ activeName = "five";
|
400
|
505
|
}
|
401
|
506
|
this.$router.push({
|
402
|
507
|
path: "/customerMan/projectOrder",
|
|
@@ -443,6 +548,8 @@ export default {
|
443
|
548
|
created() {
|
444
|
549
|
let id = this.$route.query.id;
|
445
|
550
|
this.id = id;
|
|
551
|
+ // 获取客户管理详情
|
|
552
|
+ this.getUserDetail();
|
446
|
553
|
this.getPadUserInfo();
|
447
|
554
|
},
|
448
|
555
|
|
|
@@ -507,11 +614,12 @@ export default {
|
507
|
614
|
justify-content: space-between;
|
508
|
615
|
.name {
|
509
|
616
|
font-size: 14px;
|
|
617
|
+ width: 60px;
|
510
|
618
|
}
|
511
|
619
|
.sex {
|
512
|
620
|
img {
|
513
|
|
- width: 24px;
|
514
|
|
- height: 24px;
|
|
621
|
+ width: 19px;
|
|
622
|
+ height: 19px;
|
515
|
623
|
}
|
516
|
624
|
}
|
517
|
625
|
.age {
|
|
@@ -547,11 +655,55 @@ export default {
|
547
|
655
|
}
|
548
|
656
|
.personage-data {
|
549
|
657
|
margin-top: 14px;
|
|
658
|
+ .assetInfo {
|
|
659
|
+ font-size: 14px;
|
|
660
|
+ color: #333;
|
|
661
|
+ font-weight: 600;
|
|
662
|
+ margin-top: 10px;
|
|
663
|
+ }
|
|
664
|
+ .detectionInfo {
|
|
665
|
+ margin-top: 10px;
|
|
666
|
+ display: flex;
|
|
667
|
+ justify-content: space-between;
|
|
668
|
+ font-size: 14px;
|
|
669
|
+ font-weight: 600;
|
|
670
|
+ color: #fa7d22;
|
|
671
|
+ div:first-child {
|
|
672
|
+ color: #333333;
|
|
673
|
+ }
|
|
674
|
+ }
|
|
675
|
+ .skin-type {
|
|
676
|
+ margin-top: 10px;
|
|
677
|
+ .dataListTitle {
|
|
678
|
+ display: inline-block;
|
|
679
|
+ font-size: 13px;
|
|
680
|
+ color: #999999;
|
|
681
|
+ width: 55px;
|
|
682
|
+ text-align: justify;
|
|
683
|
+ text-justify: distribute-all-lines;
|
|
684
|
+ text-align-last: justify;
|
|
685
|
+ }
|
|
686
|
+ .item{
|
|
687
|
+ color: #333;
|
|
688
|
+ }
|
|
689
|
+ }
|
|
690
|
+ .skin-color {
|
|
691
|
+ margin-top: 10px;
|
|
692
|
+ .dataListTitle {
|
|
693
|
+ display: inline-block;
|
|
694
|
+ font-size: 13px;
|
|
695
|
+ color: #999999;
|
|
696
|
+ width: 55px;
|
|
697
|
+ text-align: justify;
|
|
698
|
+ text-justify: distribute-all-lines;
|
|
699
|
+ text-align-last: justify;
|
|
700
|
+ }
|
|
701
|
+ }
|
550
|
702
|
.myDataList {
|
551
|
|
- margin-top: 15px;
|
|
703
|
+ margin-top: 10px;
|
552
|
704
|
.bigSixe {
|
553
|
705
|
font-size: 18px;
|
554
|
|
- color: #fa7d22;
|
|
706
|
+ color: #ff3007;
|
555
|
707
|
}
|
556
|
708
|
span {
|
557
|
709
|
color: #333333;
|
|
@@ -559,10 +711,21 @@ export default {
|
559
|
711
|
.JEcolor {
|
560
|
712
|
color: #fa7d22;
|
561
|
713
|
}
|
|
714
|
+ .dataListTitle {
|
|
715
|
+ display: inline-block;
|
|
716
|
+ font-size: 13px;
|
|
717
|
+ color: #999999;
|
|
718
|
+ width: 55px;
|
|
719
|
+ text-align: justify;
|
|
720
|
+ text-justify: distribute-all-lines;
|
|
721
|
+ text-align-last: justify;
|
|
722
|
+ }
|
|
723
|
+ /deep/.el-select {
|
|
724
|
+ width: 150px;
|
|
725
|
+ }
|
562
|
726
|
}
|
563
|
727
|
.coupon-num {
|
564
|
728
|
span {
|
565
|
|
- color: #fa7d22;
|
566
|
729
|
font-size: 16px;
|
567
|
730
|
font-weight: 500;
|
568
|
731
|
}
|
|
@@ -629,10 +792,15 @@ export default {
|
629
|
792
|
.lable-title {
|
630
|
793
|
font-size: 14px;
|
631
|
794
|
font-family: PingFangSC-Medium, PingFang SC;
|
632
|
|
- font-weight: 500;
|
|
795
|
+ font-weight: 600;
|
633
|
796
|
color: #333333;
|
634
|
797
|
line-height: 20px;
|
635
|
798
|
margin-bottom: 14px;
|
|
799
|
+ display: flex;
|
|
800
|
+ justify-content: space-between;
|
|
801
|
+ div:last-child {
|
|
802
|
+ color: #fa7d22;
|
|
803
|
+ }
|
636
|
804
|
}
|
637
|
805
|
.problem {
|
638
|
806
|
display: flex;
|
|
@@ -902,6 +1070,10 @@ export default {
|
902
|
1070
|
font-weight: 700;
|
903
|
1071
|
color: #333333;
|
904
|
1072
|
line-height: 20px;
|
|
1073
|
+ margin-top: 15px;
|
|
1074
|
+ }
|
|
1075
|
+ .consume-title:first-child {
|
|
1076
|
+ margin-top: 0;
|
905
|
1077
|
}
|
906
|
1078
|
.consume-content {
|
907
|
1079
|
display: flex;
|
|
@@ -923,7 +1095,8 @@ export default {
|
923
|
1095
|
margin-left: 14px;
|
924
|
1096
|
}
|
925
|
1097
|
}
|
926
|
|
- .consume-record,.card-record {
|
|
1098
|
+ .consume-record,
|
|
1099
|
+ .card-record {
|
927
|
1100
|
.record-item {
|
928
|
1101
|
display: flex;
|
929
|
1102
|
font-size: 13px;
|
|
@@ -940,11 +1113,14 @@ export default {
|
940
|
1113
|
width: 260px;
|
941
|
1114
|
margin-left: 36px;
|
942
|
1115
|
margin-right: 36px;
|
|
1116
|
+ /* 强制超出不换行 */
|
|
1117
|
+ white-space: nowrap;
|
|
1118
|
+ /* 超出隐藏 */
|
|
1119
|
+ overflow: hidden;
|
|
1120
|
+ /* 文本超出显示成... */
|
|
1121
|
+ text-overflow: ellipsis;
|
943
|
1122
|
}
|
944
|
1123
|
}
|
945
|
|
- .record-item:last-child {
|
946
|
|
- margin-bottom: 15px;
|
947
|
|
- }
|
948
|
1124
|
}
|
949
|
1125
|
}
|
950
|
1126
|
.programme-list {
|