- <template>
- <view class="page">
- <view class="red-top">
- <view class="building-title">
- <view class="title-right">
- 建材
- </view>
- <view class="title-left">
- 寻找你想要的建材材料
- </view>
- </view>
- <view class="building-search">
- <view class="address">
- <image src="../../static/image/home/1.png" mode=""></image>
- <view class="eare">
- <text>深圳</text>
- </view>
- <view class="down-arrow"></view>
- </view>
- <view class="search">
- <!-- DC2828 -->
- <uv-search bgColor="#ffffff" placeholder="搜索材料" inputAlign="left" height="70"
- showAction="false"></uv-search>
- </view>
- </view>
- </view>
-
- <view class="image-home">
- <uv-swiper class="uv-swaip"
- keyName="image"
- height="350rpx" :list="bannerList" circular bgColor="#ffffff">
- </uv-swiper>
- </view>
-
- <view class="building-class">
- <view style="width: 710rpx;">
- <uv-grid :col="4" :border="false">
- <uv-grid-item v-for="(item, index) in menuList" :key="index"
- @click="menuClick(item)">
- <image class="image" :src="item.image" mode=""></image>
- <text class="grid-text">{{item.title}}</text>
- </uv-grid-item>
- </uv-grid>
- </view>
- </view>
-
- <view class="hot-building">
- <text>热卖建材</text>
- </view>
-
-
- <view class="shop-list" v-for="(item, index) in list" @click="toGoodInfo(item, index)" :key="index">
- <view class="picture-shop">
- <image :src="item.image" mode=""></image>
- </view>
- <view class="price-shop">
- <view class="top-shop">
- <text>{{item.name}}</text>
- <view class="tag-shop">
- <uv-tags :text="item.categoryName" type="warning" plain size="mini"></uv-tags>
- <uv-tags text="快速下单" type="warning" plain size="mini"></uv-tags>
- </view>
- </view>
- <view class="bottom-price">
- <text style="font-size: 40rpx; ">¥{{item.price}}</text>元/{{item.unit}}
- </view>
- </view>
- <view class="buy-shop">
- <uv-button
- type="primary"
- shape="circle"
- text="立即购买"></uv-button>
- </view>
- </view>
-
- <PrivacyAgreementPoup />
-
- <view class="quick-order-container" @click="toUrl">
- <view class="new-message" v-if="false">
- 你有一条新的快捷下单信息
- </view>
- <view class="quick-order">
- <view class="number-order" v-if="false">
- 1
- </view>
- <image src="../../static/image/home/7.png" mode=""></image>
- </view>
- </view>
-
- <tabber select="home" />
- </view>
- </template>
-
- <script>
- import PrivacyAgreementPoup from '@/components/config/PrivacyAgreementPoup.vue'
- import tabber from '@/components/base/tabbar.vue'
- import mixinsList from '@/mixins/list.js'
- export default {
- mixins: [mixinsList],
- components: {
- tabber,
- PrivacyAgreementPoup,
- },
- data() {
- return {
- keyword: '',
- bannerList : [],
- menuList: [],
- mixinsListApi: 'getProductList',
- }
- },
- computed: {
- },
- onShow() {
- this.getBanner()
- this.getMenu()
- if(uni.getStorageSync('token')){
- this.getOrderInfo()
- }
- },
- methods: {
- // 快捷下单信息
- getOrderInfo(){
- this.$api('getOrderInfo')
- .then(res => {
-
- })
- },
- // 获取轮播图
- getBanner() {
- this.$api('getBanner', res => {
- if (res.code == 200) {
- this.bannerList = res.result
- }
- })
- },
- // 获取菜单
- getMenu() {
- this.$api('getIcon', res => {
- if (res.code == 200) {
- this.menuList = res.result
- }
- })
- },
- toUrl() {
- uni.navigateTo({
- url: '/pages_order/order/fastCreateOrder'
- })
- },
- toGoodInfo(item, index) {
- uni.navigateTo({
- url: `/pages_order/product/productDetail?id=${item.id}`
- })
- },
- menuClick(item){
- if(!item.url){
- return
- }
- uni.navigateTo({
- url: item.url,
- })
- },
- }
- }
- </script>
-
- <style scoped lang="scss">
- .red-top {
- position: relative;
- height: 420rpx;
- background: linear-gradient(to bottom, $uni-color, #f05a45);
- border-bottom-left-radius: 100rpx;
- border-bottom-right-radius: 100rpx;
- z-index: -1;
-
- .building-title {
- position: absolute;
- height: 100rpx;
- width: 100%;
- margin-top: 100rpx;
-
- .title-right {
- color: $uni-bg-color;
- height: 100rpx;
- line-height: 100rpx;
- font-size: 45rpx;
- font-weight: 900;
- margin-left: 30rpx;
- display: inline-block;
- }
-
- .title-left {
- display: inline-block;
- margin-left: 30rpx;
- font-size: 22rpx;
- color: $uni-bg-color;
- }
- }
-
- .building-search {
- position: absolute;
- height: 100rpx;
- width: 100%;
- margin-top: 200rpx;
-
- // background-color: black;
- .address {
- height: 100rpx;
- width: 150rpx;
- position: relative;
- display: flex;
- align-items: center;
-
- image {
- position: absolute;
- height: 20rpx;
- width: 15rpx;
- line-height: 20rpx;
- left: 40rpx;
- top: 42rpx;
- }
-
- .eare {
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- margin-left: 60rpx;
- color: $uni-bg-color;
- }
-
- .down-arrow:after {
- content: "";
- display: inline-block;
- width: 0;
- height: 0;
- border-left: 10rpx solid transparent;
- border-right: 10rpx solid transparent;
- border-top: 15rpx solid $uni-bg-color;
- margin-top: 5rpx;
- position: absolute;
- top: 42rpx;
- left: 130rpx;
- }
- }
-
- .search {
- display: inline-block;
- position: absolute;
- top: 16rpx;
- left: 26%;
- width: 70%;
-
- :deep(.uv-search__content) {
- box-shadow: 0 5rpx 15rpx rgba(0, 0, 0, 0.1);
- }
- }
-
- }
- }
-
- .image-home {
- z-index: 1;
- margin: 0 20rpx;
- margin-top: -90rpx;
- border-radius: 20rpx;
- overflow: hidden;
- box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.1);
- }
-
- .building-class {
- height: 220rpx;
- display: flex;
- justify-content: space-around;
- align-items: center;
- /* 垂直居中 */
- background-color: $uni-bg-color;
- margin: 20rpx 0;
- border-radius: 20rpx;
- box-shadow: 0 5rpx 15rpx rgba(0, 0, 0, 0.05);
-
- image {
- margin-left: 20rpx;
- margin-right: 20rpx;
- margin-bottom: 10rpx;
- width: 90rpx;
- height: 90rpx;
- display: inline-block;
- transition: transform 0.3s;
-
- &:hover {
- transform: scale(1.05);
- }
- }
-
- .grid-text {
- margin-top: 4rpx;
- font-size: 26rpx;
- font-weight: 500;
- color: #333;
- }
- }
-
- .text-building {
- display: flex;
- justify-content: space-around;
- align-items: center;
- /* 垂直居中 */
- background-color: $uni-bg-color;
- text-align: center;
- font-weight: 500;
- margin-bottom: -30rpx;
- padding-bottom: 40rpx;
- // overflow: hidden;
- }
-
- .hot-building {
- margin-top: 25rpx;
- height: 80rpx;
- background-color: $uni-bg-color;
- display: flex;
- align-items: center;
- padding-left: 40rpx;
- font-size: 35rpx;
- font-weight: 600;
- color: #333;
- position: relative;
-
- &::after {
- content: '';
- position: absolute;
- left: 40rpx;
- bottom: 15rpx;
- width: 60rpx;
- height: 6rpx;
- background-color: $uni-color;
- border-radius: 3rpx;
- }
- }
-
- .quick-order-container {
- position: fixed;
- right: 30rpx;
- bottom: 30vh;
- z-index: 99;
- transition: transform 0.3s;
-
- &:active {
- transform: scale(0.95);
- }
- }
-
- .new-message {
- position: absolute;
- top: 50rpx;
- right: 100%;
- white-space: nowrap;
- background-color: #DC2828;
- border-radius: 20rpx;
- font-size: 25rpx;
- color: $uni-bg-color;
- padding: 5rpx 15rpx;
- margin-bottom: 10rpx;
- box-shadow: 0 5rpx 10rpx rgba(220, 40, 40, 0.3);
- animation: pulse 2s infinite;
- }
-
- .quick-order {
- position: relative;
- width: 230rpx;
- height: 160rpx;
-
- image {
- width: 100%;
- height: 100%;
-
- }
-
- .number-order {
- background-color: #DC2828;
- position: absolute;
- font-size: 30rpx;
- height: 40rpx;
- width: 40rpx;
- text-align: center;
- border-radius: 20rpx;
- color: #ffffff;
- top: 10rpx;
- left: 25rpx;
- }
- }
-
- .shop-list {
- width: 95%;
- height: 222rpx;
- display: flex;
- margin: 30rpx auto;
- background-color: #ffffff;
- border-radius: 20rpx;
- box-shadow: 0 5rpx 15rpx rgba(0, 0, 0, 0.05);
- transition: transform 0.3s, box-shadow 0.3s;
-
- &:active {
- transform: translateY(2rpx);
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
- }
-
- // /deep/
- .picture-shop {
- width: 240rpx;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
-
- image {
- width: 200rpx;
- height: 150rpx;
- }
- }
-
- .price-shop {
- width: 250rpx;
- height: 100%;
-
- .top-shop {
- height: 100rpx;
- width: 100%;
- font-size: 32rpx;
- margin-top: 20rpx;
- text-align: center;
- font-weight: 600;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-
- .tag-shop {
- display: flex;
- justify-content: space-around;
- margin-top: 10rpx;
- }
-
- .bottom-price {
- display: inline-block;
- font-size: 28rpx;
- color: #666;
- text {
- color: #DC2828;
- font-weight: 700;
- }
- }
- }
-
- }
-
- .buy-shop {
- height: 100%;
- width: 250rpx;
- display: flex;
- justify-content: center;
- align-items: center;
-
- :deep(.uv-button) {
- transition: transform 0.2s;
- &:active {
- transform: scale(0.95);
- }
- }
- }
-
- @keyframes pulse {
- 0% {
- transform: scale(1);
- }
-
- 50% {
- transform: scale(1.05);
- }
-
- 100% {
- transform: scale(1);
- }
- }
- }
- </style>
|