1
PC-20250623MANY\Administrator
2025-07-22 9ec3bd6e8d7357927533d8966f882cb5d28b3e0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<template>
  <div class="w-600 p-50 box-border rounded-2xl c2cColor">
    <div v-if="show">
      <h2 class="font-35 font-400">{{ $t('温馨提示') }}</h2>
      <div class="mt-38 mb-44 font-26">
        <div>
          <p class="lh-40">{{ $t('解决方案1:') }}</p>
          <p class="lh-40">{{ $t('如果您付款但订单被取消,您的资产将无 法自动退回。请与卖家沟通并要求卖家退款。') }}</p>
        </div>
        <div class="mt-39">
          <p class="lh-40">{{ $t('解决方案2:') }}</p>
          <p class="lh-40">{{ $t('单击下面的按钮,从卖家的个人详情页再下一笔') }}<span style="color: #E35461">{{ $t('相同金额') }}</span>{{
            $t('的订单。然后点击“我已付款,通知卖家”,通过聊天向卖家说明情况。如果卖家没有任何在线广告,请点击【申诉】按钮。') }}
          </p>
        </div>
      </div>
      <van-button color="#1D91FF" class="w-full h-80
        rounded-xl" type="info" @click="$router.push({ path: '/wantBuy/c2cBuy' })">{{ $t('再下一单') }}</van-button>
      <div class="mt-22 font-30 text-center c2cColor" @click="show = false">{{ $t('申诉') }}</div>
    </div>
    <div v-else>
      <h2 class="font-35 font-400">{{ $t('温馨提示') }}</h2>
      <div class="mt-38 mb-44 font-26">
        <p>· {{ $t('如有疑问,请先联系对方处理。') }}</p>
        <p class="my-40">· {{ $t('客服介入后会协助您处理纠纷,但不保证追回资金。') }}</p>
        <p>· {{ $t('恶意申诉属于扰乱平台正常运营秩序的行为,情节严重将冻结账户。') }}</p>
      </div>
      <van-button color="#1D91FF" class="w-full h-80
        rounded-xl" type="info" @click="$router.push({ path: '/appeal/page' })">{{ $t('我知道了') }}</van-button>
    </div>
  </div>
</template>
 
<script>
import {
  Button,
} from "vant";
 
export default {
  name: "Appeal",
  data() {
    return {
      show: true,
    }
  },
  components: {
    [Button.name]: Button,
  }
}
</script>
 
<style lang="scss" scoped>
.van-popup {
  border-radius: 10px;
}
 
.van-cell {
  @include themify() {
    background: themed("main_background");
  }
}
 
.van-button--info {
  @include themify() {
    background: themed("btn_main");
  }
 
  @include themify() {
    border-color: themed("btn_main");
  }
}
</style>