1.测试优化
parent
9ed9c2a9c7
commit
47ca293f54
8
App.vue
8
App.vue
|
|
@ -71,11 +71,11 @@
|
|||
// tabbar页面
|
||||
tabbar_pages: ['/pages/index/index', '/pages/goods-category/goods-category', '/pages/cart/cart', '/pages/user/user'],
|
||||
// 请求地址
|
||||
request_url: 'https://new.shopxo.vip/',
|
||||
// request_url: 'http://shopxo.com/',
|
||||
// request_url: 'https://new.shopxo.vip/',
|
||||
request_url: 'http://shopxo.com/',
|
||||
// 静态资源地址(如系统根目录不在public目录下面请在静态地址后面加public目录、如:https://d1.shopxo.vip/public/)
|
||||
static_url: 'https://new.shopxo.vip/',
|
||||
// static_url: 'http://shopxo.com/',
|
||||
// static_url: 'https://new.shopxo.vip/',
|
||||
static_url: 'http://shopxo.com/',
|
||||
// 系统类型(默认default、如额外独立小程序、可与程序分身插件实现不同主体小程序及支付独立)
|
||||
system_type: 'default',
|
||||
// 基础信息
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view v-if="(data_goods_list || null) != null && data_goods_list.length > 0">
|
||||
<view v-for="(items, indexs) in data_goods_list" :key="indexs" class="bg-white border-radius-main spacing-mb">
|
||||
<view class="padding-vertical-main" :style="(items.bg_images || null) !== null ? 'background-image: url(' + items.bg_images + ');background-size: auto 100%;' : ''">
|
||||
<view class="padding-top-main" :style="(items.bg_images || null) !== null ? 'background-image: url(' + items.bg_images + ');background-size: auto 100%;' : ''">
|
||||
<view class="hot-list flex-row flex-warp">
|
||||
<view v-for="(item, index) in items.data" :key="index" :class="items.data.length % 2 == 0 ? 'flex-width-half' : items.data.length === index + 1 ? 'wh-auto' : 'flex-width-half'">
|
||||
<view class="padding-horizontal-main">
|
||||
|
|
@ -110,7 +110,7 @@
|
|||
|
||||
<style scoped>
|
||||
.hot-list > .flex-width-half {
|
||||
margin-bottom: 24rpx;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.hot-list > .flex-width-half:nth-last-of-type(1),
|
||||
.hot-list > .flex-width-half:nth-last-of-type(2) {
|
||||
|
|
@ -133,11 +133,11 @@
|
|||
|
||||
|
||||
.hot-list .swiper-2 {
|
||||
height: 158rpx;
|
||||
height: 176rpx;
|
||||
}
|
||||
|
||||
.hot-list .swiper-1 {
|
||||
height: 169rpx;
|
||||
height: 187rpx;
|
||||
}
|
||||
|
||||
.hot-go {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
</view>
|
||||
|
||||
<!-- 分类 -->
|
||||
<view class="spacing-nav-title padding-horizontal-main spacing-nav-title flex-row align-c jc-sb text-size-xs">
|
||||
<view class="padding-horizontal-main">
|
||||
<view class="spacing-nav-title flex-row align-c jc-sb text-size-xs">
|
||||
<text class="text-wrapper title-left-border">所有{{ blog_main_name }}</text>
|
||||
<navigator url="/pages/plugins/blog/search/search" hover-class="none" class="arrow-right padding-right cr-grey">更多</navigator>
|
||||
|
|
|
|||
Loading…
Reference in New Issue