123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <template>
- <!-- 用户 -->
- <view>
- <view class="classify-main" v-if="userType == '1'">
- <up-tabs v-if="column2 && column2.length > 0" :list="column2" :scrollable="false" @change="onChange"
- :activeStyle="{
- color: 'rgba(255, 87, 4, 1)',
- fontWeight: 'bold',
- transform: 'scale(1.05)'
- }" lineColor="rgba(255, 87, 4, 1)" :current="tabKey">
- </up-tabs>
- <view class="list">
- <OrderItem v-if="dataList && dataList.length > 0" :dataList="dataList" />
- <view v-else class="empty-null">
- <img src="/static/empty/订单为空.png" alt="">
- </view>
- </view>
- </view>
- <view>
- <up-list @scrolltolower="scrolltolower">
- <up-list-item v-for="(item, index) in dataList" :key="index">
- <view class="list-item">
- <!-- 左侧图片 -->
- <image src="/static/img/dd.png" mode="aspectFill" class="item-image"></image>
- <!-- 中间信息 -->
- <view class="item-info">
- <view class="info-line">姓名:王麻子</view>
- <view class="info-line">类别:刨土豆</view>
- <view class="info-line">技能介绍:{{ item.remark }}</view>
- </view>
- <!-- 右侧信息 -->
- <view class="item-right">
- <view class="rating">评分:9.5</view>
- <up-tag text="标签" plain size="mini" class="tag"></up-tag>
- <up-button type="primary" text="沟通" size="small" class="action-btn"
- @click="handlClick(item)"></up-button>
- </view>
- </view>
- </up-list-item>
- </up-list>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- onMounted
- } from "vue"
- // const tab = ref('')
- const userType = uni.getStorageSync('userType') //读取本地存储
- // 用户/志愿者 识别标识
- const userOrWorker = uni.getStorageSync('storage_data').vuex_userOrWorker //读取本地存储
- const column2 = [{
- name: "全部",
- value: "",
- },
- {
- name: "待支付",
- value: "1",
- },
- {
- name: "待服务",
- value: "2",
- },
- {
- name: "进行中",
- value: "3",
- },
- {
- name: "已完成",
- value: "4",
- },
- {
- name: "已取消",
- value: "5",
- }
- ]
- const props = defineProps({
- dataList: {
- typeof: Array,
- default: () => [],
- },
- })
-
- const emits = defineEmits([
- 'fetchData'
- ])
- const handlClick = (item) => {
- const mainOrderId = item.mainOrderId; // 获取详情id
- uni.navigateTo({
- url: `/pages_classify/pages/orderItem/orderdetails?mainOrderId=${mainOrderId}`
- });
- }
- function onChange(tabItem) {
- // tab.value = tabItem.value;
- emits('fetchData', tabItem.value )
- }
- </script>
- <style scoped>
- .list-item {
- display: flex;
- padding: 24rpx 24rpx;
- align-items: flex-start;
- gap: 24rpx;
- }
- .item-image {
- width: 160rpx;
- height: 180rpx;
- border-radius: 16rpx;
- object-fit: cover;
- }
- .item-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- gap: 14rpx;
- }
- .info-line {
- font-size: 28rpx;
- color: #333;
- line-height: 1.6;
- }
- .item-right {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- gap: 16rpx;
- min-width: 160rpx;
- }
- .rating {
- font-size: 28rpx;
- color: #f39c12;
- font-weight: bold;
- }
- .tag {
- transform: scale(0.9);
- /* 缩小标签尺寸 */
- }
- .action-btn {
- margin-top: 18rpx;
- width: 100%;
- }
- </style>
|