|
|
@ -11,16 +11,18 @@ |
|
|
<view class="lf-font-24 lf-m-r-10" style="color:#FF9D9D"> |
|
|
<view class="lf-font-24 lf-m-r-10" style="color:#FF9D9D"> |
|
|
剩余支付时间 |
|
|
剩余支付时间 |
|
|
</view> |
|
|
</view> |
|
|
<countdown-timer :time="time" :autoStart="true" @finish="dateFinish"> |
|
|
|
|
|
|
|
|
<!-- <countdown-timer :time="time" :autoStart="true" @finish="dateFinish"> |
|
|
<template v-slot="{minute, second}"> |
|
|
<template v-slot="{minute, second}"> |
|
|
<!-- <view>{{minute}}:{{second}}</view> --> |
|
|
|
|
|
<view class="lf-flex"> |
|
|
<view class="lf-flex"> |
|
|
<view class="lf-font-24" style="color:#FF9D9D">{{ minute >= 10 ? minute : "0" + minute }}</view> |
|
|
<view class="lf-font-24" style="color:#FF9D9D">{{ minute >= 10 ? minute : "0" + minute }}</view> |
|
|
<view class="lf-font-24" style="color:#FF9D9D">:</view> |
|
|
<view class="lf-font-24" style="color:#FF9D9D">:</view> |
|
|
<view class="lf-font-24" style="color:#FF9D9D">{{ second >= 10 ? second : "0" + second }}</view> |
|
|
<view class="lf-font-24" style="color:#FF9D9D">{{ second >= 10 ? second : "0" + second }}</view> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
</countdown-timer> |
|
|
|
|
|
|
|
|
</countdown-timer> --> |
|
|
|
|
|
<countdown-time minute="5" second="0" :showDay="false" :showHour="false"> |
|
|
|
|
|
|
|
|
|
|
|
</countdown-time> |
|
|
</view> |
|
|
</view> |
|
|
<view> |
|
|
<view> |
|
|
<button class="confirmcash-btn" hover-class="lf-opacity" @click="confirm">确认</button> |
|
|
<button class="confirmcash-btn" hover-class="lf-opacity" @click="confirm">确认</button> |
|
|
@ -32,11 +34,11 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import countdownTimer from '@/components/countdown-timer/countdown-timer'; |
|
|
|
|
|
|
|
|
import countdownTime from '@/components/uni-countdown/uni-countdown.vue'; |
|
|
import lfPayPassword from '@/components/lf-payPassword/lf-payPassword.vue' |
|
|
import lfPayPassword from '@/components/lf-payPassword/lf-payPassword.vue' |
|
|
export default { |
|
|
export default { |
|
|
components: { |
|
|
components: { |
|
|
countdownTimer, |
|
|
|
|
|
|
|
|
countdownTime, |
|
|
lfPayPassword |
|
|
lfPayPassword |
|
|
}, |
|
|
}, |
|
|
data() { |
|
|
data() { |
|
|
|