|
@@ -423,7 +423,7 @@ export default {
|
|
|
<script setup>
|
|
|
import { onMounted, reactive, ref } from "vue";
|
|
|
import { getPostDetail, getRedPacket, finishRedPacket, oneKeyLike, oneKeyReTweet, oneKeyFollow, getTaskDetail, getReceivedList, addFinishEvent } from '@/http/redPacket.js'
|
|
|
-import { getQueryString, guid, getBit, formatSecondsAsTime } from '@/uilts/help.js'
|
|
|
+import { getQueryString, guid, getBit,formatSecondsAsDaysOrTime } from '@/uilts/help.js'
|
|
|
import { message } from 'ant-design-vue';
|
|
|
import FontAmount from '@/view/components/font-amount.vue'
|
|
|
import GetMore from '@/view/iframe/publish/components/get-more.vue'
|
|
@@ -878,9 +878,9 @@ function openConutDownTime(end_time_ms, callback) {
|
|
|
if (state.open_timer_status == true || end_time_s <= 0) {
|
|
|
clearInterval(timer)
|
|
|
}
|
|
|
- callback(formatSecondsAsTime(end_time_s))
|
|
|
+ callback(formatSecondsAsDaysOrTime(end_time_s))
|
|
|
}, 1000);
|
|
|
- callback(formatSecondsAsTime(end_time_s))
|
|
|
+ callback(formatSecondsAsDaysOrTime(end_time_s))
|
|
|
}
|
|
|
|
|
|
const openFollowTabs = (arr_name) => {
|