jufubao-base 1.0.216 → 1.0.218-beta1
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 +1 -1
- package/src/components/JfbBaseCard/Attr.js +35 -0
- package/src/components/JfbBaseCard/JfbBaseCard.vue +121 -22
- package/src/components/JfbBaseCard/Mock.js +9 -4
- package/src/components/JfbBaseCardDisabled/JfbBaseCardDisabled.vue +26 -5
- package/src/components/JfbBaseCardDisabled/Mock.js +4 -2
- package/src/components/JfbBaseCardDisabledEntry/JfbBaseCardDisabledEntry.vue +19 -1
- package/src/components/JfbBaseCardDisabledEntry/Mock.js +2 -0
- package/src/components/JfbBaseCardEntry/Attr.js +35 -0
- package/src/components/JfbBaseCardEntry/JfbBaseCardEntry.vue +154 -118
- package/src/components/JfbBaseCardEntry/Mock.js +22 -1
- package/src/components/JfbBaseCardV2/Attr.js +35 -0
- package/src/components/JfbBaseCardV2/JfbBaseCardV2.vue +118 -39
- package/src/components/JfbBaseCardV2/Mock.js +12 -6
- package/src/components/JfbBaseCardV3/Attr.js +35 -0
- package/src/components/JfbBaseCardV3/JfbBaseCardV3.vue +23 -1
- package/src/components/JfbBaseHeader/Attr.js +58 -1
- package/src/components/JfbBaseHeader/JfbBaseHeader.vue +22 -1
- package/src/components/JfbBaseNoticeDialog/Api.js +58 -0
- package/src/components/JfbBaseNoticeDialog/Attr.js +48 -0
- package/src/components/JfbBaseNoticeDialog/JfbBaseNoticeDialog.vue +111 -0
- package/src/components/JfbBaseNoticeDialog/JfbBaseNoticeDialogLess.less +79 -0
- package/src/components/JfbBaseNoticeDialog/JfbBaseNoticeDialogMixin.js +30 -0
- package/src/components/JfbBaseNoticeDialog/Mock.js +13 -0
- package/src/components/JfbBaseTfkCardLogin/Attr.js +35 -0
- package/src/components/JfbBaseTfkCardLogin/JfbBaseTfkCardLogin.vue +21 -1
- package/src/components/JfbBaseUserCenter/Attr.js +35 -0
- package/src/components/JfbBaseUserCenter/JfbBaseUserCenter.vue +38 -16
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view
|
|
3
|
+
class="jfb-base-notice-dialog"
|
|
4
|
+
@click="handleEditxSelect"
|
|
5
|
+
:class="{ editx : isEditx && active }"
|
|
6
|
+
>
|
|
7
|
+
<!--#ifdef H5-->
|
|
8
|
+
<view
|
|
9
|
+
class="jfb-base-notice-dialog__edit"
|
|
10
|
+
:class="{ editx : isEditx && active }"
|
|
11
|
+
v-if="isEditx && active"
|
|
12
|
+
>
|
|
13
|
+
<view class="jfb-base-notice-dialog__edit-icon" @click="delEdit">删除</view>
|
|
14
|
+
</view>
|
|
15
|
+
<!-- #endif -->
|
|
16
|
+
<view class="jfb-base-notice-dialog__body">
|
|
17
|
+
<view>测试插件( {{containerId}} )</view>
|
|
18
|
+
</view>
|
|
19
|
+
</view>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<script>
|
|
23
|
+
import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
|
|
24
|
+
import { jfbRootExec } from "@/utils/xd.event";
|
|
25
|
+
import JfbBaseNoticeDialogMixin from "./JfbBaseNoticeDialogMixin";
|
|
26
|
+
import { getContainerPropsValue } from "@/utils/xd.base";
|
|
27
|
+
import componentsMixins from "@/mixins/componentsMixins";
|
|
28
|
+
import extsMixins from "@/mixins/extsMixins";
|
|
29
|
+
export default {
|
|
30
|
+
name: "JfbBaseNoticeDialog",
|
|
31
|
+
components: {
|
|
32
|
+
XdFontIcon
|
|
33
|
+
},
|
|
34
|
+
mixins: [
|
|
35
|
+
componentsMixins, extsMixins, JfbBaseNoticeDialogMixin
|
|
36
|
+
],
|
|
37
|
+
data() {
|
|
38
|
+
return {
|
|
39
|
+
|
|
40
|
+
//todo
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
watch: {
|
|
44
|
+
container(value, oldValue) {
|
|
45
|
+
if (JSON.stringify(value) === JSON.stringify(oldValue)) return;
|
|
46
|
+
if (this.$configProject['isPreview']) this.init(value)
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
created() {
|
|
50
|
+
this.init(this.container);
|
|
51
|
+
|
|
52
|
+
//todo
|
|
53
|
+
},
|
|
54
|
+
methods: {
|
|
55
|
+
onJfbLoad(options) {
|
|
56
|
+
|
|
57
|
+
// jfbRootExec('baiduUserLogin', {
|
|
58
|
+
|
|
59
|
+
// vm: this,// data: {
|
|
60
|
+
|
|
61
|
+
// account: 'gaoshiyong',// password: '123456789',// type: 3,// ...options
|
|
62
|
+
|
|
63
|
+
// }
|
|
64
|
+
|
|
65
|
+
// }).then().catch()
|
|
66
|
+
},
|
|
67
|
+
/**
|
|
68
|
+
* @description 监听事件变化
|
|
69
|
+
* @param container {object} 业务组件对象自己
|
|
70
|
+
*/
|
|
71
|
+
init(container) {
|
|
72
|
+
|
|
73
|
+
//this.bgcolor = getContainerPropsValue(container, 'content.bgcolor', '#fff');
|
|
74
|
+
|
|
75
|
+
//this.height = getContainerPropsValue(container, 'content.height', 10);
|
|
76
|
+
},
|
|
77
|
+
onJfbScroll(options) {
|
|
78
|
+
console.log('event.onJfbScroll', options)
|
|
79
|
+
},
|
|
80
|
+
onJfbReachBottom(options) {
|
|
81
|
+
console.log('event.onJfbReachBottom', options)
|
|
82
|
+
},
|
|
83
|
+
onJfbShow(options) {
|
|
84
|
+
console.log('event.onJfbShow', options)
|
|
85
|
+
},
|
|
86
|
+
onJfbHide(options) {
|
|
87
|
+
console.log('event.onJfbHide', options)
|
|
88
|
+
},
|
|
89
|
+
onJfbBack(options) {
|
|
90
|
+
console.log('event.onJfbBack', options)
|
|
91
|
+
},
|
|
92
|
+
onJfbUpdate(...data) {
|
|
93
|
+
console.log('event.onJfbUpdate', data)
|
|
94
|
+
},
|
|
95
|
+
onJfbCustomEvent(options) {
|
|
96
|
+
console.log('event.onJfbReachBottom', options)
|
|
97
|
+
},
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
</script>
|
|
102
|
+
|
|
103
|
+
<style scoped lang="less">
|
|
104
|
+
@import "./JfbBaseNoticeDialogLess.less";
|
|
105
|
+
|
|
106
|
+
.jfb-base-notice-dialog {
|
|
107
|
+
&__body{
|
|
108
|
+
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
</style>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @desc 获取绝对路径完整地址
|
|
3
|
+
* @param @path
|
|
4
|
+
**/
|
|
5
|
+
//例如:https://image.jufubao.cn/20220501010108/image/bg/default_gonghui_bg.png
|
|
6
|
+
@basePath: 'business/';
|
|
7
|
+
@doMain: '//sandbox-img.jufubao.cn/';
|
|
8
|
+
|
|
9
|
+
.getBusinessImageUrl(@path, @size: 'size8') {
|
|
10
|
+
@url: "@{doMain}@{basePath}@{path}?x-oss-process=style/@{size}";
|
|
11
|
+
background-image: url(@url);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
//start
|
|
15
|
+
.jfb-base-notice-dialog {
|
|
16
|
+
box-sizing: border-box;
|
|
17
|
+
|
|
18
|
+
&__body{
|
|
19
|
+
position: relative;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
z-index: 2
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.editx,&.editx:hover {
|
|
25
|
+
position: relative;
|
|
26
|
+
min-height: unit(100, rpx);
|
|
27
|
+
z-index: 3;
|
|
28
|
+
&::after {
|
|
29
|
+
border: 2rpx dashed blue;
|
|
30
|
+
content: " ";
|
|
31
|
+
position: absolute;
|
|
32
|
+
top:0;
|
|
33
|
+
left:0;
|
|
34
|
+
bottom:0;
|
|
35
|
+
right:0;
|
|
36
|
+
z-index: 4;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
&__edit {
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
position: absolute;
|
|
46
|
+
right: unit(0, rpx);
|
|
47
|
+
top: unit(-52, rpx);
|
|
48
|
+
height: unit(50, rpx);
|
|
49
|
+
line-height: unit(50, rpx);
|
|
50
|
+
display: flex;
|
|
51
|
+
justify-content: center;
|
|
52
|
+
align-items: center;
|
|
53
|
+
background: rgba(0, 0, 0, .6);
|
|
54
|
+
border-radius: unit(10, rpx);
|
|
55
|
+
box-shadow: 0 0 10px rbga(0, 0, 0, 0.3);
|
|
56
|
+
color: #fff;
|
|
57
|
+
font-size: unit(22, rpx);
|
|
58
|
+
|
|
59
|
+
&-icon{
|
|
60
|
+
padding: 0 unit(20, rpx);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&.editx {
|
|
64
|
+
box-sizing: border-box;
|
|
65
|
+
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
//end
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
/**notPreview**/
|
|
73
|
+
.jfb-base-notice-dialog {
|
|
74
|
+
//&:before {
|
|
75
|
+
//content: " ";
|
|
76
|
+
//display: table;
|
|
77
|
+
//}
|
|
78
|
+
}
|
|
79
|
+
/**endNotPreview**/
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
//@AttrImport
|
|
5
|
+
import Attr from "./Attr";
|
|
6
|
+
//@EndAttrImport
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
data() {
|
|
11
|
+
return {
|
|
12
|
+
//#ifdef H5
|
|
13
|
+
|
|
14
|
+
//@AttrData
|
|
15
|
+
Attr:{}, //对外开发编辑属性
|
|
16
|
+
//@EndAttrData
|
|
17
|
+
|
|
18
|
+
// #endif
|
|
19
|
+
cssRoot: 'jfb-base-notice-dialog'
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
created() {
|
|
23
|
+
|
|
24
|
+
//@AttrDataCreated
|
|
25
|
+
this.Attr = this.$xdUniHelper.customClone(Attr);
|
|
26
|
+
//@EndAttrDataCreated
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
},
|
|
30
|
+
}
|
|
@@ -336,6 +336,29 @@ export default {
|
|
|
336
336
|
],
|
|
337
337
|
hidden: data.previewCurrent !== 'card'
|
|
338
338
|
},
|
|
339
|
+
{
|
|
340
|
+
label: "无票券时是否展示购买新卡入口:",
|
|
341
|
+
ele: "xd-radio",
|
|
342
|
+
valueKey: "isShowBuy",
|
|
343
|
+
value: data.isShowBuy || "N",
|
|
344
|
+
list: [
|
|
345
|
+
{ label: "展示", value: "Y" },
|
|
346
|
+
{ label: "隐藏", value: "N" }
|
|
347
|
+
],
|
|
348
|
+
groupKey: "content",
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
label: '购买新卡文案:',
|
|
352
|
+
ele: 'el-input',
|
|
353
|
+
type: 'text',
|
|
354
|
+
valueKey: 'buy_name',
|
|
355
|
+
groupKey:'content',
|
|
356
|
+
value: data.buy_name || '',
|
|
357
|
+
placeholder: '请输入购买新卡文案',
|
|
358
|
+
className: 'input80',
|
|
359
|
+
inline: false,
|
|
360
|
+
notice: '当未设置文案时,页面默认展示为"<span style="color:red">购买新卡</span>",建议不超过<span style="color:red">4</span>个汉字'
|
|
361
|
+
},
|
|
339
362
|
{
|
|
340
363
|
ele: "title",
|
|
341
364
|
label: "我的优惠券内容配置",
|
|
@@ -1114,6 +1137,18 @@ export default {
|
|
|
1114
1137
|
},
|
|
1115
1138
|
inline: false,
|
|
1116
1139
|
},
|
|
1140
|
+
{
|
|
1141
|
+
label: '购买新卡地址:',
|
|
1142
|
+
ele: 'xd-select-pages-path',
|
|
1143
|
+
valueKey: 'buy_new_url',
|
|
1144
|
+
groupKey:'advanced',
|
|
1145
|
+
placeholder: '请选择购买新卡地址',
|
|
1146
|
+
value: data.buy_new_url || null,
|
|
1147
|
+
setting: {
|
|
1148
|
+
router: XdBus.getParentApi('getPagesTree'),
|
|
1149
|
+
},
|
|
1150
|
+
inline: false,
|
|
1151
|
+
},
|
|
1117
1152
|
].filter(i=>i)
|
|
1118
1153
|
},
|
|
1119
1154
|
advanced: [],
|
|
@@ -104,7 +104,9 @@
|
|
|
104
104
|
</view>
|
|
105
105
|
<view v-else class="empty_data">
|
|
106
106
|
<image :src="emptyBg"></image>
|
|
107
|
-
|
|
107
|
+
<view style="display:flex;align-items: center;justify-content: center;">
|
|
108
|
+
暂无票券 <view v-if="isShowBuy==='Y'" class="buy_new" @click="toBuyNew" :style="{color: mainColor}"><view>{{buy_name}}</view> <xd-font-icon size="20" icon="iconxiangyou_xian"></xd-font-icon></view>
|
|
109
|
+
</view>
|
|
108
110
|
</view>
|
|
109
111
|
</view>
|
|
110
112
|
</template>
|
|
@@ -245,6 +247,9 @@
|
|
|
245
247
|
cardBtnMinWidth: 100,
|
|
246
248
|
menuShowType: "text",
|
|
247
249
|
cardFontColor: "",
|
|
250
|
+
buy_new_url: '',
|
|
251
|
+
isShowBuy: "",
|
|
252
|
+
buy_name: ""
|
|
248
253
|
}
|
|
249
254
|
},
|
|
250
255
|
computed: {
|
|
@@ -587,6 +592,9 @@
|
|
|
587
592
|
this.noticePadding = getContainerPropsValue(value, "content.noticePadding", {top: 20, left: 20, right: 20, bottom: 20});
|
|
588
593
|
this.noticeFont = getContainerPropsValue(value, "content.noticeFont", {});
|
|
589
594
|
this.noticeMoreFont = getContainerPropsValue(value, "content.noticeMoreFont", {});
|
|
595
|
+
this.isShowBuy = getContainerPropsValue(value, "content.isShowBuy", "N");
|
|
596
|
+
this.buy_name = getContainerPropsValue(value, "content.buy_name", "购买新卡");
|
|
597
|
+
this.buy_new_url = getContainerPropsValue(value,"content.buy_new_url",{value: ""}).value;
|
|
590
598
|
|
|
591
599
|
console.log(this.cardShadow, 'cardShadow')
|
|
592
600
|
if(this.bindCardTextStyle && !this.bindCardTextStyle.color){
|
|
@@ -716,6 +724,11 @@
|
|
|
716
724
|
url: this.disabledPath
|
|
717
725
|
})
|
|
718
726
|
},
|
|
727
|
+
toBuyNew() {
|
|
728
|
+
this.$xdUniHelper.navigateTo({
|
|
729
|
+
url: `${this.buy_new_url}`,
|
|
730
|
+
});
|
|
731
|
+
},
|
|
719
732
|
onJfbScroll(options) {
|
|
720
733
|
// console.log('event.onJfbScroll', options)
|
|
721
734
|
},
|
|
@@ -886,6 +899,13 @@
|
|
|
886
899
|
flex-direction: column;
|
|
887
900
|
align-items: center;
|
|
888
901
|
justify-content: center;
|
|
902
|
+
.buy_new {
|
|
903
|
+
display: flex;
|
|
904
|
+
margin-left: 8rpx;
|
|
905
|
+
& > view:first-child {
|
|
906
|
+
margin-right: 8rpx;
|
|
907
|
+
}
|
|
908
|
+
}
|
|
889
909
|
& > image {
|
|
890
910
|
width: unit(460,rpx);
|
|
891
911
|
height: unit(400,rpx);
|
|
@@ -44,6 +44,29 @@ export default {
|
|
|
44
44
|
notice: '卡券自定义名称设置,默认值:<span style="color:red">卡券</span>,长度为:1-4字符',
|
|
45
45
|
inline: false,
|
|
46
46
|
},
|
|
47
|
+
{
|
|
48
|
+
label: "无票券时是否展示购买新卡入口:",
|
|
49
|
+
ele: "xd-radio",
|
|
50
|
+
valueKey: "isShowBuy",
|
|
51
|
+
value: data.isShowBuy || "N",
|
|
52
|
+
list: [
|
|
53
|
+
{ label: "展示", value: "Y" },
|
|
54
|
+
{ label: "隐藏", value: "N" }
|
|
55
|
+
],
|
|
56
|
+
groupKey: "content",
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
label: '购买新卡文案:',
|
|
60
|
+
ele: 'el-input',
|
|
61
|
+
type: 'text',
|
|
62
|
+
valueKey: 'buy_name',
|
|
63
|
+
groupKey:'content',
|
|
64
|
+
value: data.buy_name || '',
|
|
65
|
+
placeholder: '请输入购买新卡文案',
|
|
66
|
+
className: 'input80',
|
|
67
|
+
inline: false,
|
|
68
|
+
notice: '当未设置文案时,页面默认展示为"<span style="color:red">购买新卡</span>",建议不超过<span style="color:red">4</span>个汉字'
|
|
69
|
+
},
|
|
47
70
|
|
|
48
71
|
//style
|
|
49
72
|
{
|
|
@@ -519,6 +542,18 @@ export default {
|
|
|
519
542
|
router: XdBus.getParentApi('getPagesTree'),
|
|
520
543
|
},
|
|
521
544
|
},
|
|
545
|
+
{
|
|
546
|
+
label: '购买新卡地址:',
|
|
547
|
+
ele: 'xd-select-pages-path',
|
|
548
|
+
valueKey: 'buy_new_url',
|
|
549
|
+
groupKey:'advanced',
|
|
550
|
+
placeholder: '请选择购买新卡地址',
|
|
551
|
+
value: data.buy_new_url || null,
|
|
552
|
+
setting: {
|
|
553
|
+
router: XdBus.getParentApi('getPagesTree'),
|
|
554
|
+
},
|
|
555
|
+
inline: false,
|
|
556
|
+
},
|
|
522
557
|
{
|
|
523
558
|
label: '',
|
|
524
559
|
ele: 'slot',
|
|
@@ -19,14 +19,26 @@
|
|
|
19
19
|
<view :style="{borderRadius: bodyRadius + 'rpx', backgroundColor:bodyBackgroundColor, padding:outPadding}">
|
|
20
20
|
<view class="my-card-add__btn" :style="[titleMarginComp]">
|
|
21
21
|
<view :style="[titleStyleComp]">我的{{cardName}}</view>
|
|
22
|
-
<view
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
<
|
|
26
|
-
icon
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
<view style="display:flex">
|
|
23
|
+
<view v-if="isShowBuy==='Y'" class="addBtn" :style="[addBtnStyleComp]" @click="toBuyNew">
|
|
24
|
+
<text>{{buy_name}}</text>
|
|
25
|
+
<view v-if="isShowICONBtn === 'Y'">
|
|
26
|
+
<xd-font-icon
|
|
27
|
+
icon="iconxiangyou_xian"
|
|
28
|
+
:color="addBtnStyleComp.color"
|
|
29
|
+
:size="20"
|
|
30
|
+
></xd-font-icon>
|
|
31
|
+
</view>
|
|
32
|
+
</view>
|
|
33
|
+
<view class="addBtn" :style="[addBtnStyleComp]" @click="handleToLink(add_url)">
|
|
34
|
+
<text>添加{{cardName}}</text>
|
|
35
|
+
<view v-if="isShowICONBtn === 'Y'">
|
|
36
|
+
<xd-font-icon
|
|
37
|
+
icon="iconxiangyou_xian"
|
|
38
|
+
:color="addBtnStyleComp.color"
|
|
39
|
+
:size="20"
|
|
40
|
+
></xd-font-icon>
|
|
41
|
+
</view>
|
|
30
42
|
</view>
|
|
31
43
|
</view>
|
|
32
44
|
</view>
|
|
@@ -188,7 +200,9 @@
|
|
|
188
200
|
is_border: 'Y',
|
|
189
201
|
is_border_w: 0,
|
|
190
202
|
is_border_c: '',
|
|
191
|
-
|
|
203
|
+
buy_new_url: '',
|
|
204
|
+
isShowBuy: "",
|
|
205
|
+
buy_name: ""
|
|
192
206
|
}
|
|
193
207
|
},
|
|
194
208
|
watch: {
|
|
@@ -211,6 +225,12 @@
|
|
|
211
225
|
})
|
|
212
226
|
},
|
|
213
227
|
|
|
228
|
+
toBuyNew() {
|
|
229
|
+
this.$xdUniHelper.navigateTo({
|
|
230
|
+
url: `${this.buy_new_url}`,
|
|
231
|
+
});
|
|
232
|
+
},
|
|
233
|
+
|
|
214
234
|
/**
|
|
215
235
|
* @description 监听事件变化
|
|
216
236
|
* @param container {object} 业务组件对象自己
|
|
@@ -258,6 +278,10 @@
|
|
|
258
278
|
this.add_url = getContainerPropsValue(container, 'content.add_url', {value: ''}).value;
|
|
259
279
|
this.pwd_url = getContainerPropsValue(container, 'content.pwd_url', {value: ''}).value;
|
|
260
280
|
this.card_url = getContainerPropsValue(container, 'content.card_url', {value: ''}).value;
|
|
281
|
+
|
|
282
|
+
this.isShowBuy = getContainerPropsValue(container, "content.isShowBuy", "N");
|
|
283
|
+
this.buy_name = getContainerPropsValue(container, "content.buy_name", "购买新卡");
|
|
284
|
+
this.buy_new_url = getContainerPropsValue(container,"content.buy_new_url",{value: ""}).value;
|
|
261
285
|
},
|
|
262
286
|
}
|
|
263
287
|
}
|
|
@@ -273,6 +297,11 @@
|
|
|
273
297
|
display: flex;
|
|
274
298
|
justify-content: center;
|
|
275
299
|
align-items: center;
|
|
300
|
+
width: unit(200, rpx);
|
|
301
|
+
height: unit(60, rpx);
|
|
302
|
+
line-height: unit(60, rpx);
|
|
303
|
+
text-align: center;
|
|
304
|
+
margin-left: 20rpx;
|
|
276
305
|
|
|
277
306
|
& > view {
|
|
278
307
|
margin-left: 10rpx;
|
|
@@ -287,13 +316,6 @@
|
|
|
287
316
|
justify-content: space-between;
|
|
288
317
|
align-items: center;
|
|
289
318
|
font-size: unit(28, rpx);
|
|
290
|
-
|
|
291
|
-
& > view:nth-child(2) {
|
|
292
|
-
width: unit(200, rpx);
|
|
293
|
-
height: unit(60, rpx);
|
|
294
|
-
line-height: unit(60, rpx);
|
|
295
|
-
text-align: center;
|
|
296
|
-
}
|
|
297
319
|
}
|
|
298
320
|
|
|
299
321
|
&__link {
|