Browse Source

新增全部动态功能

purui 1 day ago
parent
commit
f769c86960

+ 8 - 0
packages/merchant/src/pages.json

@@ -134,6 +134,14 @@
       }
     },
     {
+      "path": "pages/agent/trends/index",
+      "type": "page",
+      "style": {
+        "navigationBarTitleText": "全部动态",
+        "navigationBarBackgroundColor": "#fff"
+      }
+    },
+    {
       "path": "pages/common/content-html/index",
       "type": "page",
       "style": {

+ 170 - 0
packages/merchant/src/pages/agent/trends/index.vue

@@ -0,0 +1,170 @@
+<route lang="json">
+{
+  "style": {
+    "navigationBarTitleText": "全部动态",
+    "navigationBarBackgroundColor": "#fff"
+  }
+}
+</route>
+<script setup lang="ts">
+import dayjs from 'dayjs'
+import Card from '@/components/card.vue'
+import SectionHeading from '@designer-hub/app/src/components/section-heading.vue'
+import { useUserStore } from '../../../store'
+import { storeToRefs } from 'pinia'
+import { ComponentExposed } from 'vue-component-type-helpers'
+import { filterIcon } from '@designer-hub/assets/src/svgs'
+import { phone, right } from '../../../core/libs/svgs'
+import { referrerOne } from '../../../core/libs/pngs'
+import PageHelperEvo from '@/components/page-helper-evo.vue'
+import { getDesignerPointsActivities } from '../../../core/libs/requests'
+import { useMemberLevelsStore } from '../../../store/member-levles'
+const userStore = useUserStore()
+const { isLogined, userInfo, isAgent, isMerchant } = storeToRefs(userStore)
+const memberLevelsStore = useMemberLevelsStore()
+const { memberLevels } = storeToRefs(memberLevelsStore)
+const pageHelperRef = ref<ComponentExposed<typeof PageHelperEvo>>()
+const id = ref()
+const timeRange = ref([])
+const filterState = ref(false)
+const query = ref({
+	brokerId: String(userInfo.value.userId)
+})
+const filterQuery = ref<{
+  memberLevel: any[]
+  brokerId?: string
+  recommend?: boolean
+  stylistName?: string
+  createTime?: string
+}>({
+  memberLevel: [],
+  brokerId: String(userInfo.value.userId),
+  createTime:""
+})
+const searchFocus = async () => {
+  console.log('focus')
+}
+const searchBlur = async () => {
+  console.log('Blur')
+  query.value = {
+    ...filterQuery.value,
+    memberLevel: filterQuery.value.memberLevel.join(','),
+	createTime:filterQuery.value.createTime
+  }
+  await pageHelperRef.value?.refresh()
+}
+const search = async () => {
+  console.log('search')
+  query.value = {
+    ...filterQuery.value,
+    memberLevel: filterQuery.value.memberLevel.join(','),
+	createTime:filterQuery.value.createTime
+  }
+  await pageHelperRef.value?.refresh()
+}
+const cancelSearch = () => {
+  console.log('cancel')
+}
+const searchChange = (e: any) => {
+  console.log(e)
+}
+const filterData = () => {
+  filterState.value = true
+}
+const handleReset = () => {
+  filterQuery.value = {  createTime:"", memberLevel: [], brokerId: String(userInfo.value.userId) }
+  query.value = {
+	  brokerId: String(userInfo.value.userId)
+  }
+}
+const handleSubmit = () => {
+  query.value = {
+    ...filterQuery.value,
+    memberLevel: filterQuery.value.memberLevel ? filterQuery.value.memberLevel.join(',') : '',
+	createTime:filterQuery.value.createTime
+  }
+  filterState.value = false
+}
+const formatter = (day) => {
+	if(day.length>0){
+		return dayjs(day[0]).format('YYYY-MM-DD HH:mm')+" - " + dayjs(day[1]).format('YYYY-MM-DD HH:mm')
+	}
+}
+const timeChange = (value) => {
+	console.log(value)
+	if(value.value.length>0){
+		filterQuery.value.createTime =  dayjs(value.value[0]).format('YYYY-MM-DD HH:mm:ss')+"," + dayjs(value.value[1]).format('YYYY-MM-DD HH:mm:ss')
+		console.log(filterQuery.value)
+	}
+}
+onLoad(async (options?: Record<string | 'id', any>) => {
+
+})
+</script>
+<template>
+  <div class="px-[24rpx] py-[34rpx]">
+	<PageHelperEvo :request="getDesignerPointsActivities" :query="query">
+		<template #top>
+		  <div class="flex items-center justify-between bg-white pr-3.5">
+		    <div class="flex-1">
+		      <wd-search
+		        v-model="filterQuery.stylistName"
+		        placeholder="搜索"
+		        @focus="searchFocus"
+		        @blur="searchBlur"
+		        @search="search"
+		        @cancel="cancelSearch"
+		        @change="searchChange"
+		        hide-cancel
+		      />
+		    </div>
+		    <wd-img :src="filterIcon" width="22px" height="22px" @click="filterData"></wd-img>
+		  </div>
+		</template>
+		<template #default="{ source }">
+		  <div class="flex flex-col gap-4">
+			  <div class="flex flex-col" v-for="(it, i) in source?.list" :key="i">
+				<Card class="">
+				  <div class="text-black/90 text-sm font-normal font-['PingFang_SC'] leading-none">
+					{{ it.content }}
+				  </div>
+				  <div class="mt-3 text-black/30 text-xs font-normal font-['PingFang_SC'] leading-none">
+					{{ dayjs(it.createTime).format('YYYY-MM-DD HH:mm') }}
+				  </div>
+				</Card>
+			  </div>
+		  </div>
+		</template>
+	</PageHelperEvo>
+	<!-- 筛选action-sheet -->
+	<wd-action-sheet v-model="filterState" title="筛选" @close="filterState = false">
+	  <view class="flex flex-col p-4 overflow-y-auto h-[calc(75vh)]">
+	    <SectionHeading title="会员等级"></SectionHeading>
+	    <wd-checkbox-group shape="button" v-model="filterQuery.memberLevel">
+	      <template
+	        v-for="(tag, index) in memberLevels.map((it) => ({
+	          label: it.memberLevelName,
+	          value: it.id,
+	        }))"
+	        :key="index"
+	      >
+	        <wd-checkbox custom-class="w-50%!" :model-value="tag.value">{{ tag.label }}</wd-checkbox>
+	      </template>
+	    </wd-checkbox-group>
+	
+	    <SectionHeading title="时间区间"></SectionHeading>
+	    <div class="flex items-center justify-between py-4">
+	      <wd-calendar type="daterange" v-model="timeRange" :display-format="formatter" @confirm="timeChange" />
+	    </div>
+	    <div class="flex gap-4 pt-[10px]">
+	      <div class="flex-1">
+	        <wd-button block :round="false" @click="handleReset">重置</wd-button>
+	      </div>
+	      <div class="flex-1">
+	        <wd-button block :round="false" @click="handleSubmit">提交</wd-button>
+	      </div>
+	    </div>
+	  </view>
+	</wd-action-sheet>
+  </div>
+</template>

+ 1 - 1
packages/merchant/src/pages/home/index.vue

@@ -275,7 +275,7 @@ onShareAppMessage(() => ({}))
           </div>
         </div>
         <div>
-          <SectionHeading title="设计师最新动态" path="" custom-class="mb-5"></SectionHeading>
+          <SectionHeading title="设计师最新动态" custom-class="mb-5" path="/pages/agent/trends/index" end-text="查看全部"></SectionHeading>
           <!--          <PageHelperEvo-->
           <!--            :request="getDesignerPointsActivities"-->
           <!--            :query="designerPointsActivitiesQuery"-->

+ 1 - 0
packages/merchant/src/types/uni-pages.d.ts

@@ -14,6 +14,7 @@ interface NavigateToOptions {
        "/pages/agent/report-infos/index" |
        "/pages/agent/tasks/index" |
        "/pages/agent/todo/index" |
+       "/pages/agent/trends/index" |
        "/pages/common/content-html/index" |
        "/pages/home/merchant/add-reporting-information" |
        "/pages/home/merchant/mine" |