|
|
|
@ -9,16 +9,16 @@ |
|
|
|
<view class="lf-font-24 lf-m-r-10" style="color:#FF9D9D"> |
|
|
|
剩余支付时间 |
|
|
|
</view> |
|
|
|
<countdown-timer :time="time" :autoStart="true" @finish="dateFinish"> |
|
|
|
<!-- <countdown-timer :time="time" :autoStart="true" @finish="dateFinish"> |
|
|
|
<template v-slot="{minute, second}"> |
|
|
|
<!-- <view>{{minute}}:{{second}}</view> --> |
|
|
|
<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">:</view> |
|
|
|
<view class="lf-font-24" style="color:#FF9D9D">{{ second >= 10 ? second : "0" + second }}</view> |
|
|
|
</view> |
|
|
|
</template> |
|
|
|
</countdown-timer> |
|
|
|
</countdown-timer> --> |
|
|
|
<countdown-time minute="5" second="0" :showDay="false" :showHour="false"></countdown-time> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<button class="btn" hover-class="lf-opacity" @click="comfirm">{{ buttonText }}</button> |
|
|
|
@ -26,12 +26,12 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import countdownTimer from '@/components/countdown-timer/countdown-timer'; |
|
|
|
import countdownTime from '@/components/uni-countdown/uni-countdown'; |
|
|
|
import lfJpCoded from '@/components/lf-jpCoded/lf-jpCoded.vue' |
|
|
|
export default { |
|
|
|
components: { |
|
|
|
lfJpCoded, |
|
|
|
countdownTimer |
|
|
|
countdownTime |
|
|
|
}, |
|
|
|
props: { |
|
|
|
title: { |
|
|
|
|