From c33ec89d44e8b527f43efd8df2cf9a40cf16063c Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Thu, 31 Oct 2024 15:00:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/api.js | 27 +++- components/config/configPopup.vue | 3 + components/list/activity/activityInfo.vue | 106 ++++++++++++++ components/list/activity/activityItem.vue | 203 ++------------------------ components/list/dynamic/daynamicInfo.vue | 81 ++++++++++ components/list/dynamic/dynamicItem.vue | 201 ++----------------------- components/list/dynamic/dynamicItemEdit.vue | 178 ++-------------------- components/list/dynamic/userHeadItem.vue | 134 +++++++++++++++++ mixins/list.js | 5 +- pages.json | 2 +- pages/index/activity.vue | 10 +- pages/index/index.vue | 10 +- pages_order/activity/activityDetail.vue | 193 ++++++++++++++---------- pages_order/auth/wxLogin.vue | 17 ++- pages_order/car/carList.vue | 36 ++++- pages_order/car/carListDetail.vue | 150 ++++++++++++++++++- pages_order/components/list/cart/cartItem.vue | 109 ++++++++++++++ pages_order/post/postDetail.vue | 187 ++---------------------- pages_order/scenicSpot/scenicSpotList.vue | 6 - static/image/activity/h.png | Bin 0 -> 2464 bytes static/image/activity/price.png | Bin 0 -> 2686 bytes static/image/activity/user.png | Bin 0 -> 2784 bytes 22 files changed, 819 insertions(+), 839 deletions(-) create mode 100644 components/list/activity/activityInfo.vue create mode 100644 components/list/dynamic/daynamicInfo.vue create mode 100644 components/list/dynamic/userHeadItem.vue create mode 100644 pages_order/components/list/cart/cartItem.vue create mode 100644 static/image/activity/h.png create mode 100644 static/image/activity/price.png create mode 100644 static/image/activity/user.png diff --git a/api/api.js b/api/api.js index c078588..abf5e60 100644 --- a/api/api.js +++ b/api/api.js @@ -111,6 +111,11 @@ const config = { url: '/city/getActivityDetail', method: 'GET', }, + //获取活动详情 + getActivityDetail: { + url: '/city/getActivityDetail', + method: 'GET', + }, //获取门店信息列表(美食) getStorePage: { url: '/city/getStorePage', @@ -141,7 +146,7 @@ const config = { url: '/city/getScenicDetail', method: 'GET', }, - //获取评论列表type-0帖子-1租房-2工作-3景点-4美食-5活动 + //获取评论列表type-0帖子-1租房-2工作-3景点-4美食-5活动-6人找车-7车找人 getCommentPage: { url: '/city/getCommentPage', method: 'GET', @@ -151,6 +156,26 @@ const config = { url: '/city/getJiangHuInfo', method: 'GET', }, + //获取人找车分页列表 + getPeoplePage: { + url: '/city/getPeoplePage', + method: 'GET', + }, + //获取人找车详情 + getPeopleDetail: { + url: '/city/getPeopleDetail', + method: 'GET', + }, + //获取车找人分页列表 + getCatPage: { + url: '/city/getCatPage', + method: 'GET', + }, + //获取车找人详情 + getCatDetail: { + url: '/city/getCatDetail', + method: 'GET', + }, diff --git a/components/config/configPopup.vue b/components/config/configPopup.vue index 4f70dd3..ef2d21c 100644 --- a/components/config/configPopup.vue +++ b/components/config/configPopup.vue @@ -40,6 +40,9 @@ .configPopup { .content{ padding: 30rpx 20rpx; + overflow: scroll; + height: 100%; + box-sizing: border-box; } } \ No newline at end of file diff --git a/components/list/activity/activityInfo.vue b/components/list/activity/activityInfo.vue new file mode 100644 index 0000000..3360018 --- /dev/null +++ b/components/list/activity/activityInfo.vue @@ -0,0 +1,106 @@ + + + + + \ No newline at end of file diff --git a/components/list/activity/activityItem.vue b/components/list/activity/activityItem.vue index 88b1267..11d5f66 100644 --- a/components/list/activity/activityItem.vue +++ b/components/list/activity/activityItem.vue @@ -1,70 +1,12 @@