update
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import goodsIcon from '../../static/icons/goodsIcon.png';
|
import goodsIcon from '../../static/icons/goodsIcon.png';
|
||||||
import XNav from "../../components/XNav.vue";
|
import XNav from "../../components/XNav.vue";
|
||||||
import {computed, defineAsyncComponent, getCurrentInstance, nextTick, onMounted, ref, reactive} from 'vue';
|
import {computed, defineAsyncComponent, getCurrentInstance, nextTick, onMounted, reactive, ref} from 'vue';
|
||||||
import {onLoad} from "@dcloudio/uni-app";
|
import {onLoad} from "@dcloudio/uni-app";
|
||||||
import XLink from "../../components/XLink.vue";
|
import XLink from "../../components/XLink.vue";
|
||||||
import XNoticeBar from "../../components/XNoticeBar.vue";
|
import XNoticeBar from "../../components/XNoticeBar.vue";
|
||||||
@@ -16,6 +16,7 @@ import XConfirmModal from "../../components/XConfirmModal.vue";
|
|||||||
import LeftMenu from "../../components/LeftMenu.vue";
|
import LeftMenu from "../../components/LeftMenu.vue";
|
||||||
import {v4} from "uuid";
|
import {v4} from "uuid";
|
||||||
import {debounce} from "lodash";
|
import {debounce} from "lodash";
|
||||||
|
import XSquareCarouselImage from "../../components/XSquareCarouselImage.vue";
|
||||||
|
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
// #endif
|
// #endif
|
||||||
@@ -335,14 +336,10 @@ const scroll = ({detail: {scrollTop}}) => {
|
|||||||
<view class="block-info gap-[20rpx]">
|
<view class="block-info gap-[20rpx]">
|
||||||
<view>{{ details.special_text }}</view>
|
<view>{{ details.special_text }}</view>
|
||||||
<view class="!grid grid-cols-3 !mt-[12rpx]">
|
<view class="!grid grid-cols-3 !mt-[12rpx]">
|
||||||
<x-image
|
<x-square-carousel-image
|
||||||
v-for="(v, index) in details.special_images_arr"
|
v-if="details.special_images_arr.length > 0"
|
||||||
:key="index"
|
:list="details.special_images_arr">
|
||||||
class="!size-[96rpx]"
|
</x-square-carousel-image>
|
||||||
:src="v"
|
|
||||||
mode="aspectFill"
|
|
||||||
:draggable="false">
|
|
||||||
</x-image>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -429,6 +426,14 @@ const scroll = ({detail: {scrollTop}}) => {
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
<!-- <view id="DKSM" class="rounded-[16rpx] bg-[#fff] main-details overflow-hidden !p-[24rpx]">-->
|
||||||
|
<!-- <view class="w-full">-->
|
||||||
|
<!-- <view class="title">-->
|
||||||
|
<!-- 打款说明-->
|
||||||
|
<!-- </view>-->
|
||||||
|
<!-- </view>-->
|
||||||
|
<!-- </view>-->
|
||||||
|
|
||||||
<view id="KKSM" class="rounded-[16rpx] bg-[#fff] main-details overflow-hidden !p-[24rpx]">
|
<view id="KKSM" class="rounded-[16rpx] bg-[#fff] main-details overflow-hidden !p-[24rpx]">
|
||||||
<view class="w-full">
|
<view class="w-full">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
|
|||||||
Reference in New Issue
Block a user