|  | @@ -1,6 +1,5 @@
 | 
	
		
			
				|  |  | -<route lang="yaml">
 | 
	
		
			
				|  |  | -style:
 | 
	
		
			
				|  |  | -  navigationStyle: custom
 | 
	
		
			
				|  |  | +<route lang="json">
 | 
	
		
			
				|  |  | +{ "style": { "navigationStyle": "custom" } }
 | 
	
		
			
				|  |  |  </route>
 | 
	
		
			
				|  |  |  <script setup lang="ts">
 | 
	
		
			
				|  |  |  import Card from '@/components/card.vue'
 | 
	
	
		
			
				|  | @@ -20,46 +19,56 @@ onLoad(async (query: { id: number }) => {
 | 
	
		
			
				|  |  |  </script>
 | 
	
		
			
				|  |  |  <template>
 | 
	
		
			
				|  |  |    <view class="">
 | 
	
		
			
				|  |  | -    <div class="w-full aspect-[1.16/1] bg-amber">
 | 
	
		
			
				|  |  | -      <!-- <StartMenuButton></StartMenuButton> -->
 | 
	
		
			
				|  |  | -    </div>
 | 
	
		
			
				|  |  | +    <div
 | 
	
		
			
				|  |  | +      class="w-full aspect-[1.16/1] bg-[url(https://image.zhuchaohui.com/zhucaohui/9da274c73312f5ff828b60457bf4a469e631c001a4bf1c1f355338887b19f035.png)] bg-contain"
 | 
	
		
			
				|  |  | +    ></div>
 | 
	
		
			
				|  |  |      <wd-navbar
 | 
	
		
			
				|  |  |        fixed
 | 
	
		
			
				|  |  |        left-arrow
 | 
	
		
			
				|  |  |        safe-area-inset-top
 | 
	
		
			
				|  |  |        custom-class="bg-transparent!"
 | 
	
		
			
				|  |  | +      :bordered="false"
 | 
	
		
			
				|  |  |        @click-left="handleBackClick"
 | 
	
		
			
				|  |  |      ></wd-navbar>
 | 
	
		
			
				|  |  | -    <div class="relative top--8 px-3.5">
 | 
	
		
			
				|  |  | +    <div class="flex flex-col gap-6 relative top--14 px-3.5">
 | 
	
		
			
				|  |  |        <Card>
 | 
	
		
			
				|  |  | -        <img
 | 
	
		
			
				|  |  | -          class="w-[78px] h-[78px] rounded-full border border-[#f2f2f2]"
 | 
	
		
			
				|  |  | -          src="https://via.placeholder.com/78x78"
 | 
	
		
			
				|  |  | -        />
 | 
	
		
			
				|  |  | -        <div class="text-black/90 text-lg font-normal font-['PingFang SC'] leading-[10.18px]">
 | 
	
		
			
				|  |  | -          IMOLA瓷砖
 | 
	
		
			
				|  |  | -        </div>
 | 
	
		
			
				|  |  | -        <div class="text-black/40 text-xs font-normal font-['PingFang SC'] leading-[10.18px]">
 | 
	
		
			
				|  |  | -          进口品牌 | 瓷砖
 | 
	
		
			
				|  |  | -        </div>
 | 
	
		
			
				|  |  | -        <div class="text-black/60 text-xs font-normal font-['PingFang SC'] leading-normal">
 | 
	
		
			
				|  |  | -          自营品牌
 | 
	
		
			
				|  |  | -        </div>
 | 
	
		
			
				|  |  | -        <div class="text-black/60 text-xs font-normal font-['PingFang SC'] leading-normal">
 | 
	
		
			
				|  |  | -          70%积分
 | 
	
		
			
				|  |  | -        </div>
 | 
	
		
			
				|  |  | -        <div>
 | 
	
		
			
				|  |  | -          <span class="text-black/40 text-xs font-normal font-['PingFang SC'] leading-[10.18px]">
 | 
	
		
			
				|  |  | -            经营品牌:
 | 
	
		
			
				|  |  | -          </span>
 | 
	
		
			
				|  |  | -          <span
 | 
	
		
			
				|  |  | -            class="text-black/40 text-xs font-normal font-['PingFang SC'] uppercase leading-[10.18px]"
 | 
	
		
			
				|  |  | -          >
 | 
	
		
			
				|  |  | -            imola / chedit
 | 
	
		
			
				|  |  | -          </span>
 | 
	
		
			
				|  |  | +        <div class="flex">
 | 
	
		
			
				|  |  | +          <wd-img
 | 
	
		
			
				|  |  | +            round
 | 
	
		
			
				|  |  | +            width="78"
 | 
	
		
			
				|  |  | +            height="78"
 | 
	
		
			
				|  |  | +            custom-class="border border-[#f2f2f2] border-solid"
 | 
	
		
			
				|  |  | +            src="https://via.placeholder.com/78x78"
 | 
	
		
			
				|  |  | +          ></wd-img>
 | 
	
		
			
				|  |  | +          <div>
 | 
	
		
			
				|  |  | +            <div class="text-black/90 text-lg font-normal font-['PingFang SC'] leading-[10.18px]">
 | 
	
		
			
				|  |  | +              IMOLA瓷砖
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div class="text-black/40 text-xs font-normal font-['PingFang SC'] leading-[10.18px]">
 | 
	
		
			
				|  |  | +              进口品牌 | 瓷砖
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div class="text-black/60 text-xs font-normal font-['PingFang SC'] leading-normal">
 | 
	
		
			
				|  |  | +              自营品牌
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div class="text-black/60 text-xs font-normal font-['PingFang SC'] leading-normal">
 | 
	
		
			
				|  |  | +              70%积分
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div>
 | 
	
		
			
				|  |  | +              <span
 | 
	
		
			
				|  |  | +                class="text-black/40 text-xs font-normal font-['PingFang SC'] leading-[10.18px]"
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +                经营品牌:
 | 
	
		
			
				|  |  | +              </span>
 | 
	
		
			
				|  |  | +              <span
 | 
	
		
			
				|  |  | +                class="text-black/40 text-xs font-normal font-['PingFang SC'] uppercase leading-[10.18px]"
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  | +                imola / chedit
 | 
	
		
			
				|  |  | +              </span>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +          </div>
 | 
	
		
			
				|  |  |          </div>
 | 
	
		
			
				|  |  |        </Card>
 | 
	
		
			
				|  |  | -      <Card class="my-6">
 | 
	
		
			
				|  |  | +      <Card>
 | 
	
		
			
				|  |  |          <div class="my-6 text-black/90 text-lg font-normal font-['PingFang SC'] leading-[10.18px]">
 | 
	
		
			
				|  |  |            品牌介绍
 | 
	
		
			
				|  |  |          </div>
 | 
	
	
		
			
				|  | @@ -75,7 +84,7 @@ onLoad(async (query: { id: number }) => {
 | 
	
		
			
				|  |  |            “蜜蜂”是具有代表意大利风格及产品质量并极富艺术创造力的典型品牌,其生产始终沿着两条轨道运行,一是及时掌握体现时代趋势和审美品位的设计理念,二是不断提高产品科技含量和制作工艺。
 | 
	
		
			
				|  |  |          </div>
 | 
	
		
			
				|  |  |        </Card>
 | 
	
		
			
				|  |  | -      <SectionHeading title="产品展示" custom-class="my-6"></SectionHeading>
 | 
	
		
			
				|  |  | +      <SectionHeading title="产品展示"></SectionHeading>
 | 
	
		
			
				|  |  |        <img class="w-[347px] h-[209px] rounded-2xl" src="https://via.placeholder.com/347x209" />
 | 
	
		
			
				|  |  |        <wd-button custom-class="w-full! rounded-lg!">下载所有素材包</wd-button>
 | 
	
		
			
				|  |  |      </div>
 |