1
jhzh
2026-02-27 5dfb843c29fdcc1693961b70a36ddee3fea85a4a
src/page/home/smart_list.vue
@@ -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;