| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419 |
- <template>
- <view>
- <view class="page-index" :class="{ bgf: navIndex > 0 }">
- </view>
- <drag-button
- :isDock="true"
- :price="viprealGoldprice"
- :existTabBar="true"
- @btnClick="btnClick"
- />
- </view>
- </template>
- <script setup>
- // 获取实时金价
- import useRealGoldPrice from "@/hooks/useRealGoldPrice";
- // 测试拖拽
- import dragButton from "@/components/drag-button/drag-button.vue";
- import { onLoad, onShow, onReachBottom } from "@dcloudio/uni-app";
- import { ref, onMounted, reactive, computed, getCurrentInstance } from "vue";
- import Auth from "@/libs/wechat";
- import Cache from "@/utils/cache";
- import { getIndexData, getCoupons, setCouponReceive } from "@/api/api.js";
- import { getProductListAPI } from "@/api/factory.js";
- import { getShare, kefuConfig } from "@/api/public.js";
- import {
- getGroomList as getGroomListApi,
- getProductByCategoryId,
- } from "@/api/store.js";
- import {goShopDetail} from "@/libs/order.js";
- import {silenceBindingSpread} from "@/utils";
- import {getUserLevelInfo} from "@/api/user";
- import {useStoreRights} from "@/stores/rights";
- const userBenefits = ref({});
- // 获取用户权益
- const rightsStore = useStoreRights();
- // 获取实时金价
- const {realGoldprice, fetchGoldPrice} = useRealGoldPrice("RTJ_Au");
- const getUserBenefits = async () => {
- try {
- const res = await getUserLevelInfo(appStore.userInfo.userId);
- userBenefits.value = res.data || {sold: 0, buy: 0}; // 默认权益为0,避免NaN
- } catch (error) {
- console.error("获取用户权益失败:", error);
- userBenefits.value = {sold: 0, buy: 0}; // 出错时默认权益为0
- }
- };
- // 黄金调整价
- const adjustGoldprice = computed(() => {
- const res = rightsStore.userBenefits.nobleMeta?.find(
- (gold) => gold.name == "黄金"
- );
- return res;
- });
- const viprealGoldprice = computed(() => {
- const res =
- Number(realGoldprice.value) -
- Number(rightsStore.userBenefits.buy) +
- Number(adjustGoldprice.value?.sellPriceAdjust) || 0;
- return Number(res).toFixed(2);
- });
- const btnClick = () => {
- uni.navigateTo({
- url: "/pages/mall/dapan",
- });
- };
- // };
- import {useAppStore} from "@/stores/app";
- const appStore = useAppStore();
- const app = getApp();
- const instance = getCurrentInstance();
- const navH = ref("");
- const marTop = ref(0);
- const searchH = ref(0);
- const loading = ref(false);
- // Authorization
- const isShowAuth = ref(false);
- const iShidden = ref(false);
- const window = ref(false);
- // Navigation and Tabs
- const navIndex = ref(0);
- const ProductNavindex = ref(0);
- const listActive = ref(0);
- const tabsScrollLeft = ref(0);
- const scrollLeft = ref(0);
- const lineStyle = ref({});
- const duration = ref(0.2);
- // Home Page Data
- const logoUrl = ref("");
- const site_name = ref("");
- const imgUrls = ref([]);
- const menus = ref([]);
- const roll = ref([]);
- const explosiveMoney = ref([]);
- const goodType = ref(1);
- const goodScroll = ref(true);
- const iSshowH = ref(false);
- const stickyTop = ref(0);
- const navMenus = ref([
- {
- name: "商城订单",
- icon: "icon-wodedingdan1",
- type: 1,
- url: "/pages/order_list/index",
- size: 25,
- },
- {
- name: "购物车",
- icon: "icon-gouwuche",
- type: 2,
- url: "/pages/order_addcart/order_addcart",
- size: 26,
- },
- {
- name: "卡卷包",
- icon: "icon-kabao",
- type: 3,
- url: "/pages/users/user_coupon/index",
- size: 28,
- },
- {
- name: "客服消息",
- icon: "icon-xiaoxi",
- type: 4,
- url: "/pages/message_create/message_create",
- size: 26,
- },
- ]);
- // 轮播图数据
- const list1 = ref([]);
- // Product Lists
- const sortProduct = ref([]);
- const goodsList = ref([]);
- const goodsTwoList = ref([]);
- const currentSecondCategoryId = ref(null);
- const goodsNavs = ref([
- {name: "新品推荐", type: 1, icon: "icon-xinpintuijian", size: 25},
- {name: "黄金金条", type: 2, icon: "icon-touzijintiao1", size: 25},
- {name: "黄金首饰", type: 3, icon: "icon-huangjinshoushi", size: 25},
- {name: "其他", type: 4, icon: "icon-a-ziyuan97", size: 25},
- ]);
- const skillPro = ref({});
- const factoryPro = ref({});
- // 前往福利秒杀
- const goFlashSale = () => {
- uni.navigateTo({
- url: "/pages/users/utils/flashSale/newIndex",
- });
- };
- // 前往团购
- const goGroupBuying = () => {
- uni.navigateTo({
- url: "/pages/group_buying/index",
- });
- };
- // Pagination
- const params = ref({
- page: 1,
- limit: 10,
- });
- const hotScroll = ref(false);
- const headerHeight = ref(0);
- // Other
- const couponList = ref([]);
- const configApi = ref({});
- // pinia
- const isLogin = appStore.isLogin;
- const uid = appStore.uidComputed;
- const arrTemp = [
- "beforePay",
- "afterPay",
- "refundApply",
- "beforeRecharge",
- "createBargain",
- "pink",
- ];
- // 前往定制工厂
- const goFactory = () => {
- uni.navigateTo({
- url: "/pages/users/utils/factory/index",
- });
- };
- // Coupon Functions
- const getCoupon = async (id, index) => {
- try {
- await setCouponReceive(id);
- couponList.value[index].isUse = true;
- uni.showToast({title: "领取成功"});
- } catch (err) {
- uni.showToast({title: err.message, icon: "none"});
- }
- };
- // Tab Navigation Functions
- const clickSort = (index) => {
- listActive.value = index;
- };
- const scroll = (e) => {
- scrollLeft.value = e.detail.scrollLeft;
- };
- // Home Page Data Functions
- const getIndexConfig = async () => {
- try {
- loading.value = true;
- const res = await getIndexData();
- uni.setNavigationBarTitle({title: "首页"});
- skillPro.value = res.data.storeSeckillProductDetailResponse;
- const factoryProRes = await getProductListAPI(0);
- factoryPro.value = factoryProRes.data[0];
- logoUrl.value = res.data.logoUrl;
- site_name.value = "首页";
- list1.value = res.data.banner.map((v) => {
- return {
- url: v.pic,
- title: "",
- type: "image",
- navUrl: v.url,
- };
- });
- // console.log("list1==========>", list1.value);
- menus.value = res.data.menus;
- roll.value = res.data.roll || [];
- // #ifdef H5
- appStore.SET_CHATURL(res.data.yzfUrl);
- Cache.set("chatUrl", res.data.yzfUrl);
- // #endif
- const iconTypes = [
- "icon-shouye",
- "icon-shouye",
- "icon-shouye",
- "icon-shouye",
- ];
- explosiveMoney.value = res.data.explosiveMoney.map((v, i) => ({
- ...v,
- icon: iconTypes[i] || "icon-shouye",
- }));
- await getGroomList();
- await shareApi();
- await getcouponList();
- } catch (err) {
- console.error(err);
- } finally {
- loading.value = false;
- }
- };
- const getcouponList = async () => {
- try {
- const res = await getCoupons({page: 1, limit: 6});
- couponList.value = res.data;
- // #ifdef MP
- uni.getSetting({
- success(res) {
- window.value =
- !res.authSetting["scope.userInfo"] && couponList.value.length
- ? true
- : false;
- iShidden.value = res.authSetting["scope.userInfo"];
- },
- });
- // #endif
- // #ifndef MP
- window.value = isLogin ? false : res.data.length ? true : false;
- // #endif
- } catch (err) {
- uni.showToast({title: err.message, icon: "none"});
- }
- };
- const shareApi = async () => {
- try {
- const res = await getShare();
- configApi.value = res.data;
- // #ifdef H5
- setOpenShare(res.data);
- // #endif
- } catch (err) {
- console.error(err);
- }
- };
- const getChatUrL = async () => {
- try {
- const res = await kefuConfig();
- appStore.SET_CHATURL(res.data.yzfUrl);
- Cache.set("chatUrl", res.data.yzfUrl);
- } catch (err) {
- console.error(err);
- }
- };
- const setOpenShare = (data) => {
- if (Auth.isWeixin()) {
- const configAppMessage = {
- desc: data.synopsis,
- title: data.title,
- link: location.href,
- imgUrl: data.img,
- };
- Auth.wechatEvevt(
- ["updateAppMessageShareData", "updateTimelineShareData"],
- configAppMessage
- );
- }
- };
- // Authorization
- const authColse = (e) => {
- isShowAuth.value = e;
- };
- // Product Navigation
- const ProductNavTab = (item, index) => {
- goodsList.value = [];
- goodsTwoList.value = [];
- listActive.value = index;
- goodType.value = item.type;
- ProductNavindex.value = index;
- params.value.page = 1;
- goodScroll.value = true;
- currentSecondCategoryId.value = null;
- getGroomList(true);
- };
- // Product Details
- const goDetail = async (item) => {
- if (item.activityH5 && item.activityH5.type === "2" && !isLogin) {
- toLogin();
- } else {
- await goShopDetail(item, uid);
- uni.navigateTo({url: `/pages/goods_details/index?id=${item.id}`});
- }
- };
- const godDetail = async (item) => {
- await goShopDetail(item, uid);
- uni.navigateTo({url: `/pages/goods_details/index?id=${item.id}`});
- };
- const isNoDataState = computed(() => {
- return goodsList.value.length === 0 && !loading.value;
- });
- // Product Lists
- const getGroomList = async (onloadH = false) => {
- if (!goodScroll.value) return;
- if (onloadH) iSshowH.value = true;
- try {
- loading.value = true;
- const {data} = await getGroomListApi(goodType.value, params.value);
- iSshowH.value = false;
- goodsList.value = [...goodsList.value, ...data.productList.list] || [];
- goodsTwoList.value = data.secondLevelCategories || [];
- goodScroll.value = data.productList.list.length >= params.value.limit;
- params.value.page++;
- currentSecondCategoryId.value = null;
- } catch (err) {
- console.error(err);
- } finally {
- loading.value = false;
- }
- };
- async function clickSwiper(index) {
- const imgItem = list1.value[index];
- try {
- if (imgItem.navUrl !== "#") {
- await uni.navigateTo({url: imgItem.navUrl});
- } else {
- uni.previewImage({
- current: index,
- urls: list1.value.map((item) => item.url) || [],
- });
- }
- } catch (err) {
- uni.previewImage({
- current: index,
- urls: list1.value.map((item) => item.url) || [],
- });
- return;
- }
- }
- const handleSecondCategoryClick = async (categoryId) => {
- currentSecondCategoryId.value = categoryId;
- params.value.page = 1;
- goodsList.value = [];
- goodScroll.value = false;
- try {
- loading.value = true;
- const {data} = await getProductByCategoryId(categoryId, params.value);
- goodsList.value = data.list;
- goodScroll.value = data.list.length >= params.value.limit;
- params.value.page++;
- } catch (err) {
- console.error(err);
- } finally {
- loading.value = false;
- }
- };
- const get_host_product = async () => {
- if (hotScroll.value) return;
- try {
- loading.onMounted(() => {
- });
- } catch (err) {
- console.error(err);
- } finally {
- loading.value = false;
- }
- };
- onLoad((option) => {
- getUserBenefits();
- uni.getSystemInfo({
- success(res) {
- appStore.SYSTEM_PLATFORM(res.platform);
- },
- });
- // uni.getLocation({
- // type: "gcj02",
- // altitude: true,
- // geocode: true,
- // success: (res) => {
- // try {
- // uni.setStorageSync("user_latitude", res.latitude);
- // uni.setStorageSync("user_longitude", res.longitude);
- // } catch {}
- // },
- // });
- navH.value = app.globalData.navHeight;
- // #ifndef MP
- navH.value = 0;
- // #endif
- isLogin && silenceBindingSpread();
- });
- onShow(() => {
- getIndexConfig();
- uni.setNavigationBarTitle({title: site_name.value});
- });
- onMounted(() => {
- // #ifdef H5
- const appSearchH = uni.createSelectorQuery().select(".serch-wrapper");
- appSearchH
- .boundingClientRect((data) => {
- searchH.value = data.height;
- })
- .exec();
- // #endif
- const query = uni.createSelectorQuery().in(instance.proxy);
- query.select(".header").boundingClientRect((data) => {
- headerHeight.value = Math.ceil(data.height);
- });
- query
- .select(".sticky-box")
- .boundingClientRect((data) => {
- // marTop.value = Util.pxToRpx(data.height);
- // stickyTop.value = data.height;
- console.log({data});
- marTop.value = data.height + 5;
- })
- .exec();
- });
- // #ifdef MP
- const onShareAppMessage = () => {
- return {
- title: configApi.value.title,
- imageUrl: configApi.value.img,
- desc: configApi.value.synopsis,
- path: "/pages/index/index",
- };
- };
- // #endif
- onReachBottom(() => {
- if (navIndex.value === 0) {
- if (currentSecondCategoryId.value) {
- if (goodScroll.value) {
- getProductByCategoryId(currentSecondCategoryId.value, params.value)
- .then(({data}) => {
- // console.log("11111=>", data);
- goodsList.value =
- [...goodsList.value, ...data.productList.list] || [];
- goodScroll.value =
- data.productList.list.length >= params.value.limit;
- params.value.page++;
- })
- .catch(console.error);
- }
- } else {
- if (params.value.page !== 1) {
- getGroomList();
- }
- }
- } else {
- }
- });
- // 定义 onChange 方法
- const onChange = (e) => {
- timeData.value = e;
- };
- const timeData = ref({});
- const calculatedProducts = computed(() => {
- // 计算逻辑与原代码一致,但基于响应式数据 products
- return goodsList.value.map((product) => {
- // 1. 将price字符串转为数字
- const price = Number(product.price);
- // 2. 计算乘积
- const total = (price + product.sales) * realGoldprice.value;
- // 3. 向上取整到两位小数(先放大100倍取整,再缩小100倍)
- const roundedTotal = Math.ceil(total * 100) / 100;
- // 4. 格式化保留两位小数
- const formattedTotal = roundedTotal.toFixed(2);
- return {
- ...product,
- calculatedTotal: formattedTotal, // 新增计算结果字段
- };
- });
- });
- const goBack = () => {
- uni.switchTab({url: "/pages/index/index"});
- };
- // 解析商品规格信息
- const switchTagName = (jsonStr) => {
- // console.log("jsonStr", jsonStr);
- if (!jsonStr || typeof jsonStr !== "string") {
- return [];
- }
- try {
- const attrObj = JSON.parse(jsonStr);
- if (typeof attrObj !== "object" || attrObj === null) {
- return [];
- }
- return Object.entries(attrObj).map(([key, value]) => ({
- key: String(key),
- value: String(value),
- }));
- } catch (err) {
- console.error("解析商品规格失败:", err);
- return [];
- }
- };
- // 价格
- const totalPrice = (pro) => {
- return (
- Number(pro.weight) * Number(pro.price) +
- Number(pro.additionalAmount)
- ).toFixed(2);
- };
- </script>
- <style>
- page {
- display: flex;
- flex-direction: column;
- height: 100%;
- /* #ifdef H5 */
- background-color: #fff;
- /* #endif */
- }
- </style>
- <style lang="scss" scoped>
- .Hoverball {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- background: linear-gradient(180deg, #fefcf9 0%, #fff2df 100%);
- box-shadow: 0rpx 3rpx 12rpx 0rpx rgba(0, 0, 0, 0.16);
- width: 105upx;
- height: 105upx;
- border-radius: 50%; // 圆形按钮
- position: fixed; // 固定定位(不随页面滚动)
- z-index: 999999; // 最高层级,避免被其他元素遮挡
- top: 0%;
- right: 0%;
- .title {
- font-size: 19rpx;
- color: #000000;
- margin-bottom: 4rpx; // 文本与价格间距
- }
- .price {
- font-size: 26rpx;
- color: #cc0000;
- font-weight: bold;
- }
- // 贴边/停止拖拽时的过渡动画
- &.transition {
- transition: left 0.3s ease, top 0.3s ease;
- }
- }
- .couponIndex {
- width: auto;
- height: 238rpx;
- background-image: url("~@/static/images/yhjsy.png");
- background-size: 100% 100%;
- padding-left: 42rpx;
- margin-bottom: 30rpx;
- .titBox {
- padding: 47rpx 0;
- text-align: center;
- height: 100%;
- .tit1 {
- color: #ffebd2;
- font-size: 34rpx;
- font-weight: 600;
- }
- .tit2 {
- color: #ffebd2;
- font-size: 22rpx;
- margin: 10rpx 0 26rpx 0;
- }
- .tit3 {
- color: #ffdaaf;
- font-size: 24rpx;
- .iconfont {
- font-size: 20rpx;
- }
- }
- }
- .listBox {
- padding: 14rpx 0;
- .listActive {
- background-image: url("~@/static/images/lingyhj.png");
- background-size: 100% 100%;
- }
- .listHui {
- background-image: url("~@/static/images/weiling.png");
- background-size: 100% 100%;
- }
- .list {
- width: 170rpx;
- height: 210rpx;
- padding: 16rpx 0;
- text-align: center;
- margin-left: 24rpx;
- .tit {
- font-size: 18rpx;
- padding: 0 26rpx;
- }
- .titActive {
- color: #c99959;
- }
- .price {
- font-size: 46rpx;
- font-weight: 900;
- margin-top: 4rpx;
- }
- .pricehui {
- color: #b2b2b2;
- }
- .fonthui {
- background-color: #f5f5f5 !important;
- }
- .yuan {
- font-size: 24rpx;
- }
- .ling {
- font-size: 24rpx;
- margin-top: 9.5rpx;
- width: 102rpx;
- height: 36rpx;
- line-height: 36rpx;
- background-color: #ffe5c7;
- border-radius: 28rpx;
- margin: auto;
- }
- .priceM {
- color: #ffdaaf;
- font-size: 22rpx;
- margin-top: 14rpx;
- }
- }
- }
- }
- .sticky-box {
- // display: flex;
- // position: -webkit-sticky;
- // position: sticky;
- z-index: 99;
- flex-direction: row;
- // margin: 0px;
- // background: #fff;
- padding-bottom: 30rpx;
- background: #fff;
- margin-top: 30rpx;
- .active {
- color: #000;
- }
- .nav-bd {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx;
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- border-bottom: 3rpx solid #e6e6e6;
- box-sizing: border-box;
- .txt {
- font-size: 28rpx;
- color: #282828;
- }
- .label {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 124rpx;
- height: 32rpx;
- margin-top: 5rpx;
- font-size: 24rpx;
- color: #999;
- }
- &.active {
- color: $theme-color;
- border-bottom: 2rpx solid #000;
- .txt {
- color: $theme-color;
- }
- .label {
- background: linear-gradient(90deg, $bg-star 0%, $bg-end 100%);
- border-radius: 16rpx;
- color: #fff;
- }
- }
- }
- }
- .second-nav {
- width: 100%;
- display: flex;
- flex-wrap: nowrap;
- overflow-x: auto;
- &::-webkit-scrollbar {
- display: none;
- }
- -webkit-overflow-scrolling: touch;
- padding: 0 50rpx;
- box-sizing: border-box;
- .second-nav-item {
- font-size: 26rpx;
- padding: 15rpx 0;
- margin: 0 10rpx 0 0;
- color: #000;
- white-space: nowrap;
- // flex: 1;
- width: 33%;
- display: flex;
- justify-content: center;
- align-items: center;
- &.active {
- color: #ef4800;
- }
- }
- }
- }
- .swiper-box {
- margin: 0 30rpx;
- &::v-deep uni-image {
- width: 100%;
- }
- }
- // 活动专区
- .active-contanier {
- width: 100%;
- box-sizing: border-box;
- padding: 0 30rpx;
- .active-scroll {
- width: 100%;
- white-space: nowrap;
- .active-scroll-content {
- margin: 30rpx 0;
- display: flex;
- flex-direction: row;
- white-space: nowrap;
- }
- }
- .active-item {
- // width: 335rpx;
- width: 48.99%;
- background: #ffffff;
- height: 180rpx;
- box-shadow: 0rpx 3rpx 13rpx 0rpx rgba(0, 0, 0, 0.13);
- border-radius: 20rpx;
- padding: 13rpx 20rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- margin-right: 20rpx;
- flex-shrink: 0;
- .title-box {
- height: 33rpx;
- display: flex;
- font-size: 22rpx;
- align-items: center;
- .title {
- // width: 50%;
- font-weight: bold;
- text-align: center;
- }
- }
- .active-box {
- flex: 1;
- display: flex;
- .active-item-left {
- flex: 1;
- display: flex;
- flex-direction: column;
- .image-box {
- flex: 1;
- // width: 115rpx;
- display: flex;
- align-items: center;
- image {
- border-radius: 5rpx;
- width: 115rpx;
- height: 110rpx;
- }
- .da-jin-tiao {
- width: 51rpx;
- }
- }
- }
- .active-item-right {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- flex: 1;
- min-width: 0;
- width: 0;
- .ms {
- font-size: 16rpx;
- color: #000000;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- max-width: 100%;
- box-sizing: border-box;
- }
- .tag {
- display: flex;
- .tag-text {
- color: #acacac;
- background-color: #ebebeb;
- border-radius: 5rpx;
- font-size: 16rpx;
- text-align: center;
- padding: 0rpx 5rpx;
- }
- }
- .price-box {
- display: flex;
- justify-content: space-between;
- .price {
- font-size: 18rpx;
- font-weight: bold;
- color: #000000;
- margin-right: 10rpx;
- }
- .btn {
- width: 77rpx;
- height: 26rpx;
- background-image: linear-gradient(270deg, #fc962c 0%, #f0470d 100%);
- border-radius: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 14rpx;
- color: #ffffff;
- }
- }
- }
- }
- }
- }
- .listAll {
- width: 20%;
- text-indent: 62rpx;
- font-size: 30rpx;
- border-left: 1px #eee solid;
- margin: 1% 0;
- padding: 5rpx;
- position: relative;
- image {
- position: absolute;
- left: 20rpx;
- top: 8rpx;
- }
- }
- .tab {
- position: relative;
- display: flex;
- font-size: 28rpx;
- white-space: nowrap;
- &__item {
- flex: 1;
- padding: 0 20rpx;
- text-align: center;
- height: 60rpx;
- line-height: 60rpx;
- color: #666;
- &.active {
- color: #09c2c9;
- }
- }
- }
- .tab__line {
- display: block;
- height: 6rpx;
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 1;
- border-radius: 3rpx;
- position: relative;
- background: #2fc6cd;
- }
- .scroll-view_H {
- width: 100%;
- display: flex;
- overflow-x: auto;
- padding: 12rpx 0;
- background-color: #fff;
- box-sizing: border-box;
- &::-webkit-scrollbar {
- display: none;
- }
- -webkit-overflow-scrolling: touch;
- .tab.nav-bd {
- display: flex;
- align-items: center;
- width: 100%;
- }
- #tab_item.item {
- display: flex;
- flex-direction: column;
- align-items: center;
- // margin: 0 24rpx;
- padding: 8rpx 0;
- cursor: pointer;
- flex: 1;
- transition: all 0.3s ease;
- .uni-icons {
- font-size: 44rpx;
- margin-bottom: 6rpx;
- }
- .txt {
- font-size: 26rpx;
- color: #333;
- }
- }
- #tab_list:first-of-type .item.active {
- .uni-icons {
- color: #000;
- }
- .txt {
- color: #000;
- font-weight: bold;
- }
- }
- .privacy-wrapper {
- z-index: 999;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: #7f7f7f;
- .privacy-box {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 560rpx;
- padding: 50rpx 45rpx 0;
- background: #fff;
- border-radius: 20rpx;
- .title {
- text-align: center;
- font-size: 32rpx;
- text-align: center;
- color: #333;
- font-weight: 700;
- }
- .content {
- margin-top: 20rpx;
- line-height: 1.5;
- font-size: 26rpx;
- color: #666;
- text-indent: 54rpx;
- i {
- font-style: normal;
- color: $theme-color;
- }
- }
- .btn-box {
- margin-top: 40rpx;
- text-align: center;
- font-size: 30rpx;
- .btn-item {
- height: 82rpx;
- line-height: 82rpx;
- background: linear-gradient(90deg, #f67a38 0%, #f11b09 100%);
- color: #fff;
- border-radius: 41rpx;
- }
- .btn {
- padding: 30rpx 0;
- }
- }
- }
- }
- }
- .page-index {
- position: relative;
- z-index: 1;
- height: 100%;
- .top-box {
- background: linear-gradient(180deg, #ffe079 0%, #ffffff 100%);
- }
- }
- .header {
- position: sticky;
- top: 0;
- z-index: 200000;
- width: 100%;
- padding: 28rpx 30rpx;
- .serch-wrapper {
- margin-top: var(--status-bar-height);
- display: flex;
- justify-content: center;
- align-items: center;
- /* #ifdef MP-WEIXIN */
- width: 75%;
- /* #endif */
- .logo {
- width: 154rpx;
- height: 47rpx;
- margin-right: 24rpx;
- }
- image {
- width: 118rpx;
- height: 42rpx;
- }
- .input {
- display: flex;
- align-items: center;
- width: 447rpx;
- height: 58rpx;
- background-color: #ffffff;
- border-radius: 10rpx;
- font-size: 22rpx;
- color: #868686;
- .iconfont {
- margin: 0 10rpx;
- font-size: 26rpx;
- color: #666666;
- }
- }
- }
- .tabNav {
- padding-top: 24rpx;
- }
- }
- .page_content {
- padding: 0 30rpx;
- }
- .index-product-wrapper {
- padding: 0 30rpx;
- margin-bottom: 110rpx;
- min-height: 700rpx;
- background: #fff;
- &.on {
- min-height: 1500rpx;
- }
- .list-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .item {
- width: 48.99%;
- height: 463rpx;
- background-color: #ffffff;
- box-shadow: 0rpx 3rpx 13rpx 0rpx rgba(0, 0, 0, 0.13);
- border-radius: 20rpx;
- margin-bottom: 20rpx;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .pictrue {
- position: relative;
- image {
- width: 100%;
- height: 330rpx;
- }
- }
- .text-info {
- padding: 10rpx 20rpx 15rpx;
- .title {
- color: #222222;
- display: flex;
- align-items: center;
- .tip {
- width: 61rpx;
- height: auto;
- font-size: 22rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #ffffff;
- position: relative;
- margin-right: 5rpx;
- background-color: #ef4800;
- border-radius: 5rpx;
- }
- }
- .bottom-row {
- color: $theme-color;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- margin: 10rpx 0 0;
- .price {
- padding-bottom: 4rpx;
- font-weight: 800;
- white-space: nowrap;
- font-size: 28rpx;
- color: #f16327;
- }
- .sales {
- color: #b4b4b4;
- font-size: 22rpx;
- white-space: nowrap;
- color: #6e6e6e;
- }
- }
- }
- }
- &.on {
- display: flex;
- }
- }
- }
- .top-bg-box {
- overflow: hidden;
- // background-image: linear-gradient(
- // to bottom,
- // $header-color 0%,
- // $header-color 10%,
- // #ffe9a1 50%,
- // transparent 100%
- // );
- }
- .nav-list {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 40rpx 0;
- margin: 25rpx 0;
- .item {
- text-align: center;
- }
- }
- .no-data {
- margin: 150rpx auto 0;
- text-align: center;
- img {
- width: 65%;
- height: auto;
- }
- }
- .mores-txt {
- width: 100%;
- align-items: center;
- justify-content: center;
- height: 70rpx;
- color: #999;
- font-size: 24rpx;
- .iconfont {
- margin-top: 2rpx;
- font-size: 20rpx;
- }
- }
- .menu-txt {
- font-size: 24rpx;
- color: #454545;
- }
- .stats {
- position: absolute;
- left: 0px;
- top: 0px;
- z-index: 2000000;
- width: 750rpx;
- height: var(--status-bar-height);
- background: #ffffff;
- }
- // 倒计时样式
- .time {
- @include flex;
- align-items: center;
- &__custom {
- // margin-top: 4px;
- width: 24rpx;
- height: 24rpx;
- background-color: #ef4800;
- border-radius: 4px;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- justify-content: center;
- align-items: center;
- font-size: 12rpx;
- border-radius: 50%;
- margin-left: 10rpx;
- &__item {
- color: #fff;
- font-size: 12rpx;
- text-align: center;
- }
- }
- &__doc {
- color: #ef4800;
- padding: 0px 4rpx;
- margin-bottom: 4rpx;
- }
- &__item {
- color: #606266;
- font-size: 15px;
- margin-right: 4px;
- }
- }
- .live {
- width: 59rpx;
- height: 20rpx;
- background-color: #ef4800;
- border-radius: 5rpx;
- font-size: 12rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 10rpx;
- color: #ffffff;
- }
- .weixia {
- width: 24rpx;
- height: 24rpx;
- background-color: #ef4800;
- border-radius: 50%;
- }
- </style>
- v
|