order-list.vue 3.91 KB
<script setup>
const status = reactive({
  0: {
    txt: "待支付",
    color: "#F740A6",
    bgColor: "#FFE2F2",
  },
  1: {
    txt: "已支付",
    color: "#757575",
    bgColor: "#DDDDDD",
  },
  2: {
    txt: "未支付",
    color: "#34C759",
    bgColor: "#D2FFDD",
  },
  3: {
    txt: "已退款",
    color: "#FFCC00",
    bgColor: "#FFF7D9",
  },
});
</script>

<template>
  <div class="container">
    <div
      v-for="(it, index) in 10"
      :key="index"
      @click="$router.push({ path: '/seat/order_detail' })"
      class="order-item"
    >
      <div class="info_box">
        <img class="cover_img" />
        <div class="info">
          <div class="title">2024年亚洲舞蹈大赛无锡站</div>
          <div class="common">时间:2024.05.06 周六</div>
          <div class="common">地址:无锡太湖博览中心</div>
          <div class="common">订单编号:739274039504</div>
          <div class="common">张数:2张</div>
          <div class="common">金额:¥728.00</div>
          <div class="status">
            <div class="label">订单状态:</div>
            <div class="value">
              <div
                :style="{
                  borderColor: status[0].color,
                  background: status[0].bgColor,
                  color: status[0].color,
                }"
                class="tag"
              >
                {{ status[0].txt }}
              </div>
              <div v-if="true" class="tip">请尽快完成支付,还剩15分00秒</div>
            </div>
          </div>
        </div>
      </div>
      <div class="btn_box">
        <div class="pay">立即支付</div>
        <div class="can_pay">取消支付</div>
      </div>
    </div>
  </div>
</template>

<style scoped lang="scss">
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 26px 0;
  font-family: SourceHanSansCN, SourceHanSansCN;
  .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px;
    background: #fff;
    box-shadow: 0px 0px 46px 0px rgba(1, 16, 64, 0.08);
    border-radius: 8px;
    margin-bottom: 30px;
    .info_box {
      display: flex;
      gap: 20px;
      .cover_img {
        width: 155px;
        height: 200px;
      }
      .info {
        .title {
          font-weight: bold;
          font-size: 22px;
          color: #000000;
          line-height: 33px;
          margin-bottom: 25px;
          margin-bottom: 10px;
        }
        .common {
          font-weight: 500;
          font-size: 16px;
          color: #4e4e4e;
          margin-bottom: 6px;
        }
        .status {
          display: flex;

          .label {
            font-weight: 500;
            font-size: 16px;
            color: #4e4e4e;
            line-height: 24px;
          }
          .value {
            display: flex;
            align-items: center;
            gap: 20px;
            .tag {
              padding: 6px 14px;
              border-radius: 6px;
              border: 1px solid #34c759;
            }
            .tip {
              font-size: 16px;
              color: #f740a6;
              line-height: 24px;
            }
          }
        }
      }
    }
    .btn_box {
      display: flex;
      flex-direction: column;
      gap: 12px;
      .pay {
        width: 175px;
        height: 40px;
        background: linear-gradient(270deg, #493ceb 0%, #8623fc 100%);
        border-radius: 20px;
        font-weight: 500;
        font-size: 16px;
        color: #ffffff;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
      }
      .can_pay {
        width: 175px;
        height: 40px;
        background: #fff;
        border-radius: 20px;
        font-weight: 500;
        font-size: 16px;
        color: #493ceb;
        line-height: 40px;
        border: 1px solid #493ceb;
        text-align: center;
        box-sizing: border-box;
        cursor: pointer;
      }
    }
  }
}
</style>