1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <template>
- <view class="trajectory">
- <view class="title">
- 访问轨迹
- </view>
- <time-axis>
- <template #title>
- <text>08-28 18:30</text>
- </template>
- <template #content>
- <view class="time-axis-content">
- <image src="../../../../static/temp/icon-new@2x.png" class="axis-product" mode=""></image>
- <view class="axis-product-info">
- <view class="product-title">【商品】</view>
- <view class="product-info">Prostrolane Nature-B 珀洛丽肽焕活
- 修颜精华液</view>
- </view>
- </view>
- </template>
- </time-axis>
- </view>
- </template>
- <script>
- import TimeAxis from './time-axis.vue'
- export default {
- props: {},
- components: {
- TimeAxis,
- },
- data() {
- return {}
- },
- }
- </script>
- <style lang="scss">
- .trajectory {
- margin: 24rpx auto;
- width: 702rpx;
- background-color: #fff;
- border-radius: 16rpx;
- padding: 40rpx 32rpx;
- box-sizing: border-box;
- .title {
- color: #333333;
- font-size: 28rpx;
- font-weight: bold;
- margin-bottom: 30rpx;
- }
- }
- .axis-product {
- width: 136rpx;
- height: 136rpx;
- object-fit: contain;
- }
- .axis-product-info {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 136rpx;
- width: 426rpx;
- color: #333333;
- font-size: 26rpx;
- margin-left: 24rpx;
- }
- .time-axis-content {
- display: flex;
- align-items: center;
- }
- </style>
|