修改部分scss类名,新增部分注释以及登录颜色化配置:)

This commit is contained in:
lemon橪
2021-08-19 16:20:21 +08:00
parent 775bf3055d
commit 224eb05703
27 changed files with 96 additions and 111 deletions

View File

@@ -12,6 +12,10 @@
<view @click="handleAll" :style="{ color: $mainColor }">全部</view>
<view style="font-size: 24rpx; color: #999">可提现金额<span>{{ walletNum | unitPrice }}</span></view>
</view>
</view>
<view class="tips">
最低提现金额为1.00
</view>
</view>
@@ -19,7 +23,7 @@
</view>
</template>
<script>
import { getUserWallet,withdrawalApply } from "@/api/members";
import { getUserWallet, withdrawalApply } from "@/api/members";
export default {
data() {
return {
@@ -67,4 +71,8 @@ export default {
</script>
<style lang="scss" scoped>
@import "./style.scss";
.tips {
font-size: 24rpx;
color: #999;
}
</style>