拼团修复

This commit is contained in:
2025-12-18 17:05:43 +08:00
parent 2285c796aa
commit 1539850f96
10 changed files with 986 additions and 171 deletions

View File

@@ -1,5 +1,5 @@
<template>
<text class="status " :class="returnClass">{{status}}</text>
<text class="status " :class="returnClass">{{status}}</text>
</template>
<script setup>
@@ -21,7 +21,8 @@ import { computed } from 'vue'
},
{
name: '待核销',
value: ''
value: '',
class:'warning'
},
{
name: '已核销',
@@ -44,14 +45,18 @@ import { computed } from 'vue'
.status {
padding: 8rpx 18rpx;
border-radius: 8rpx;
border: 2rpx solid transparent;
border: 2rpx solid #333;
&.success {
border-color: rgba(123, 209, 54, 1);
color: rgba(123, 209, 54, 1);
background: rgba(123, 209, 54, 0.12);
}
&.warning{
border-color: rgba(255, 141, 40, 1);
color: rgba(255, 141, 40, 1);
background: rgba(255, 141, 40, 0.12);
}
&.error {
border-color: #FF1C1C;
color: #FF1C1C;