gxd-uni-library-editx 1.0.8-beta2 → 1.0.8-beta3
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
|
@@ -89,7 +89,12 @@
|
|
|
89
89
|
<view><text>{{itemc['show_time_hour']}}</text><text>({{itemc['show_version']}})</text></view>
|
|
90
90
|
<view>{{itemc['hall_name']}}</view>
|
|
91
91
|
<view>
|
|
92
|
-
<xd-unit
|
|
92
|
+
<xd-unit
|
|
93
|
+
font-weight="normal"
|
|
94
|
+
:price="itemc['price']"
|
|
95
|
+
:is-old="isOld"
|
|
96
|
+
:font-size="24"
|
|
97
|
+
></xd-unit>
|
|
93
98
|
</view>
|
|
94
99
|
</view>
|
|
95
100
|
</view>
|
|
@@ -120,7 +125,15 @@
|
|
|
120
125
|
<view class="xd-seat__footer-buy">
|
|
121
126
|
<xd-button @click="handleBuy" type="primary" radius="10rpx">
|
|
122
127
|
<view class="xd-seat__footer-buy-box">
|
|
123
|
-
<xd-unit
|
|
128
|
+
<xd-unit
|
|
129
|
+
v-if="getPrice > 0"
|
|
130
|
+
:price="getPrice"
|
|
131
|
+
:font-size="36"
|
|
132
|
+
:iocn-size=".45"
|
|
133
|
+
font-weight="normal"
|
|
134
|
+
color="#fff"
|
|
135
|
+
:is-old="isOld"
|
|
136
|
+
></xd-unit>
|
|
124
137
|
<view>确认选择</view>
|
|
125
138
|
</view>
|
|
126
139
|
</xd-button>
|
|
@@ -177,6 +190,10 @@
|
|
|
177
190
|
XdNoticeBar
|
|
178
191
|
},
|
|
179
192
|
props:{
|
|
193
|
+
isOld: {
|
|
194
|
+
type: Boolean,
|
|
195
|
+
default: true,
|
|
196
|
+
},
|
|
180
197
|
filmId: {
|
|
181
198
|
type: Number | String,
|
|
182
199
|
required: true
|