多模块重构 12:修改项目名字,按照新的规则

This commit is contained in:
YunaiV
2022-02-02 22:33:39 +08:00
parent 352a67c530
commit 0773a4c4d7
1040 changed files with 12 additions and 190 deletions

View File

@ -0,0 +1,53 @@
<template>
<view class="mix-price-view" :style="{fontSize: size - 8 + 'rpx'}">
<text></text>
<text class="price" :style="{fontSize: size + 'rpx'}">{{ priceArr[0] }}</text>
<text>.{{ priceArr[1] }}</text>
</view>
</template>
<script>
/**
* 价格显示组件
*/
export default {
data() {
return {
priceArr: []
};
},
props: {
price: {
type: Number,
default: 0
},
size: {
type: Number,
default: 36
}
},
watch: {
price(){
this.render();
}
},
created() {
this.render();
},
methods: {
render(){
const price = parseFloat(this.price).toFixed(2);
this.priceArr = (''+price).split('.');
}
}
}
</script>
<style scoped lang="scss">
.mix-price-view{
color: $base-color;
}
.price{
font-weight: 700;
}
</style>