1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <cm-drawer title="商品参数" :visible="visible" @close="$emit('close')" position="bottom">
- <template>
- <scroll-view scroll-y="true" class="cm-product-params">
- <view class="content-tr">
- <view class="content-td">品牌:</view>
- <view class="content-th">{{ productInfo.brandName == null ? '其他' : productInfo.brandName }}</view>
- </view>
- <view class="content-tr">
- <view class="content-td">包装规格:</view> <view class="content-th">{{ productInfo.unit }}</view>
- </view>
- <view class="content-tr">
- <view class="content-td">库存:</view> <view class="content-th">{{ productInfo.stock }}</view>
- </view>
- <view
- class="content-tr"
- v-if="productInfo.parametersList.length > 0"
- v-for="(item, index) in productInfo.parametersList"
- :key="index"
- >
- <view class="content-td">{{ item.paramsName }}:</view>
- <view class="content-th">{{ item.paramsContent }}</view>
- </view>
- </scroll-view>
- <view class="btn" @click="$emit('close')">了解</view>
- </template>
- </cm-drawer>
- </template>
- <script>
- import CmDrawer from '../cm-drawer/cm-drawer.vue'
- export default {
- components: {
- CmDrawer
- },
- props: {
- productInfo: {
- type: Object,
- default: () => {}
- },
- visible: {
- type: Boolean,
- default: false
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .cm-product-params {
- width: 100%;
- padding-top: 24rpx;
- .content-tr {
- width: 100%;
- min-height: 58rpx;
- line-height: 58rpx;
- display: flex;
- .content-td {
- display: flex;
- flex: 3;
- font-size: 26rpx;
- color: #999999;
- line-height: 58rpx;
- text-align: right;
- }
- .content-th {
- display: flex;
- flex: 7;
- font-size: 26rpx;
- color: #333333;
- line-height: 58rpx;
- text-align: left;
- padding-left: 10rpx;
- }
- }
- }
- .btn {
- width: 100%;
- height: 88rpx;
- margin-top: 32rpx;
- margin-bottom: 24rpx;
- background: #ff457b;
- line-height: 88rpx;
- text-align: center;
- color: #ffffff;
- font-size: 28rpx;
- border-radius: 44rpx;
- }
- </style>
|