From ef2e2e3f9c6d37cc47b14ce0444fb75e6aa19dd1 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Wed, 27 Aug 2025 18:12:21 +0800
Subject: [PATCH] 零时提交
---
src/page/home/smart_list.vue | 23 +++++++++++++++--------
1 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/src/page/home/smart_list.vue b/src/page/home/smart_list.vue
index d752bf2..0892332 100644
--- a/src/page/home/smart_list.vue
+++ b/src/page/home/smart_list.vue
@@ -3,7 +3,7 @@
<van-nav-bar
:placeholder="true"
:safe-area-inset-top="true"
- :title="$t('nwetitlea')"
+ :title="$t('資訊')"
left-arrow
@click-left="$router.go(-1)">
</van-nav-bar>
@@ -17,17 +17,18 @@
</div>
<div class="body_price_tips">
<div class="body_price_tips_left">{{$t('参与金额')}}</div>
- <div class="body_price_tips_rigth">{{item.orderAmount}}</div>
+ <div class="body_price_tips_rigth">¥{{item.orderAmount}}</div>
</div>
<div class="body_price_tips" v-if="typeindex==2">
<div class="body_price_tips_left">{{$t('实际购买金额')}}</div>
- <div class="body_price_tips_rigth">{{item.purchaseAmount}}</div>
+ <div class="body_price_tips_rigth">¥{{item.purchaseAmount}}</div>
</div>
<div class="body_price_tips">
<div class="body_price_tips_left">{{$t('提交时间')}}</div>
- <div class="body_price_tips_rigth">{{formatTimestamp(item.orderTime)}}</div>
+ <div class="body_price_tips_rigth">{{formatTimestamp(item.createdAt)}}</div>
</div>
</div>
+ <div v-if="pagelist.length==0" class="buttom_tips">{{$t('zwsj')}}</div>
</div>
</template>
@@ -44,15 +45,15 @@
status:0,
typelist:[
{
- name:this.$t('hjshz'),
+ name:this.$t('审核中'),
key:0
},
{
- name:'已驳回',
+ name:this.$t('已驳回'),
key:2
},
{
- name:'已完成',
+ name:this.$t('已完成'),
key:1
}
]
@@ -73,7 +74,8 @@
const seconds = date.getSeconds(); // 秒钟
// 格式化为 "日月年/时分秒" 格式
- return `${month}.${day}.${year}/${hours}:${minutes}:${seconds}`;
+ return `${year}${this.$t('年')}${month}${this.$t('月')}${day}${this.$t('日')}/${hours}:${minutes}:${seconds}`;
+ // return `${month}`;
},
typeclick(e,i){
this.typeindex = i
@@ -97,6 +99,11 @@
</script>
<style scoped lang="less">
+ .buttom_tips{
+ margin-top: 60px;
+ color: #8c8c8c;
+ text-align: center;
+ }
.body_titles_name{
margin-left: 15px;
color: #8c8c8c;
--
Gitblit v1.9.3