fix: 立即续费
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 1m16s

This commit is contained in:
luo
2026-07-28 14:47:34 +08:00
parent 4f281da778
commit 64bccffe28
5 changed files with 69 additions and 14 deletions

View File

@@ -18,10 +18,13 @@
{{ networkStatus == 1 ? '正常' : '停机' }}
</view>
</view>
<button class="renew-button" @tap.stop="emit('renew')">立即续费</button>
</view>
</template>
<script setup>
const emit = defineEmits(['renew']);
defineProps({
currentCardNo: { type: String, default: '' },
deviceInfo: { type: Object, default: () => ({}) },
@@ -44,5 +47,17 @@
flex: 1;
}
.renew-button {
margin: 24rpx 0 0;
background: var(--primary);
color: #fff;
border: none;
border-radius: 12rpx;
font-size: 26rpx;
line-height: 2.6;
&::after { border: none; }
}
}
</style>