1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="visitor">
- <view class="visits-time">
- 2023-08-28
- </view>
- <template>
- <view>
- <visits-cell @handlerVisits="handlerVisits" :visits-info="visitsInfo"/>
- </view>
- </template>
- </view>
- </template>
- <script>
- import VisitsCell from '../components/visits-cell.vue'
- export default {
- components: {
- VisitsCell
- },
- data() {
- return {
- visitsInfo: {
- id: 1
- }
- }
- },
- methods: {
- handlerVisits($event) {
- this.$api.navigateTo('/pages/seller/notice/service/visits_details?id=' + $event)
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f7f7f7;
- }
- .visitor {
- .visits-time {
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- padding: 40rpx 0 24rpx 16rpx;
- }
- }
- </style>
|