This commit is contained in:
hupeng
2023-10-11 11:27:47 +08:00
commit d0b337c596
659 changed files with 67106 additions and 0 deletions

View File

@ -0,0 +1,50 @@
<template>
<view class="buy-progress">
<space align="center">
<view class="buy-progress-info">
<view
class="buy-progress-info-desc"
v-if="surplus"
>
仅剩{{ surplus }}
</view>
</view>
<view class="buy-progress-action">
<uv-button
round
block
type="primary"
>
立即抢购
</uv-button>
</view>
</space>
</view>
</template>
<script>
export default {
name: "buyProgress",
data() {
return {
};
}
}
</script>
<style lang="less">
.buy-progress {
&-info {
flex: 1;
&-desc {
color: #999999;
font-size: 24rpx;
line-height: 40rpx;
}
}
&-action {}
}
</style>