12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193 |
- <!--销售详情-->
- <template>
- <view class="container">
- <view class="back-btn cuIcon-back" @click="navBack"></view>
- <view class='title1'>销售详情</view>
- <image style='width:100%;' src='../../static/img/jiaoyi/bg@3x.png'></image>
- <view class="introduce-section">
- <view style='height:70px;'>
- <view class="title">{{goods.title}}</view>
- <view class='flex justify-between'>
- <view style='flex:1.5;color:#878C9C;'>{{goods.sendPrivate}}{{goods.sendCity}}{{goods.sendArea}}{{goods.sendWarehouse}}</view>
- <view v-if='goods.salePlanType=="现货"' class="title-tip">
- {{goods.salePrice}}
- </view>
- <view style='text-align:right;' v-else class="title-tip">
- +{{goods.basisPrice}}
- </view>
- </view>
- <view style='text-align:right;' v-if='goods.salePlanType=="现货"'>销售价格</view>
- <view style='text-align:right;' v-if='goods.salePlanType=="期货"'>今日基差</view>
- </view>
- </view>
- <view v-if="goods.storeImg" class="carousel-section">
- <swiper autoplay="true" interval="3000" duration="500" class="carousel" circular @change="swiperChange">
- <swiper-item key="0" class="carousel-item">
- <image :src="goods.storeImg" @tap="ViewImage(goods.storeImg)"/>
- </swiper-item>
- <swiper-item key="1" class="carousel-item">
- <image :src="goods.foodsImg" @tap="ViewImage(goods.foodsImg)"/>
- </swiper-item>
- <swiper-item key="2" class="carousel-item">
- <image :src="goods.carImg" @tap="ViewImage(goods.carImg)"/>
- </swiper-item>
- </swiper>
- <view class="swiper-dots">
- <text class="num">{{swiperCurrent+1}}</text>
- <text class="sign">/</text>
- <text class="num">{{swiperLength}}</text>
- </view>
- </view>
-
- <view class="detail-desc">
- <view class="d-header">
- <text>基本信息</text>
- </view>
- <view class="c-list">
- <view class="c-row">
- <text class="tit">货名</text>
- <view class="con-list">
- <text>{{goods.goodsName}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">销售量(吨)</text>
- <view class="con-list">
- <text>{{goods.plannedSaleVolume}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">最小成交量(吨)</text>
- <view class="con-list">
- <text>{{goods.minimumVolume}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">类型</text>
- <view class="con-list">
- <text>{{goods.salePlanType}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">价格类型</text>
- <view class="con-list">
- <text>{{goods.priceType}}</text>
- </view>
- </view>
- <view class="c-row" v-if="goods.salePlanType == '期货'">
- <text class="tit">基差(元/吨)</text>
- <view class="con-list">
- <text>{{goods.basisPrice}}</text>
- </view>
- </view>
- <view class="c-row" v-if="goods.salePlanType == '现货'">
- <text class="tit">销售价格(元/吨)</text>
- <view class="con-list">
- <text>{{goods.salePrice}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">出货地区</text>
- <view class="con-list">
- <text>{{goods.sendPrivate}}{{goods.sendCity}}{{goods.sendArea}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">运费承担方</text>
- <view class="con-list">
- <text>{{goods.freightPayer}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">包装方式</text>
- <view class="con-list">
- <text>{{goods.packingType}}</text>
- </view>
- </view>
- <view class="c-row" v-if="goods.packingType == '大袋' || goods.packingType == '小袋'">
- <text class="tit">袋装备注</text>
- <view class="con-list">
- <text>{{goods.baggingNotes}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">卖方</text>
- <view class="con-list">
- <text>{{goods.seller}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">卖方电话</text>
- <view class="con-list">
- <view>{{goods.sellerPhone}} <a :href="'tel:'+goods.sellerPhone"><image style='width:11px;height:11px;' src='../../static/img/jiaoyi/gengduo1@3x.png'></image></a></view>
- </view>
- </view>
- </view>
- </view>
- <view class="detail-desc">
- <view class="d-header">
- <text>货物要求</text>
- </view>
- <view class="c-list">
- <view class="c-row">
- <text class="tit">水分(%){{'<='}} </text>
- <view class="con-list">
- <text>{{goods.waterContent}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">容重(g/L){{'<='}}</text>
- <view class="con-list">
- <text>{{goods.bulkDensity}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">热损伤(%){{'<='}}</text>
- <view class="con-list">
- <text>{{goods.jiaorenli}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">杂质(%){{'<='}}</text>
- <view class="con-list">
- <text>{{goods.impurity}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">霉变粒(%){{'<='}}</text>
- <view class="con-list">
- <text>{{goods.mildewGrain}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">不完善粒(%){{'<='}}</text>
- <view class="con-list">
- <text>{{goods.imperfectGrain}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">蛋白(%){{'>='}} </text>
- <view class="con-list">
- <text>{{goods.protein}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">粒型</text>
- <view class="con-list">
- <text>{{goods.grain}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">品级</text>
- <view class="con-list">
- <text>{{goods.grade}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">产地</text>
- <view class="con-list">
- <text>{{goods.outputPrivate}}{{goods.outputCity}}</text>
- </view>
- </view>
- <view class="c-row">
- <text class="tit">产出年份</text>
- <view class="con-list">
- <text>{{goods.outputYear}}</text>
- </view>
- </view>
- </view>
- </view>
- <view v-if='status' class='shade'>
- <view class='shade-content'>
- <view class='shade-content-item'>
- 您的粮商身份正在审核中,请耐心等待认证状态可在<text>我的-身份认证</text>中查看
- </view>
- <image @click='status=false' style='width:30px;height:30px;margin-top:10px;' src='../../static/img/jiaoyi/guanbi-2@3x.png'></image>
- </view>
- </view>
- <!-- 底部操作菜单 -->
- <view class="page-bottom1">
- <view>
- <button type="primary" @click="contactUs">立即沟通</button>
- <button @click="salegrain" v-if="goods.pcFlag == 1" type="primary" class=" action-btn no-border add-cart-btn" >立即买粮</button>
- <button v-else type="primary" class=" action-btn no-border add-cart-btn"
- @click="tradeNow">立即发车</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import uniNumberBox from '@/components/uni-number-box.vue';
- import {
- mapState
- } from 'vuex';
- export default {
- components: {
- uniNumberBox
- },
- data() {
- return {
- swiperCurrent: 0,
- titleNViewBackground: '',
- swiperLength: 0,
- goods: {
- id: undefined,
- title: undefined,
- soldCount: 0,
- total: 0,
- price: 0,
- origin: undefined,
- stock: undefined,
- level: undefined,
- goodsName: undefined,
- smell: undefined,
- priceType: undefined,
- packing: undefined,
- year: undefined,
- waterContent: 0,
- bulkDensity: 0,
- moldy: 0,
- impurity: 0,
- overFlow: 0,
- buyer:'',
- buyerPhone:'',
- minSale: 0,
- status:0
- },
- status:false,
- share:{
- title: '',
- imageUrl:'https://taohaoliang.oss-cn-beijing.aliyuncs.com/shareLogo.png',
- },
- reason:"",
- price:undefined,
- };
- },
- onShow() {
- },
- onLoad(options) {
- this.goods.compId=options.compId
- const that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- this.$api.doRequest('get', '/salePlanInfo/getSalePlanInfo',{id:options.id}).then(res => {
- uni.hideLoading()
- this.goods=res.data.data
- })
- },
- computed: {
- ...mapState(['hasLogin','userInfo'])
- },
- methods: {
- numFilter (value) {
- if(!value){
- return 0
- }
- // 截取当前数据到小数点后两位
- let realVal = parseFloat(value).toFixed(2)
- return realVal
- },
- swiperChange(e) {
- const index = e.detail.current;
- this.swiperCurrent = index;
- },
- contactUs() {
- const that = this
- uni.makePhoneCall({
- // 手机号
- phoneNumber: that.goods.buyerPhone,
-
- // 成功回调
- success: (res) => {
- console.log('调用成功!')
- },
-
- // 失败回调
- fail: (res) => {
- console.log('调用失败!')
- }
-
- });
-
- },
- ViewImage(e) {
- var img = [];
- img.push(e)
- uni.previewImage({
- current:0,
- urls: img
- });
- },
- priceInput(e) {
- this.price = e.detail.value
- },
- reasonInput(e) {
- this.reason = e.detail.value
- },
- navToDetailPage() {
- const that = this
- uni.navigateTo({
- url: `/pageA/product/detail_upload?id=${that.goods.id}`
- })
- },
- changePrice(options){
- const that = this
- uni.showLoading({
- title: '正在加载'
- })
- if(!that.price){
- that.$api.msg('请输入修改价格')
- return
- }
- that.$api.request('sale', 'changePrice', {
- id: that.goods.id,
- price:that.price
- }, failres => {
- if(failres.errmsg){
- uni.showToast({
- title: failres.errmsg,
- icon: 'none',
- duration: 2000
- })
- }
- else{
- uni.showToast({
- title: "系统异常,请联系管理员",
- icon: 'none',
- duration: 2000
- })
- }
- uni.hideLoading()
- }).then(res => {
- that.$api.msg('修改成功')
- uni.hideLoading()
- setTimeout(()=>{uni.navigateBack()},1000);
- })
- },
- salegrain(){
- // uni.navigateTo({
- // url: `/pageA/product/business_buy?id=${this.goods.id}&receiveArea=${this.goods.receiveArea}&minimumVolume=${this.goods.minimumVolume}
- // &goodsName=${this.goods.goodsName}&receiveCity=${this.goods.receiveCity}&receivePrivate=${this.goods.receivePrivate}&buyer=${this.goods.buyer}
- // `
- // })
- // var that=this
- if (!this.hasLogin) {
- uni.showModal({
- title: '登录提示',
- content: '您尚未登录,是否立即登录?',
- showCancel: true,
- confirmText: '登录',
- success: (e) => {
- if (e.confirm) {
- uni.navigateTo({
- url: '/pages/public/login'
- })
- }
- },
- fail: () => {},
- complete: () => {}
- })
- }
- else{
- this.$api.doRequest('get', '/identityAuthenticationInfo/getInfo',{commonId:this.userInfo.id}).then(res => {
- if(res.data.code==200){
- uni.navigateTo({
- url: `/pageA/product/business_sale?id=${this.goods.id}&sendArea=${this.goods.sendArea}&minimumVolume=${this.goods.minimumVolume}
- &goodsName=${this.goods.goodsName}&sendCity=${this.goods.sendCity}&sendPrivate=${this.goods.sendPrivate}&seller=${this.goods.seller}
- &basisPrice=${this.goods.basisPrice}&salePrice=${this.goods.salePrice}&sendWarehouse=${this.goods.sendWarehouse}
- &salePlanType=${this.goods.salePlanType}&salePlan=${this.goods.salePlanNo}&baggingNotes=${this.goods.baggingNotes}&compId=${this.goods.compId}`
- // url: `/pageA/product/business_buy?id=${this.goods.id}&packing=${this.goods.packing}}&province=${this.goods.province}
- // &city=${this.goods.city}&area=${this.goods.area}&storeName=${this.goods.storeName}&seller=${this.goods.seller}
- // &companyId=${this.goods.companyId}&sellerPhone=${this.goods.sellerPhone}&minSale=${this.goods.minSale}
- // &exsitCount=${this.goods.total}&isFutures=${this.goods.isFutures}
- // &basis=${this.goods.basis}&basisSmall=${this.goods.basisSmall}&basisBig=${this.goods.basisBig}
- // &unloadingFee=${this.goods.unloadingFee}&goodsName=${this.goods.goodsName}&receivePrivate=${this.goods.receivePrivate}&receiveCity=${that.goods.receiveCity}
- // &receiveArea=${this.goods.receiveArea}&minimumVolume=${this.goods.minimumVolume}&buyer=${this.goods.buyer}`
- })
-
- }else if(res.data.code==11016){
- uni.showModal({
- title: '温馨提示',
- content: '您还未认证粮商身份, 下单前请先完善您的身份信息',
- confirmText: "去认证",
- confirmColor: '#22C572',
- success: function (res) {
- if (res.confirm) {
- uni.navigateTo({//跳转页面
- url:"../index/index"
- })
- } else if (res.cancel) {
- }
- }
- });
- }else if(res.data.code==11017){
- this.status=true
- }
- })
- // uni.showModal({
- // title: '温馨提示',
- // content: '请在发车前认真核实买方身份,并在签订正规的交易合同后发起发车操作,是否继续发车?',
- // confirmText: "发车",
- // confirmColor: '#22C572',
- // success: function (res) {
- // if (res.confirm) {
- // uni.navigateTo({//跳转页面
- // url:"../index/index"
- // })
- // } else if (res.cancel) {
- // }
- // }
- // });
- // const that = this
- // uni.navigateTo({
- // url: `/pageA/product/trade?id=${that.goods.id}&packing=${that.goods.packing}}&province=${that.goods.province}
- // &city=${that.goods.city}&area=${that.goods.area}&storeName=${that.goods.storeName}&seller=${that.goods.seller}
- // &companyId=${that.goods.companyId}&sellerPhone=${that.goods.sellerPhone}&minSale=${that.goods.minSale}
- // &exsitCount=${that.goods.total}&isFutures=${that.goods.isFutures}
- // &basis=${that.goods.basis}&basisSmall=${that.goods.basisSmall}&basisBig=${that.goods.basisBig}
- // &unloadingFee=${that.goods.unloadingFee}`
- // })
- }
- },
- endSale(){
- const that = this
- uni.showLoading({
- title: '正在加载',
- mask:true
- })
- that.$api.request('sale', 'endSale', {
- id: that.goods.id,
- reason:that.reason
- }, failres => {
- if(failres.errmsg){
- uni.showToast({
- title: failres.errmsg,
- icon: 'none',
- duration: 2000
- })
- }
- else{
- uni.showToast({
- title: "系统异常,请联系管理员",
- icon: 'none',
- duration: 2000
- })
- }
- uni.hideLoading()
- }).then(res => {
- that.$api.msg('终止成功')
- uni.hideLoading()
- setTimeout(()=>{uni.navigateBack()},1000);
-
- })
- },
- navBack() {
- uni.navigateBack();
- },
- tradeNow(){
- // this.$api.doRequest('get', '/identityAuthenticationInfo/getInfo',{commonId:options.id}).then(res => {
- // uni.hideLoading()
- // this.goods=res.data.data
- // })
- if (!this.hasLogin) {
- uni.showModal({
- title: '登录提示',
- content: '您尚未登录,是否立即登录?',
- showCancel: true,
- confirmText: '登录',
- success: (e) => {
- if (e.confirm) {
- uni.navigateTo({
- url: '/pages/public/login'
- })
- }
- },
- fail: () => {},
- complete: () => {}
- })
- }
- else{
- uni.showModal({
- title: '温馨提示',
- content: '请在发车前认真核实买方身份,并在签订正规的交易合同后发起发车操作,是否继续发车?',
- confirmText: "发车",
- confirmColor: '#22C572',
- success: function (res) {
- if (res.confirm) {
- uni.navigateTo({//跳转页面
- url:"../index/index"
- })
- } else if (res.cancel) {
- }
- }
- });
- const that = this
- uni.navigateTo({
- // url: `/pageA/product/business_sale?id=${that.goods.id}&packing=${that.goods.packing}}&province=${that.goods.province}
- // &city=${that.goods.city}&area=${that.goods.area}&storeName=${that.goods.storeName}&seller=${that.goods.seller}
- // &companyId=${that.goods.companyId}&sellerPhone=${that.goods.sellerPhone}&minSale=${that.goods.minSale}
- // &exsitCount=${that.goods.total}&isFutures=${that.goods.isFutures}
- // &basis=${that.goods.basis}&basisSmall=${that.goods.basisSmall}&basisBig=${that.goods.basisBig}
- // &unloadingFee=${that.goods.unloadingFee}`
- url:`/pageA/product/business_sale?id=${that.goods.id}&buyer=${that.goods.buyer}&seller=${that.goods.seller}&sendPrivate=${that.goods.sendPrivate}
- &sendCity=${that.goods.sendCity}&sendArea=${that.goods.sendArea}&sendWarehouse=${that.goods.sendWarehouse}&goodsName=${that.goods.goodsName}
- &minimumVolume=${that.goods.minimumVolume}&unitPrice=${that.goods.unitPrice}&basisPrice=${that.goods.basisPrice}&salePlanType=${that.goods.salePlanType}`
- })
- }
- }
- },
- }
- </script>
- <style scoped lang='scss'>
- .title1{
- position:absolute;
- left:50%;
- transform: translateX(-50%);
- top: 40upx;
- z-index:9999;
- color:#fff;
- }
- page {
- background: #F5F6FA;
- /* padding-bottom: 160upx; */
- }
- .container{
- padding-bottom: 160upx;
- }
- .icon-you {
- font-size: $font-base + 2upx;
- color: #888;
- }
- .carousel {
- width: 100%;
- height: 350upx;
- .carousel-item {
- width: 100%;
- height: 100%;
- padding: 0 28upx;
- overflow: hidden;
- }
- image {
- width: 100%;
- height: 100%;
- border-radius: 10upx;
- }
- }
- .carousel-section {
- padding: 0;
- .titleNview-placing {
- padding-top: 0;
- height: 0;
- }
- .carousel {
- .carousel-item {
- padding: 0;
- }
- }
- .swiper-dots {
- left: 45upx;
- bottom: 40upx;
- }
- }
- /* 分享 */
- .share-section {
- display: flex;
- align-items: center;
- color: $font-color-base;
- background: linear-gradient(left, #fdf5f6, #fbebf6);
- padding: 12upx 30upx;
- .share-icon {
- display: flex;
- align-items: center;
- width: 70upx;
- height: 30upx;
- line-height: 1;
- border: 1px solid $uni-color-primary;
- border-radius: 4upx;
- position: relative;
- overflow: hidden;
- font-size: 22upx;
- color: $uni-color-primary;
- &:after {
- content: '';
- width: 50upx;
- height: 50upx;
- border-radius: 50%;
- left: -20upx;
- top: -12upx;
- position: absolute;
- background: $uni-color-primary;
- }
- }
- .icon-xingxing {
- position: relative;
- z-index: 1;
- font-size: 24upx;
- margin-left: 2upx;
- margin-right: 10upx;
- color: #fff;
- line-height: 1;
- }
- .tit {
- font-size: $font-base;
- margin-left: 10upx;
- }
- .icon-bangzhu1 {
- padding: 10upx;
- font-size: 30upx;
- line-height: 1;
- }
- .share-btn {
- flex: 1;
- text-align: right;
- font-size: $font-sm;
- color: $uni-color-primary;
- }
- .icon-you {
- font-size: $font-sm;
- margin-left: 4upx;
- color: $uni-color-primary;
- }
- }
- .c-list {
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- background: #fff;
- .c-row {
- display: flex;
- align-items: center;
- padding: 20upx 30upx;
- position: relative;
- }
- .tit {
- width: 220upx;
- }
- .con {
- flex: 1;
- color: $font-color-dark;
- .selected-text {
- margin-right: 10upx;
- }
- }
- .bz-list {
- height: 40upx;
- font-size: $font-sm+2upx;
- color: $font-color-dark;
- text {
- display: inline-block;
- margin-right: 30upx;
- }
- }
- .con-list {
- flex: 1;
- display: flex;
- flex-direction: column;
- color: $font-color-dark;
- line-height: 40upx;
- text-align: right;
- padding-right: 20upx;
- }
- .red {
- color: $uni-color-primary;
- }
- }
- /* 评价 */
- .eva-section {
- display: flex;
- flex-direction: column;
- padding: 20upx 30upx;
- background: #fff;
- margin-top: 16upx;
- .e-header {
- display: flex;
- align-items: center;
- height: 70upx;
- font-size: $font-sm + 2upx;
- color: $font-color-light;
- .tit {
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- margin-right: 4upx;
- }
- .tip {
- flex: 1;
- text-align: right;
- }
- .icon-you {
- margin-left: 10upx;
- }
- }
- }
- .eva-box {
- display: flex;
- padding: 20upx 0;
- .portrait {
- flex-shrink: 0;
- width: 80upx;
- height: 80upx;
- border-radius: 100px;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- font-size: $font-base;
- color: $font-color-base;
- padding-left: 26upx;
- .con {
- font-size: $font-base;
- color: $font-color-dark;
- padding: 20upx 0;
- }
- .bot {
- display: flex;
- justify-content: space-between;
- font-size: $font-sm;
- color: $font-color-light;
- }
- }
- }
- /* 详情 */
- .detail-desc {
- background: #fff;
- margin-top: 16upx;
- margin:10px;
- position:relative;
- z-index:4;
- border-radius:5px;
- .d-header {
- display: flex;
- padding:10px;
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- position: relative;
- border-bottom:1px solid #EEEEEE;
- text {
- padding: 0 20upx;
- position: relative;
- z-index: 1;
- }
- }
- }
- /* 规格选择弹窗 */
- .attr-content {
- padding: 10upx 30upx;
- .a-t {
- display: flex;
- image {
- width: 170upx;
- height: 170upx;
- flex-shrink: 0;
- margin-top: -40upx;
- border-radius: 8upx;
- ;
- }
- .right {
- display: flex;
- flex-direction: column;
- padding-left: 24upx;
- font-size: $font-sm + 2upx;
- color: $font-color-base;
- line-height: 42upx;
- .price {
- font-size: $font-lg;
- color: $uni-color-primary;
- margin-bottom: 10upx;
- }
- .selected-text {
- margin-right: 10upx;
- }
- }
- }
- .attr-list {
- display: flex;
- flex-direction: column;
- font-size: $font-base + 2upx;
- color: $font-color-base;
- padding-top: 30upx;
- padding-left: 10upx;
- }
- .item-list {
- padding: 30upx 0 0;
- display: flex;
- flex-wrap: wrap;
- text {
- display: flex;
- align-items: center;
- justify-content: center;
- background: #eee;
- margin-right: 20upx;
- margin-bottom: 20upx;
- border-radius: 100upx;
- min-width: 60upx;
- height: 60upx;
- padding: 0 20upx;
- font-size: $font-base;
- color: $font-color-dark;
- }
- .selected {
- background: #fbebee;
- color: $uni-color-primary;
- }
- }
- }
- /* 弹出层 */
- .popup {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 99;
- &.show {
- display: block;
- .mask {
- animation: showPopup 0.2s linear both;
- }
- .layer {
- animation: showLayer 0.2s linear both;
- }
- }
- &.hide {
- .mask {
- animation: hidePopup 0.2s linear both;
- }
- .layer {
- animation: hideLayer 0.2s linear both;
- }
- }
- &.none {
- display: none;
- }
- .mask {
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 1;
- background-color: rgba(0, 0, 0, 0.4);
- }
- .layer {
- position: fixed;
- z-index: 99;
- bottom: 0;
- width: 100%;
- min-height: 40vh;
- border-radius: 10upx 10upx 0 0;
- background-color: #fff;
- .btn {
- height: 66upx;
- line-height: 66upx;
- border-radius: 100upx;
- background: $uni-color-primary;
- font-size: $font-base + 2upx;
- color: #fff;
- margin: 30upx auto 20upx;
- }
- }
- @keyframes showPopup {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
- }
- @keyframes hidePopup {
- 0% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- @keyframes showLayer {
- 0% {
- transform: translateY(120%);
- }
- 100% {
- transform: translateY(0%);
- }
- }
- @keyframes hideLayer {
- 0% {
- transform: translateY(0);
- }
- 100% {
- transform: translateY(120%);
- }
- }
- }
- .swiper-dots {
- display: flex;
- position: absolute;
- left: 60upx;
- bottom: 15upx;
- width: 72upx;
- height: 36upx;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAABkCAYAAADDhn8LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTk4MzlBNjE0NjU1MTFFOUExNjRFQ0I3RTQ0NEExQjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTk4MzlBNjA0NjU1MTFFOUExNjRFQ0I3RTQ0NEExQjMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0E3RUNERkE0NjExMTFFOTg5NzI4MTM2Rjg0OUQwOEUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0E3RUNERkI0NjExMTFFOTg5NzI4MTM2Rjg0OUQwOEUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4Gh5BPAAACTUlEQVR42uzcQW7jQAwFUdN306l1uWwNww5kqdsmm6/2MwtVCp8CosQtP9vg/2+/gY+DRAMBgqnjIp2PaCxCLLldpPARRIiFj1yBbMV+cHZh9PURRLQNhY8kgWyL/WDtwujjI8hoE8rKLqb5CDJaRMJHokC6yKgSCR9JAukmokIknCQJpLOIrJFwMsBJELFcKHwM9BFkLBMKFxNcBCHlQ+FhoocgpVwwnv0Xn30QBJGMC0QcaBVJiAMiec/dcwKuL4j1QMsVCXFAJE4s4NQA3K/8Y6DzO4g40P7UcmIBJxbEesCKWBDg8wWxHrAiFgT4fEGsB/CwIhYE+AeBAAdPLOcV8HRmWRDAiQVcO7GcV8CLM8uCAE4sQCDAlHcQ7x+ABQEEAggEEAggEEAggEAAgQACASAQQCCAQACBAAIBBAIIBBAIIBBAIABe4e9iAe/xd7EAJxYgEGDeO4j3EODp/cOCAE4sYMyJ5cwCHs4rCwI4sYBxJ5YzC84rCwKcXxArAuthQYDzC2JF0H49LAhwYUGsCFqvx5EF2T07dMaJBetx4cRyaqFtHJ8EIhK0i8OJBQxcECuCVutxJhCRoE0cZwMRyRcFefa/ffZBVPogePihhyCnbBhcfMFFEFM+DD4m+ghSlgmDkwlOgpAl4+BkkJMgZdk4+EgaSCcpVX7bmY9kgXQQU+1TgE0c+QJZUUz1b2T4SBbIKmJW+3iMj2SBVBWz+leVfCQLpIqYbp8b85EskIxyfIOfK5Sf+wiCRJEsllQ+oqEkQfBxmD8BBgA5hVjXyrBNUQAAAABJRU5ErkJggg==);
- background-size: 100% 100%;
-
- .num {
- width: 36upx;
- height: 36upx;
- border-radius: 50px;
- font-size: 24upx;
- color: #fff;
- text-align: center;
- line-height: 36upx;
- }
-
- .sign {
- position: absolute;
- top: 0;
- left: 50%;
- line-height: 36upx;
- font-size: 12upx;
- color: #fff;
- transform: translateX(-50%);
- }
- }
- /* 底部操作菜单 */
- .page-bottom1 {
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 95;
- width:100%;
- height: 70px;
- background: rgba(255, 255, 255, .9);
- padding:15px;
- border-radius: 0;
- text-align:right;
- button{
- display:inline-block;
- border-radius:18px;
- margin:0 10px;
- font-size:14px;background:#fff;
- color:#333;
- border:1px solid #333;
- }
- .action-btn{
- background:#22C572;
- color:#fff;
- border:1px solid #22C572;
- }
- .p-b-btn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: $font-sm;
- color: $font-color-base;
- width: 96upx;
- height: 80upx;
- .yticon {
- font-size: 40upx;
- line-height: 48upx;
- color: $font-color-light;
- }
- &.active,
- &.active .yticon {
- color: $uni-color-primary;
- }
- .icon-fenxiang2 {
- font-size: 42upx;
- transform: translateY(-2upx);
- }
- .icon-shoucang {
- font-size: 46upx;
- }
- }
-
- }
- .rich-img {
- width: 100%;
- height: auto;
- margin: 0;
- padding: 0;
- line-height: 0px;
- }
- button::after {
- border: none;
- }
-
- /* 销售信息 */
- .introduce-section {
- background: #fff;
- padding: 30upx 30upx;
- position:relative;
- margin:10px;
- padding-bottom:25px;
- margin-top:-148px;
- border-radius:5px;
- z-index:4;
- .guess-item {
- padding-bottom: 20upx;
- border-bottom: 1px solid #ccc;
- }
- .title {
- font-size: 16px;
- color: $font-color-dark;
- font-weight:bold;
- height: 50upx;
- line-height: 50upx;
- flex:2.5;
- }
- .title-tip {
- flex:1.5;
- color:#FD714F;font-size:30px;
- text-align: right;
- }
- .price-box {
- display: flex;
- align-items: baseline;
- height: 120rpx;
- padding: 10upx 0;
- font-size: 26upx;
- color: $uni-color-primary;
- }
-
- .price {
- font-size: $font-lg + 2upx;
- }
-
- .m-price {
- margin: 0 12upx;
- color: $font-color-light;
- text-decoration: line-through;
- }
-
- .coupon-tip {
- align-items: center;
- padding: 4upx 10upx;
- background: $uni-color-primary;
- font-size: $font-sm;
- color: #fff;
- border-radius: 6upx;
- line-height: 1;
- transform: translateY(-4upx);
- }
-
- .bot-row {
- display: flex;
- align-items: center;
- height: 50upx;
- font-size: $font-sm;
- color: $font-color-light;
-
- view {
- flex: 1;
- }
- }
- }
- .back-btn {
- position: absolute;
- left: 40upx;
- z-index: 9999;
- padding-top: var(--status-bar-height);
- top: 40upx;
- font-size: 40upx;
- color: #fff;
- }
- .shade{
- position:fixed;
- top:0;
- left:0;
- width:100%;background:rgba(0,0,0,0.5);
- height:100%;
- z-index:999999;
- }
- .shade-content{
- position:absolute;
- top:50%;
- left:50%;
- transform: translateX(-50%) translateY(-50%);
- z-index:999999;
- text-align:center;
- }
- .shade-content-item{
- background:#fff;
- width: 277px;
- text-align:center;
- height:121px;
- padding:35px 10px;
- border-radius:15px;
- }
-
- </style>
|