12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template name="cm-price">
- <!-- 商品详情价格判断 -->
- <view class="wrap-main">
- <view class="" v-if="userIdentity == 1">
- <view class="wrap-main-price">
- <view class="p-price tui-skeleton-fillet">
- <text class="txt sm">¥</text>
- <text class="txt big">{{product.price1Str}}</text>
- <text class="txt big">{{smallMoney== '0'?'.00':smallMoney}}</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- name:'cm-price',
- props:{
- product:{
- type:Object,
- },
- userIdentity: {
- type: Number,
- default: 2
- },
- ladderPriceList:{
- type: Array,
- },
- retailPrice:{
- type:String,
- },
- smallMoney:{
- type:String,
- },
- minBuyNumber:{
- type: Number,
- default: 1
- }
- },
- data() {
- return{
-
- }
- },
- created() {
-
- },
- methods:{
- },
-
- }
- </script>
- <style lang="scss">
- </style>
|