From 507131cbff30df768441a2167d1c7396ba5ceea2 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 29 十二月 2025 15:35:23 +0800
Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp
---
apps/housekeepingMiniApp/src/subpackages/sercice/serciceDetail/serciceDetail.vue | 225 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 219 insertions(+), 6 deletions(-)
diff --git a/apps/housekeepingMiniApp/src/subpackages/sercice/serciceDetail/serciceDetail.vue b/apps/housekeepingMiniApp/src/subpackages/sercice/serciceDetail/serciceDetail.vue
index 1f5ba06..7f7375d 100644
--- a/apps/housekeepingMiniApp/src/subpackages/sercice/serciceDetail/serciceDetail.vue
+++ b/apps/housekeepingMiniApp/src/subpackages/sercice/serciceDetail/serciceDetail.vue
@@ -1,15 +1,114 @@
<template>
- <PageLayoutWithBg class="mineHire-page-wrapper" :title="'鏈嶅姟鍚�'" :need-auth="false">
+ <PageLayout class="serciceDetail-page-wrapper" :title="detail?.name ?? ''" :need-auth="false">
<LoadingLayout :loading="isLoading" :error="isError" :loadError="refetch">
- <ContentScrollView style="background-color: transparent"> serciceDetail </ContentScrollView>
+ <InfiniteLoading
+ commonMode
+ :refetch="refetch"
+ :isLoading="isLoading"
+ :isError="isError"
+ :showMoreText="false"
+ scrollViewClassName="common-infinite-scroll-list-no-padding"
+ >
+ <div class="serciceDetail-top-view">
+ <SquareView>
+ <nut-swiper
+ :auto-play="3000"
+ v-if="detail?.files?.length > 0"
+ class="serciceDetail-swiper"
+ >
+ <nut-swiper-item
+ v-for="(item, index) in detail.files"
+ :key="item"
+ class="serciceDetail-swiper-item"
+ >
+ <img
+ :src="setOSSLink(item)"
+ class="serciceDetail-swiper-item-img"
+ draggable="false"
+ />
+ </nut-swiper-item>
+ </nut-swiper>
+ </SquareView>
+ <div class="serciceDetail-top-view-title-wrapper">
+ <div class="serciceDetail-price-wrapper">
+ <div class="serciceDetail-price">{{ toThousand(minPrice) }}</div>
+ <div class="serciceDetail-price-unit">鍏冭捣</div>
+ </div>
+ <div class="serciceDetail-top-view-title">{{ detail?.name ?? '' }}</div>
+ </div>
+ </div>
+
+ <List class="serciceDetail-content-list">
+ <ListItem title="瑙勬牸" @click="openSkuDialog()">
+ <template #extra>
+ <div>鍏眥{ detail.specs?.length }}绫�</div>
+ </template>
+ </ListItem>
+ </List>
+ <ProTabs
+ v-model="tab"
+ name="serciceDetail-content-tab"
+ class="serciceDetail-content-tabs"
+ flexTitle
+ >
+ <ProTabPane :title="`鏈嶅姟璇︽儏`" pane-key="1">
+ <RichEditorContent :content="detail?.description ?? ''"></RichEditorContent>
+ </ProTabPane>
+ <ProTabPane :title="`瀹㈡埛璇勪环`" pane-key="2">
+ <NoData />
+ </ProTabPane>
+ <ProTabPane :title="`鐩稿叧鎺ㄨ崘`" pane-key="3">
+ <NoData />
+ </ProTabPane>
+ </ProTabs>
+ </InfiniteLoading>
+ <Sku
+ v-model:visible="skuState.visible"
+ :sku="skuState.sku"
+ v-model:goods="skuState.goods"
+ @clickBtnOperate="clickBtnOperate"
+ >
+ </Sku>
+ <PageFooter>
+ <PageFooterAction
+ :icon="detail.isCollection ? IconAttentionActive : IconAttention"
+ text="鏀惰棌"
+ :isFlex="false"
+ @click="handleAttention"
+ ></PageFooterAction>
+ <PageFooterAction
+ :icon="IconShare"
+ text="瀹㈡湇"
+ :isFlex="false"
+ :open-type="'contact'"
+ ></PageFooterAction>
+ <PageFooterBtn type="primary" @click="openSkuDialog()">棰勭害涓嬪崟</PageFooterBtn>
+ </PageFooter>
</LoadingLayout>
- </PageLayoutWithBg>
+ </PageLayout>
</template>
<script setup lang="ts">
-import { useTaskInfo } from '@12333/hooks';
-import InnerPage from './InnerPage.vue';
+import { useStandardServiceDetail } from '@12333/hooks';
import Taro from '@tarojs/taro';
+import * as standardOrderServices from '@12333/services/apiV2/standardOrder';
+import * as standardServiceServices from '@12333/services/apiV2/standardService';
+import { toThousand, setOSSLink, Message } from '@12333/utils';
+import {
+ Sku,
+ Goods,
+ SkuItem,
+ SkuUtils,
+ List,
+ ListItem,
+ ProTabs,
+ ProTabPane,
+ SquareView,
+} from '@12333/components';
+import { useAccessLogin } from '@/hooks';
+import IconShare from '@/assets/flexJob/icon-share.png';
+import IconAttention from '@/assets/flexJob/icon-attention-lg.png';
+import IconAttentionActive from '@/assets/flexJob/icon-attention-lg-active.png';
defineOptions({
name: 'serciceDetail',
@@ -18,11 +117,125 @@
const router = Taro.useRouter();
const id = router.params?.id ?? '';
-const { isLoading, isError, detail, refetch } = useTaskInfo({
+const tab = ref('1');
+
+const { isLoading, isError, detail, refetch, minPrice } = useStandardServiceDetail({
id,
+ onSuccess(res) {
+ skuState.sku = [
+ {
+ id: SkuUtils.DefaultSkuSpecId,
+ name: '瑙勬牸',
+ list: res.specs.map((item, index) => ({
+ id: item.id,
+ name: item.name,
+ price: item.price,
+ active: index === 0,
+ disable: false,
+ })),
+ },
+ ];
+ skuState.goods = {
+ skuId: SkuUtils.DefaultSkuSpecId,
+ price: res.specs[0].price,
+ imagePath: setOSSLink(res.files[0]),
+ name: res.name,
+ };
+ },
+});
+
+const skuState = reactive({
+ visible: false,
+ sku: [] as SkuItem[],
+ goods: {} as Goods,
+});
+
+// 搴曢儴鎿嶄綔鎸夐挳瑙﹀彂
+const clickBtnOperate = (op: { type: string; value: number }) => {
+ goAddStandardOrder(op.value);
+};
+
+const openSkuDialog = () => {
+ skuState.visible = true;
+};
+
+const goAddStandardOrder = useAccessLogin((specNumber: number) => {
+ const spec = SkuUtils.getCurrentActiveSpec(skuState.sku);
+ Taro.navigateTo({
+ url: `${RouterPath.addStandardOrder}?specNumber=${specNumber}&specId=${spec.id}&id=${id}`,
+ });
+});
+
+const handleAttention = useAccessLogin(async () => {
+ try {
+ let params: API.CollectionStandardServiceCommand = {
+ ids: [id],
+ isCollect: !detail.value.isCollection,
+ };
+ let res = await standardServiceServices.collectionStandardService(params);
+ if (res) {
+ refetch({ type: 'inactive' });
+ }
+ } catch (error) {}
});
</script>
<style lang="scss">
@import '@/styles/common.scss';
+
+.serciceDetail-page-wrapper {
+ .serciceDetail-swiper {
+ width: 100%;
+ height: 100%;
+
+ .serciceDetail-swiper-item-img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ /* 鍙�夛細璋冩暣鍥剧墖瑁佸壀鐨勫榻愭柟寮忥紙榛樿灞呬腑锛� */
+ object-position: center center;
+ }
+ }
+
+ .serciceDetail-top-view {
+ margin-bottom: 20px;
+ background-color: #fff;
+
+ .serciceDetail-top-view-title-wrapper {
+ padding: 24px boleGetCssVar('size', 'body-padding-h') 32px;
+
+ .serciceDetail-price-wrapper {
+ display: flex;
+ align-items: flex-end;
+ margin-bottom: 24px;
+
+ .serciceDetail-price {
+ font-weight: 600;
+ font-size: 48px;
+ color: #ff6414;
+ line-height: 52px;
+ margin-right: 8px;
+ }
+
+ .serciceDetail-price-unit {
+ font-weight: 400;
+ font-size: 28px;
+ color: #ff6414;
+ line-height: 40px;
+ }
+ }
+
+ .serciceDetail-top-view-title {
+ font-weight: 500;
+ font-size: 32px;
+ color: boleGetCssVar('text-color', 'primary');
+ line-height: 44px;
+ }
+ }
+ }
+
+ .serciceDetail-content-list {
+ margin-bottom: 20px;
+ }
+}
</style>
--
Gitblit v1.10.0