名优特产

This commit is contained in:
THK3121 2023-09-04 18:32:31 +08:00
commit 0b8f4e586a
8 changed files with 2093 additions and 925 deletions

View File

@ -31,7 +31,7 @@
indicator-active-color="#fff"> indicator-active-color="#fff">
<block v-for="(item,index) in swiper['url']" :key="index"> <block v-for="(item,index) in swiper['url']" :key="index">
<swiper-item class="swi_item" @click="swiperClick(item)"> <swiper-item class="swi_item" @click="swiperClick(item)">
<u--image :showLoading="true" :src="item.img" width="724rpx" height="259rpx" mode="aspectFill"> <u--image :showLoading="true" :src="item.img" width="724rpx" height="259rpx" mode="aspectFit">
</u--image> </u--image>
</swiper-item> </swiper-item>
</block> </block>
@ -115,9 +115,6 @@
}, },
mounted() { mounted() {
uni.$on('add', (res) => {
this.street = res.split(',')[0]
})
this.$bus.$on('value-updated', (newValue) => { this.$bus.$on('value-updated', (newValue) => {
// //
this.street = newValue.split(',')[0] this.street = newValue.split(',')[0]
@ -142,17 +139,12 @@
this.$emit('selectPlce', e) this.$emit('selectPlce', e)
this.$emit('change', e) this.$emit('change', e)
this.street = e.value[1].name this.street = e.value[1].name
// this.$nextTick(() => { this.$nextTick(() => {
// uni.$emit('add', e.value[1].name + ',' + e.value[1].code) this.$bus.$emit('value-updated',e.value[1].name + ',' +e.value[1].code);
// this.$bus.$emit('value-updated',
// e.value[1].name + ',' + })
// e.value[1].code);
// })
uni.$emit('add', e.value[1].name + ',' + e.value[1].code)
this.$bus.$emit('value-updated',
e.value[1].name + ',' +
e.value[1].code);
}, },
changeHandler(e) { changeHandler(e) {

View File

@ -216,6 +216,16 @@
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},
{
"path": "supply_chain/suppliers",
"style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "",
"navigationBarBackgroundColor": "#e93323",
"navigationStyle": "custom"
}
}, { }, {
"path": "supply_chain/maps", "path": "supply_chain/maps",
"style": { "style": {

View File

@ -559,9 +559,10 @@
limit: this.sotreParam.limit, limit: this.sotreParam.limit,
order: this.sotreParam.order, order: this.sotreParam.order,
category_id: this.sotreParam.category_id, category_id: this.sotreParam.category_id,
type_id: 10 type_id: this.sotreParam.type_id
} }
console.log(this.sotreParam.category_id)
if (this.latitude) { if (this.latitude) {
serachData.location = this.latitude + ',' + this.longitude serachData.location = this.latitude + ',' + this.longitude
} }
@ -576,7 +577,7 @@
this.storeList = this.storeList.concat(res.data.list) this.storeList = this.storeList.concat(res.data.list)
this.count = res.data.count this.count = res.data.count
this.loading = false this.loading = false
console.log(this.storeList);
}) })
}, },
// //
@ -682,6 +683,7 @@
}, },
// //
confirm2(data) { confirm2(data) {
let arr1 = [], let arr1 = [],
arr2 = [] arr2 = []
if (data.storeTypeArr.length == 0) { if (data.storeTypeArr.length == 0) {

View File

@ -16,9 +16,9 @@
</view> </view>
<zbpSwiper :isSelectPlace="true" :location_Arr="locationArr" :town='street' @kkchange='kkchange'></zbpSwiper> <zbpSwiper :isSelectPlace="true" :location_Arr="locationArr" :town='street' @kkchange='kkchange'></zbpSwiper>
<u-empty :show="jurisdiction" marginTop="260" mode="permission" :text="emptyText" <u-empty :show="jurisdiction" mode="permission" :text="emptyText"
icon="http://cdn.uviewui.com/uview/empty/permission.png"></u-empty> icon="http://cdn.uviewui.com/uview/empty/permission.png"></u-empty>
<view class="business com special_work"> <view class="business com special_work" v-if='jurisdiction==false'>
<view class="title project" > <view class="title project" >
<view>更多功能</view> <view>更多功能</view>
<view class="edit" @click="editFlag = !editFlag">{{editFlag?'完成':'编辑'}}</view> <view class="edit" @click="editFlag = !editFlag">{{editFlag?'完成':'编辑'}}</view>
@ -57,6 +57,7 @@
<view class="" v-if='jurisdiction==false&&isShow==false'> <view class="" v-if='jurisdiction==false&&isShow==false'>
<emptyPage title="暂无信息"></emptyPage> <emptyPage title="暂无信息"></emptyPage>
</view> </view>
</view> </view>
@ -168,6 +169,10 @@
this.getUserInfo() this.getUserInfo()
uni.stopPullDownRefresh() uni.stopPullDownRefresh()
}, },
beforeDestroy () {
//
this.$bus.$off('value-updated')
},
mounted() { mounted() {
if (this.street.length <= 0) { if (this.street.length <= 0) {
this.appLocation() this.appLocation()
@ -333,11 +338,11 @@
}, },
confirm(e) { confirm(e) {
this.street = e.value[1].name this.street = e.value[1].name
uni.setStorageSync('ADRESS_LOCATION',
e.value[1].name + ',' + e.value[1].name + ',' +
e.value[1].code this.$nextTick(() => {
) this.$bus.$emit('value-updated',e.value[1].name + ',' +e.value[1].code);
})
this.showPicker = false this.showPicker = false
}, },
appLocation() { appLocation() {
@ -357,7 +362,10 @@
let town = res.data.address_reference.town.title let town = res.data.address_reference.town.title
let street_id = res.data.address_reference.town.id let street_id = res.data.address_reference.town.id
this.street = res.data.address_component.street this.street = res.data.address_component.street
uni.$emit('add', this.street + ',' + street_id) this.$nextTick(() => {
this.$bus.$emit('value-updated',this.street + ',' +street_id);
})
}).catch(err => { }).catch(err => {
uni.showToast({ uni.showToast({

View File

@ -44,22 +44,22 @@
<view :class="[index%2==0?'goods_item':'goods_items']" @click="gogogo(item)"> <view :class="[index%2==0?'goods_item':'goods_items']" @click="gogogo(item)">
<view class="kk" v-if="index%2==0"> <view class="kk" v-if="index%2==0">
<image :src="item.image[0]" mode="aspectFill" style="width:'365rpx';height:251rpx"> <image :src="item.image[0]" mode="aspectFit" style="width:'365rpx';height:251rpx">
</image> </image>
</view> </view>
<view style="width:'365rpx';height:336rpx" v-else> <view style="width:'365rpx';height:336rpx" v-else>
<image :src="item.image[0]" mode="aspectFill" style="width:'365rpx';height:336rpx"> <image :src="item.image[0]" mode="aspectFit" style="width:'365rpx';height:336rpx">
</image> </image>
</view> </view>
<view class="goods_item_img" v-if="item.video_link.length>0"> <view class="goods_item_img" v-if="item.video_link.length>0">
<image src="@/static/images/sp.png" mode="aspectFill"></image> <image src="@/static/images/sp.png" mode="aspectFit"></image>
</view> </view>
<view class="botm"> <view class="botm">
<view class="title">{{item.title}}</view> <view class="title">{{item.title}}</view>
<view class="goods_info flex_a_c"> <view class="goods_info flex_a_c">
<view class="l_info flex_a_c"> <view class="l_info flex_a_c">
<image :src="(item.author && item.author.avatar) || '/static/images/f.png'" <image :src="(item.author && item.author.avatar) || '/static/images/f.png'"
mode="aspectFill" class="g_img"></image> mode="aspectFit" class="g_img"></image>
<view class="g_name">{{item.author && item.author.nickname}}</view> <view class="g_name">{{item.author && item.author.nickname}}</view>
</view> </view>
<view class="nice_box" @click.stop="giveStart(item)"> <view class="nice_box" @click.stop="giveStart(item)">
@ -85,14 +85,14 @@
</view> </view>
<view class="goods_item_img" v-if="item.video_link.length>0"> <view class="goods_item_img" v-if="item.video_link.length>0">
<image src="@/static/images/sp.png" mode="aspectFill"></image> <image src="@/static/images/sp.png" mode="aspectFit"></image>
</view> </view>
<view class="botm"> <view class="botm">
<view class="title">{{item.title}}</view> <view class="title">{{item.title}}</view>
<view class="goods_info flex_a_c"> <view class="goods_info flex_a_c">
<view class="l_info flex_a_c"> <view class="l_info flex_a_c">
<image :src="(item.author && item.author.avatar) || '/static/images/f.png'" <image :src="(item.author && item.author.avatar) || '/static/images/f.png'"
mode="aspectFill" class="g_img"></image> mode="aspectFit" class="g_img"></image>
<view class="g_name">{{item.author && item.author.nickname}}</view> <view class="g_name">{{item.author && item.author.nickname}}</view>
</view> </view>
<view class="nice_box" @click.stop="giveStart(item)"> <view class="nice_box" @click.stop="giveStart(item)">
@ -401,11 +401,11 @@
confirm(e) { confirm(e) {
this.street = e.value[1].name this.street = e.value[1].name
uni.setStorageSync('ADRESS_LOCATION',
e.value[1].name + ',' + this.$nextTick(() => {
e.value[1].code this.$bus.$emit('value-updated',e.value[1].name + ',' +e.value[1].code);
)
uni.$emit('init', 1); })
this.showPicker = false this.showPicker = false
}, },
changeHandler(e) { changeHandler(e) {
@ -543,10 +543,12 @@
}).then(res => { }).then(res => {
let town = res.data.address_reference.town.title let town = res.data.address_reference.town.title
let street_id = res.data.address_reference.town.id let street_id = res.data.address_reference.town.id
this.street = res.data.address_component.street this.street = res.data.address_component.street
uni.$emit('add',town+','+street_id) this.$nextTick(() => {
this.$bus.$emit('value-updated',this.street + ',' +street_id);
})
}).catch(err => { }).catch(err => {
uni.showToast({ uni.showToast({
title: err, title: err,

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,29 @@
<template> <template>
<view class="Circle_friends"> <view class="Circle_friends">
<view class="circle_friends_wrapper"> <view class="circle_friends_wrapper">
<view @click="selectLocation" v-if="isFshow"> <view @click="selectLocation" v-if="isFshow">
<view class="site-box flex_a_c_j_sb" :style="{'background-color':backColor}"> <view
class="site-box flex_a_c_j_sb"
<view :class="['place_wrapper','flex_a_c',isFshow?'sitebox':'']"> :style="{ 'background-color': backColor }"
<view :class="['iconfont','icon-weizhi',isFshow?'sitebox':'']" style="margin-left: 20rpx;"> >
<view
:class="['place_wrapper', 'flex_a_c', isFshow ? 'sitebox' : '']"
>
<view
:class="['iconfont', 'icon-weizhi', isFshow ? 'sitebox' : '']"
style="margin-left: 20rpx"
>
</view> </view>
<view class="town_name">{{ street }}</view> <view class="town_name">{{ street }}</view>
</view> </view>
<navigator url="/pages/chat/customer_list/index?type=0" hover-class="none"> <navigator
<view :class="['iconfont','icon-xiaoxi',isFshow?'sitebox':'']" style="color:#fff;"></view> url="/pages/chat/customer_list/index?type=0"
hover-class="none"
>
<view
:class="['iconfont', 'icon-xiaoxi', isFshow ? 'sitebox' : '']"
style="color: #fff"
></view>
</navigator> </navigator>
</view> </view>
<!-- <view class="site-box ','flex_a_c_j_sb'" v-if="ishshow"> <!-- <view class="site-box ','flex_a_c_j_sb'" v-if="ishshow">
@ -22,16 +33,20 @@
</view> --> </view> -->
</view> </view>
<zbpSwiper
:isSelectPlace="true"
<zbpSwiper :isSelectPlace="true" :town='street' :streetname='street' :location_Arr="locationArr" :town="street"
@change='dchange'> :streetname="street"
:location_Arr="locationArr"
@change="dchange"
>
</zbpSwiper> </zbpSwiper>
<view class="list"> <view class="list">
<navigator hover-class="none" <navigator
:url="`/pages/nongKe/supply_chain/supplier?type_id=10&street_id=${street_id}`"> hover-class="none"
:url="`/pages/nongKe/supply_chain/supplier?type_id=10&street_id=${street_id}`"
>
<view class="list-m"> <view class="list-m">
<image src="@/static/images/f6.png" mode="aspectFit"></image> <image src="@/static/images/f6.png" mode="aspectFit"></image>
<view class="list-title"> <view class="list-title">
@ -39,33 +54,24 @@
<image src="@/static/images/p9.png" mode="aspectFit"></image> <image src="@/static/images/p9.png" mode="aspectFit"></image>
<view class="titlea-con"> <view class="titlea-con">
<view class="titlea">september</view> <view class="titlea">september</view>
<view class="titleb"> <view class="titleb"> 9 </view>
9
</view>
</view> </view>
</view> </view>
<view class="list-titleb"> <view class="list-titleb">
<view class="titlea"> <view class="titlea">
{{ town }} {{ town }}
</view> </view>
<view class="titleb"> <view class="titleb"> 综合供销云市场 </view>
综合供销云市场
</view> </view>
</view> </view>
<view class="list-title-info" style="color: #3a7331">
</view> <view class=""> 点击查看 </view>
<view class="list-title-info" style="color:#3A7331 ;">
<view class="">
点击查看
</view>
<view class="title-infoimg"> <view class="title-infoimg">
<image src="@/static/images/pj.png" mode="aspectFit"></image> <image src="@/static/images/pj.png" mode="aspectFit"></image>
</view> </view>
</view> </view>
</view> </view>
</navigator> </navigator>
<view class="list-m" @click="go_shop"> <view class="list-m" @click="go_shop">
@ -75,18 +81,12 @@
<image src="@/static/images/p8.png" mode="aspectFit"></image> <image src="@/static/images/p8.png" mode="aspectFit"></image>
</view> </view>
<view class="list-titleb"> <view class="list-titleb">
<view class="titlea"> <view class="titlea"> 里海云仓 </view>
里海云仓 <view class="titleb"> 行业分类市场 </view>
</view>
<view class="titleb">
行业分类市场
</view> </view>
</view> </view>
</view> <view class="list-title-info" style="color: #ff6b00">
<view class="list-title-info" style="color:#FF6B00 ;"> <view class=""> 点击查看 </view>
<view class="">
点击查看
</view>
<view class="title-infoimg"> <view class="title-infoimg">
<image src="@/static/images/pj1.png" mode="aspectFit"></image> <image src="@/static/images/pj1.png" mode="aspectFit"></image>
</view> </view>
@ -95,8 +95,10 @@
</view> </view>
<view class="list-con"> <view class="list-con">
<view class="list-con-left" @tap="navgo('/pages/nongKe/specialty/index')"> <view
class="list-con-left"
@tap="navgo('/pages/nongKe/specialty/index')"
>
<!-- <view class="list-con-title"> <!-- <view class="list-con-title">
<view class="con-titlea"> <view class="con-titlea">
名优特产 名优特产
@ -108,7 +110,11 @@
<image src="@/static/images/f5.png" mode="aspectFit"></image> <image src="@/static/images/f5.png" mode="aspectFit"></image>
</view> </view>
<view class="list-con-right"> <view class="list-con-right">
<view class="con-right" style="margin-bottom: 20rpx;"> <view
class="con-right"
style="margin-bottom: 20rpx"
@click="navaction(1)"
>
<!-- <view class="list-con-title"> <!-- <view class="list-con-title">
<view class="con-titlea"> <view class="con-titlea">
当地美食 当地美食
@ -119,7 +125,7 @@
</view> --> </view> -->
<image src="@/static/images/f7.png" mode="aspectFit"></image> <image src="@/static/images/f7.png" mode="aspectFit"></image>
</view> </view>
<view class="con-right"> <view class="con-right" @click="navaction(2)">
<!-- <view class="list-con-title"> <!-- <view class="list-con-title">
<view class="con-titlea"> <view class="con-titlea">
特色文旅 特色文旅
@ -130,32 +136,38 @@
</view> --> </view> -->
<image src="@/static/images/f2.png" mode="aspectFit"></image> <image src="@/static/images/f2.png" mode="aspectFit"></image>
</view> </view>
</view> </view>
</view> </view>
<view class="list-bon"> <view class="list-bon">
<image src="@/static/images/f4.png" mode="aspectFit"></image> <image src="@/static/images/f4.png" mode="aspectFit"></image>
</view> </view>
<view class="goodslist"> <view class="goodslist">
<WaterfallsFlow :wfList='cateGoods' /> <WaterfallsFlow :wfList="cateGoods" />
</view> </view>
<view class="empty_wrapper" v-if="emptyShow"> <view class="empty_wrapper" v-if="emptyShow">
<u-empty :show="emptyShow" mode="list" icon="http://cdn.uviewui.com/uview/empty/list.png"></u-empty> <u-empty
:show="emptyShow"
mode="list"
icon="http://cdn.uviewui.com/uview/empty/list.png"
></u-empty>
</view> </view>
</view> </view>
<u-picker :defaultIndex="[0,0]" :show="showPicker" ref="uPicker" :columns="columnData" @confirm="confirm" <u-picker
@cancel="showPicker = false" @change="changeHandler" keyName="name"></u-picker> :defaultIndex="[0, 0]"
:show="showPicker"
ref="uPicker"
:columns="columnData"
@confirm="confirm"
@cancel="showPicker = false"
@change="changeHandler"
keyName="name"
></u-picker>
<u-loadmore :status="status" v-if="cateGoods.length >= where.limit" /> <u-loadmore :status="status" v-if="cateGoods.length >= where.limit" />
<view class="location" v-if='isshow'> <view class="location" v-if="isshow">
<view class="locationa"> <view class="locationa"> 位置权限使用说明 </view>
位置权限使用说明 <view class="locationb"> 用于向你推荐最近门店 </view>
</view>
<view class="locationb">
用于向你推荐最近门店
</view>
</view> </view>
</view> </view>
</template> </template>
@ -306,6 +318,7 @@
} }
}, },
// #ifdef APP-PLUS // #ifdef APP-PLUS
onPageScroll(e) { onPageScroll(e) {
@ -326,6 +339,13 @@
// #endif // #endif
methods: { methods: {
navaction(val) {
uni.navigateTo({
url: '/pages/nongKe/supply_chain/suppliers?id=' + val
})
},
//
list(id) { list(id) {
if (id) { if (id) {
spuInfo(id, this.where1).then(res => { spuInfo(id, this.where1).then(res => {
@ -402,11 +422,11 @@
this.street = e.value[1].name this.street = e.value[1].name
this.street_id = e.value[1].code this.street_id = e.value[1].code
this.town = e.value[1].name this.town = e.value[1].name
uni.setStorageSync('ADRESS_LOCATION',
e.value[1].name + ',' + e.value[1].name + ',' +
e.value[1].code this.$nextTick(() => {
) this.$bus.$emit('value-updated', e.value[1].name + ',' + e.value[1].code);
})
this.showPicker = false this.showPicker = false
}, },
changeHandler(e) { changeHandler(e) {
@ -516,9 +536,11 @@
this.town = res.data.address_reference.town.title this.town = res.data.address_reference.town.title
this.street_id = res.data.address_reference.town.id this.street_id = res.data.address_reference.town.id
this.street = res.data.address_component.street this.street = res.data.address_component.street
uni.$emit('add', this.street + ',' + this.street_id) this.$nextTick(() => {
// uni.setStorageSync('ADRESS_LOCATION', this.$bus.$emit('value-updated', this.street + ',' + this
// this.town + ',' + this.street_id) .street_id);
})
this.list(this.street_id) this.list(this.street_id)
}).catch(err => { }).catch(err => {
uni.showToast({ uni.showToast({
@ -550,13 +572,13 @@
} }
page { page {
background: #F4F7FE; background: #f4f7fe;
// background: linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 100%); // background: linear-gradient(180deg, #FFFFFF 0%, #F6F6F6 100%);
} }
.location { .location {
background-color: #F6F6F6; background-color: #f6f6f6;
width: 680rpx; width: 680rpx;
height: 150rpx; height: 150rpx;
position: absolute; position: absolute;
@ -585,11 +607,8 @@
.Circle_friends { .Circle_friends {
position: relative; position: relative;
padding: 0 0 87.72rpx 0; padding: 0 0 87.72rpx 0;
} }
.sitebox { .sitebox {
animation-name: fadeIn; animation-name: fadeIn;
animation-duration: 3s; animation-duration: 3s;
@ -606,7 +625,6 @@
} }
} }
.site-box { .site-box {
width: 100%; width: 100%;
/* #ifdef MP || APP-PLUS */ /* #ifdef MP || APP-PLUS */
@ -628,7 +646,6 @@
/* #endif */ /* #endif */
// background-color: #e5e5e5; // background-color: #e5e5e5;
padding-right: 20rpx; padding-right: 20rpx;
// //
@ -651,8 +668,6 @@
} }
} }
.circle_friends_wrapper { .circle_friends_wrapper {
position: relative; position: relative;
@ -661,8 +676,6 @@
/deep/.u-tabs__wrapper__nav__line { /deep/.u-tabs__wrapper__nav__line {
width: 46rpx; width: 46rpx;
} }
/deep/.u-tabs__wrapper__nav__item { /deep/.u-tabs__wrapper__nav__item {
@ -680,7 +693,6 @@
margin: 0 auto; margin: 0 auto;
margin-bottom: 21.05rpx; margin-bottom: 21.05rpx;
// margin-left: -20rpx; // margin-left: -20rpx;
} }
.empty_wrapper { .empty_wrapper {
@ -752,11 +764,11 @@
font-weight: bold; font-weight: bold;
&::before { &::before {
content: ''; content: "";
display: inline-block; display: inline-block;
width: 3px; width: 3px;
height: 31.58rpx; height: 31.58rpx;
background-color: #F84221; background-color: #f84221;
margin-right: 7.02rpx; margin-right: 7.02rpx;
} }
} }
@ -772,14 +784,12 @@
height: 235rpx; height: 235rpx;
position: relative; position: relative;
.list-title { .list-title {
display: flex; display: flex;
position: absolute; position: absolute;
top: 20rpx; top: 20rpx;
.list-titlea { .list-titlea {
margin-left: 14rpx; margin-left: 14rpx;
width: 96rpx; width: 96rpx;
height: 117rpx; height: 117rpx;
@ -789,7 +799,7 @@
.titlea-con { .titlea-con {
position: absolute; position: absolute;
top: 20rpx; top: 20rpx;
color: #F4F7FE; color: #f4f7fe;
.titlea { .titlea {
margin-top: 12rpx; margin-top: 12rpx;
@ -803,12 +813,11 @@
font-size: 37rpx; font-size: 37rpx;
font-family: PingFang SC-Semibold, PingFang SC; font-family: PingFang SC-Semibold, PingFang SC;
font-weight: 600; font-weight: 600;
color: #FFFFFF; color: #ffffff;
margin-left: 20rpx; margin-left: 20rpx;
} }
} }
image { image {
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -816,24 +825,19 @@
} }
.list-titleb { .list-titleb {
.titlea { .titlea {
font-size: 37rpx; font-size: 37rpx;
font-family: PingFang SC-Semibold, PingFang SC; font-family: PingFang SC-Semibold, PingFang SC;
font-weight: 600; font-weight: 600;
color: #FFFFFF; color: #ffffff;
margin-top: 10rpx; margin-top: 10rpx;
} }
.titleb { .titleb {
font-size: 33rpx; font-size: 33rpx;
font-family: PingFang SC-Medium, PingFang SC; font-family: PingFang SC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
color: #FFFFFF; color: #ffffff;
} }
} }
} }
@ -841,14 +845,14 @@
.list-title-info { .list-title-info {
// width: 98rpx; // width: 98rpx;
height: 30rpx; height: 30rpx;
background: #FFFFFF; background: #ffffff;
padding: 2rpx 2rpx; padding: 2rpx 2rpx;
display: flex; display: flex;
font-size: 10rpx; font-size: 10rpx;
font-size: 18rpx; font-size: 18rpx;
font-family: PingFang SC-Medium, PingFang SC; font-family: PingFang SC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
color: #FF6B00; color: #ff6b00;
border-radius: 19rpx 19rpx 19rpx 19rpx; border-radius: 19rpx 19rpx 19rpx 19rpx;
position: absolute; position: absolute;
bottom: 14rpx; bottom: 14rpx;
@ -886,7 +890,6 @@
height: 482rpx; height: 482rpx;
position: relative; position: relative;
.list-con-title { .list-con-title {
position: absolute; position: absolute;
top: 0; top: 0;
@ -897,9 +900,8 @@
font-size: 37rpx; font-size: 37rpx;
font-family: PingFang SC-Semibold, PingFang SC; font-family: PingFang SC-Semibold, PingFang SC;
font-weight: 600; font-weight: 600;
color: #FFFFFF; color: #ffffff;
margin-top: 10rpx; margin-top: 10rpx;
} }
.con-titleb { .con-titleb {
@ -907,7 +909,7 @@
font-size: 33rpx; font-size: 33rpx;
font-family: PingFang SC-Medium, PingFang SC; font-family: PingFang SC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
color: #FFFFFF; color: #ffffff;
} }
} }
@ -925,7 +927,6 @@
height: 235rpx; height: 235rpx;
position: relative; position: relative;
.list-con-title { .list-con-title {
position: absolute; position: absolute;
top: 0; top: 0;
@ -936,9 +937,8 @@
font-size: 37rpx; font-size: 37rpx;
font-family: PingFang SC-Semibold, PingFang SC; font-family: PingFang SC-Semibold, PingFang SC;
font-weight: 600; font-weight: 600;
color: #FFFFFF; color: #ffffff;
margin-top: 10rpx; margin-top: 10rpx;
} }
.con-titleb { .con-titleb {
@ -946,7 +946,7 @@
font-size: 33rpx; font-size: 33rpx;
font-family: PingFang SC-Medium, PingFang SC; font-family: PingFang SC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
color: #FFFFFF; color: #ffffff;
} }
} }

View File

@ -55,11 +55,21 @@
立即导入</view> 立即导入</view>
</view> --> </view> -->
</view> </view>
<view class="totalfooter">
<view class="totalfooter" v-if="items.is_imported == 1 ">
<view class='bnt b-color'>
已导入</view>
</view>
<view class="totalfooter" v-else>
<view class='bnt b-color' <view class='bnt b-color'
@click="importshop(item.order_id,item.orderProduct[indexs].product_id,item.orderProduct[indexs].product_sku)"> @click="importshop(item.order_id,item.orderProduct[indexs].product_id,item.orderProduct[indexs].product_sku)">
立即导入</view> 立即导入</view>
</view> </view>
<!-- <view class="totalfooter">
<view class='bnt b-color'
@click="importshop(item.order_id,item.orderProduct[indexs].product_id,item.orderProduct[indexs].product_sku)">
立即导入</view>
</view> -->
</view> </view>
</block> </block>
</view> </view>