Commit f108024e authored by qipeng's avatar qipeng

我的相册

parent 6da98198
...@@ -6,62 +6,32 @@ ...@@ -6,62 +6,32 @@
<view class="left-name">照片来源</view> <view class="left-name">照片来源</view>
<view class="left-picker" @click="orderShow=true"> <view class="left-picker" @click="orderShow=true">
<i>{{cityName}}</i> <i>{{cityName}}</i>
<image src="../../../static/img/album/myPhoto01.png"></image> <image src="../static/album/myPhoto01.png"></image>
</view> </view>
<u-picker mode="selector" v-model="orderShow" :default-selector="[orderType]" :range="option" range-key="cateName" @confirm="industrysTypeConfirm($event)" @cancel="cancel"></u-picker> <u-picker mode="selector" v-model="orderShow" :default-selector="[orderType]" :range="option" range-key="areaName" @confirm="industrysTypeConfirm($event)" @cancel="cancel"></u-picker>
<view class="left-project" :class="[projectCheck==0?'left-projectDe':'']" @click="projectClick(0)" > <view v-for="(item,index) in merchantList" :key="index" class="left-project" :class="[projectCheck==0?'left-projectDe':'']" @click="projectClick(index,item.id)">
长江索道 {{item.name}}
<i>6</i> <i>{{previewData.length}}</i>
</view>
<view class="left-project" :class="[projectCheck==1?'left-projectDe':'']" @click="projectClick(1)" >
定制旅拍
<i>8</i>
</view> </view>
</view> </view>
<view class="address-right" @click="projectMoreFun()"> <view class="address-right" @click="projectMoreFun()" v-if="merchantList.length>2">
<u-icon name="more-dot-fill"></u-icon> <u-icon name="more-dot-fill"></u-icon>
</view> </view>
</view> </view>
<!--头部更多--> <!--头部更多-->
<view class="album-addressMore" v-if="projectMoreType==true"> <view class="album-addressMore" v-if="projectMoreType==true">
<view class="addressMore-name">长江索道(6)</view> <view class="addressMore-name" v-for="(item,index) in merchantList" :key="index" >{{item.name}}({{previewData.length}})</view>
<view class="addressMore-name">定制旅拍(8)</view>
</view> </view>
<!--全选按钮--> <!--全选按钮-->
<view class="album-checkAll"> <view class="album-checkAll">
<u-checkbox v-model="checkProjectAll" >全选</u-checkbox> <u-checkbox v-model="checkProjectAll" @change="checkProjectAllFun()">全选</u-checkbox>
<view class="checkAll-tips">未下载影像保留15天</view> <view class="checkAll-tips">未下载影像保留15天</view>
</view> </view>
<!--主体循环--> <!--主体循环-->
<view class="album-subject"> <view class="album-subject">
<view class="subject-List"> <view class="subject-List" v-for="(item,index) in previewData" :key="index" @click="projectCheckPhoto(index)" >
<image class="list-image" src="../../../static/img/hghg/dialog.png"></image> <image class="list-image" :src="item.faceSourceUrl" ></image>
<u-checkbox v-model="checkProjectAll" shape="circle" class="list-uCheck" ></u-checkbox> <u-checkbox v-model="item.checkType" v-if="checkTypeFun==true" @click.stop.native="()=>{}" @change="stopPhoto($event)" shape="circle" class="list-uCheck"></u-checkbox>
<view class="list-mask">预览</view>
</view>
<view class="subject-List">
<image class="list-image" src="../../../static/img/hghg/dialog.png"></image>
<u-checkbox v-model="checkProjectAll" shape="circle" class="list-uCheck" ></u-checkbox>
<view class="list-mask">预览</view>
</view>
<view class="subject-List">
<image class="list-image" src="../../../static/img/hghg/dialog.png"></image>
<u-checkbox v-model="checkProjectAll" shape="circle" class="list-uCheck" ></u-checkbox>
<view class="list-mask">预览</view>
</view>
<view class="subject-List">
<image class="list-image" src="../../../static/img/hghg/dialog.png"></image>
<u-checkbox v-model="checkProjectAll" shape="circle" class="list-uCheck" ></u-checkbox>
<view class="list-mask">预览</view>
</view>
<view class="subject-List">
<image class="list-image" src="../../../static/img/hghg/dialog.png"></image>
<u-checkbox v-model="checkProjectAll" shape="circle" class="list-uCheck" ></u-checkbox>
<view class="list-mask">预览</view>
</view>
<view class="subject-List">
<image class="list-image" src="../../../static/img/hghg/dialog.png"></image>
<u-checkbox v-model="checkProjectAll" shape="circle" class="list-uCheck" ></u-checkbox>
<view class="list-mask">预览</view> <view class="list-mask">预览</view>
</view> </view>
</view> </view>
...@@ -74,7 +44,7 @@ ...@@ -74,7 +44,7 @@
<text>明细</text> <text>明细</text>
<u-icon name="arrow-up"></u-icon> <u-icon name="arrow-up"></u-icon>
</view> </view>
<view class="left-num">1</view> <view class="left-num">1</view>
<view class="left-mask"> <view class="left-mask">
多够更省 多够更省
...@@ -88,24 +58,24 @@ ...@@ -88,24 +58,24 @@
<view class="bootom-btn">去下载</view> <view class="bootom-btn">去下载</view>
</view> </view>
<!--预览--> <!--预览-->
<view class="album-maskPreview"> <view class="album-maskPreview" v-if="maskPreviewType==true" @click="maskPreviewType=false">
<view class="maskPreview-Num">{{previewNum+1}}/{{previewData.length}}</view> <view class="maskPreview-Num">{{previewNum+1}}/{{previewData.length}}</view>
<view class="maskPreview-img" @touchstart="start" @touchend="end" @touchmove="move"> <view class="maskPreview-img" @touchstart="start" @touchend="end" @touchmove="move">
<template v-if="previewData.length==1"> <template v-if="previewData.length==1">
<image class="img-center" :src="previewData[previewNum].src"></image> <image class="img-center" :src="previewData[previewNum].faceSourceUrl"></image>
</template> </template>
<template v-else> <template v-else>
<image class="img-left" v-if="previewNum==0" :src="previewData[previewData.length-1].src"></image> <image class="img-left" v-if="previewNum==0" :src="previewData[previewData.length-1].faceSourceUrl"></image>
<image class="img-left" v-else :src="previewData[previewNum-1].src"></image> <image class="img-left" v-else :src="previewData[previewNum-1].faceSourceUrl"></image>
<image class="img-center" :style="{'right':touchRight,'left':touchLeft}" :src="previewData[previewNum].src"></image> <image class="img-center" :style="{right:touchRight +'rpx',left:touchLeft +'rpx'}" :src="previewData[previewNum].faceSourceUrl"></image>
<image class="img-right" v-if="previewNum==previewData.length-1" :src="previewData[0].src"></image> <image class="img-right" v-if="previewNum==previewData.length-1" :src="previewData[0].faceSourceUrl"></image>
<image class="img-right" v-else :src="previewData[previewNum+1].src"></image> <image class="img-right" v-else :src="previewData[previewNum+1].faceSourceUrl"></image>
</template> </template>
</view> </view>
<view class="maskPreview-check"> <view class="maskPreview-check" v-if="checkTypeFun==true">
<u-checkbox v-model="previewData[previewNum].type" shape="circle" class="maskPreview-Check" ></u-checkbox> <u-checkbox v-model="previewData[previewNum].checkType" @click.stop.native="()=>{}" @change="stopPhoto($event)" shape="circle" class="maskPreview-Check"></u-checkbox>
</view> </view>
</view> </view>
<!--明细--> <!--明细-->
...@@ -113,7 +83,7 @@ ...@@ -113,7 +83,7 @@
<view class="maskDetail-content"> <view class="maskDetail-content">
<view class="content-title"> <view class="content-title">
明细 明细
<u-icon class="title-close" name="close-circle" @click="maskDetail=false" ></u-icon> <u-icon class="title-close" name="close-circle" @click="maskDetail=false"></u-icon>
</view> </view>
<view class="content-label">我的相片</view> <view class="content-label">我的相片</view>
<view class="content-money"> <view class="content-money">
...@@ -141,99 +111,203 @@ export default { ...@@ -141,99 +111,203 @@ export default {
}, },
data() { data() {
return { return {
orderShow:false,//头部城市选择 faceIds: [], //查询照片ID
option: [ openid:'',
{ cateName: '全部', id: 0 }, orderShow: false, //头部城市选择
{ cateName: '景区', id: 1 }, option: [],//城市
{ cateName: '酒店', id: 2 }, cityName: '重庆',
{ cateName: '餐饮', id: 3 }, areaId:'100500000',//城市ID
{ cateName: '特产', id: 4 }, merchantId:'',//商户ID
// { cateName: '运营车', id: 5 }, location: {},//位置信息
// { cateName: '组合订单', id: 10 }, projectCheck: 0, //当前选择的产品
], merchantList:[],//头部列表
cityName:'重庆', projectMoreType: false, //是否显示更多产品
projectCheck:0,//当前选择的产品 checkProjectAll: false, //所有产品全选
projectMoreType:false,//是否显示更多产品 maskDetail: false,
checkProjectAll:false,//所有产品全选 maskPreviewType:false,//遮罩预览
maskDetail:false, previewData: [ //图片预览
previewData:[//图片预览 // {
{ // type: false,
type:false, // src: '../static/album/customPic.png'
src:'../../../static/img/hghg/dialog.png' // },
},
{
type:false,
src:'../../../static/img/coupon/coupon.jpg'
},
{
type:false,
src:'../../../static/img/common/getTicketBg.jpg'
},
], ],
previewNum:0,//当前是第几张图片 previewNum: 0, //当前是第几张图片
checkTypeFun:true,//刷新选项
//左右滑动监听开始 //左右滑动监听开始
startData: { startData: {
clientX: '', clientX: '',
clientY: '', clientY: '',
}, },
transition:'', transition: '',
touch: {}, touch: {},
touchLeft:0, touchLeft: 0,
touchRight:0, touchRight: 0,
touchType: 0, //向左0++ 向右1--
//左右滑动 监听结束 //左右滑动 监听结束
} }
}, },
onLoad(option) { onLoad(option) {
this.openid = uni.getStorageSync('openid') //获取openid
this.faceIds = JSON.parse(option.faceIds)
this.location = JSON.parse(uni.getStorageSync('location'))
this.merchantId = uni.getStorageSync('merchantId')
this.obtainProvince()//获取省市区
this.inquireMerchant()//查询所有商户
this.getPhotos()//照片列表
}, },
methods: { methods: {
industrysTypeConfirm(e) {//单列----分类 点击确定 城市 obtainProvince(){//获取省列表
this.cityName = this.option[e].cateName this.$request('scenic/search/loadAreaByCity',{
areaLevel:1,
inChina:0
}).then((res)=>{
if(res.code=='00'){
this.option = res.data
}else{
this.$refs.uToast.show({
title: ret.message,
type: 'error',
})
}
})
},
inquireMerchant(){//查询所有商户
var data = {
id:this.merchantId,//商户ID
province:this.areaId,//省市ID
areaCode:this.areaId,//省市ID
userlatitude:this.location.latitude,//纬度
userlongitude:this.location.longitude,//经度
merchantType:1,//
}
this.$request('scenic/newMerchant/findAllMerchant',data).then((res)=>{
if(res.code=='00'){
this.merchantList = res.data
}else{
this.$refs.uToast.show({
title: ret.message,
type: 'error',
})
}
})
},
getPhotos(){//照片
var data = {
faceIds:this.faceIds,//照片ID
openid:this.openid,
merchantId:this.merchantId,//商户ID
}
this.$request('wechatUser/pdFace/list',data).then((res)=>{
if(res.code=='00'){
this.previewData = res.data
this.previewData.forEach((item,index)=>{
item['checkType'] = false
})
}else{
this.$refs.uToast.show({
title: ret.message,
type: 'error',
})
}
})
},
industrysTypeConfirm(e) { //单列----分类 点击确定 城市
this.cityName = this.option[e].areaName
this.areaId = this.option[e].areaId
this.inquireMerchant()
}, },
cancel() {//单列 点击取消 cancel() { //单列 点击取消
this.orderShow = false this.orderShow = false
}, },
projectClick(num){//产品选择 projectClick(num,id) { //商户选择
this.projectCheck = num this.projectCheck = num
this.merchantId = id
this.inquireMerchant()
}, },
projectMoreFun(){//更多产品显示 projectCheckPhoto(index){//点击预览
if(this.projectMoreType==false){ this.previewNum = index
this.projectMoreType = true this.maskPreviewType = true
},
stopPhoto(){//刷新显示
this.checkTypeFun = false
this.checkTypeFun = true
if(this.checkProjectAll==true){
this.checkProjectAll=false
}
},
checkProjectAllFun(){//是否全选
if(this.checkProjectAll==true){
this.checkProjectAll = false
this.previewData.forEach((item,index)=>{
item.checkType = false
})
}else{ }else{
this.checkProjectAll = true
this.previewData.forEach((item,index)=>{
item.checkType = true
})
}
},
projectMoreFun() { //更多产品显示
if (this.projectMoreType == false) {
this.projectMoreType = true
} else {
this.projectMoreType = false this.projectMoreType = false
} }
}, },
// 触摸touch事件 // 触摸touch事件
start(e){ //@touchstart 触摸开始 start(e) { //@touchstart 触摸开始
this.transition = '.1s' this.transition = '.1s'
this.startData.clientX = e.changedTouches[0].clientX //手指按下时的X坐标 this.startData.clientX = e.changedTouches[0].clientX //手指按下时的X坐标
this.startData.clientY = e.changedTouches[0].clientY //手指按下时的Y坐标 this.startData.clientY = e.changedTouches[0].clientY //手指按下时的Y坐标
}, },
end(e){ //@touchend触摸结束 end(e) { //@touchend触摸结束
this.transition = '.5s' this.transition = '.5s'
if(Math.abs(this.touch.clientX-this.startData.clientX) > 100) { //在事件结束时,判断滑动的距离是否达到出发需要执行事件的要求 if (Math.abs(this.touch.clientX - this.startData.clientX) > 100) { //在事件结束时,判断滑动的距离是否达到出发需要执行事件的要求
console.log('执行查看跳转事件') console.log('执行查看跳转事件')
// this.touch = {}; // this.touch = {};
//动画结束后回到原位 切换图片
this.touchRight = 0
this.touchLeft = 0
//判断当前应该显示哪张照片
if (this.touchType == 1) {
if (this.previewNum == 0) {
this.previewNum = this.previewData.length - 1
} else {
this.previewNum--
}
} else {
if (this.previewNum == this.previewData.length - 1) {
this.previewNum = 0
} else {
this.previewNum++
}
}
} else { } else {
console.log('滑动距离不够,不执行跳转') console.log('滑动距离不够,不执行跳转')
// this.touch = {}; // this.touch = {};
//动画结束后回到原位
this.touchRight = 0
this.touchLeft = 0
} }
}, },
move(event) { //@touchmove触摸移动 move(event) { //@touchmove触摸移动
let touch = event.touches[0] //滑动过程中,手指滑动的坐标信息 返回的是Objcet对象 let touch = event.touches[0] //滑动过程中,手指滑动的坐标信息 返回的是Objcet对象
this.touch = touch this.touch = touch
let data = touch.clientX - this.startData.clientX let data = touch.clientX - this.startData.clientX
if(touch.clientX < this.startData.clientX) { //向左移动 if (touch.clientX < this.startData.clientX) { //向左移动
console.log('左滑动') console.log('左滑动')
console.log(touch.clientX) //方向RPX值
console.log(this.startData.clientX) this.touchRight = this.startData.clientX - touch.clientX
this.touchRight = touch.clientX-this.startData.clientX this.touchType = 0
} }
if(touch.clientX > this.startData.clientX) { //向右移动 if (touch.clientX > this.startData.clientX) { //向右移动
console.log('右滑动') console.log('右滑动')
console.log(touch.clientX) //方向RPX值
console.log(this.startData.clientX) this.touchLeft = touch.clientX - this.startData.clientX
this.touchLeft = touch.clientX-this.startData.clientX this.touchType = 1
} }
}, },
} }
...@@ -241,409 +315,466 @@ export default { ...@@ -241,409 +315,466 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
page{ page {
background-color: #F7F7F7; background-color: #F7F7F7;
} }
.albumBox{ // 76=16 - 44 - 16 98 =34 - 32 - 32
display: flex; .albumBox {
flex-direction: column; // 76=16 - 44 - 16 98 =34 - 32 - 32
height: 100%;
background-color: #F7F7F7;
padding-bottom: 98rpx;
padding-top: 174rpx;
overflow: auto;
}
.album-address{
display: flex;
justify-content: space-between;
width: 100%;
height: 76rpx;
padding: 0 24rpx 0 24rpx;
background-color: #FFFFFF;
box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
overflow: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 20;
.address-left{
display: flex; display: flex;
flex: 1; flex-direction: column;
box-shadow: inset -16px 0px 8px 0px rgba(255, 255, 255, 0.2); height: 100%;
overflow-x: auto; background-color: #F7F7F7;
.left-name{ padding-bottom: 98rpx;
font-size: 32rpx; padding-top: 174rpx;
color: #999999; overflow: auto;
line-height: 76rpx; }
margin-right: 48rpx
} .album-address {
.left-picker{ display: flex;
justify-content: space-between;
width: 100%;
height: 76rpx;
padding: 0 24rpx 0 24rpx;
background-color: #FFFFFF;
box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
overflow: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 20;
.address-left {
display: flex; display: flex;
font-size: 32rpx; flex: 1;
color: #333333; box-shadow: inset -16px 0px 8px 0px rgba(255, 255, 255, 0.2);
line-height: 76rpx; overflow-x: auto;
margin-right: 24rpx;
image{ .left-name {
width: 26rpx; font-size: 32rpx;
height: 26rpx; color: #999999;
margin-top: 25rpx; line-height: 76rpx;
margin-left: 8rpx; margin-right: 48rpx
} }
}
.left-project{ .left-picker {
font-size: 32rpx; display: flex;
color: #333333; font-size: 32rpx;
line-height: 76rpx; color: #333333;
margin-right: 48rpx; line-height: 76rpx;
position: relative; margin-right: 24rpx;
i{
display: block; image {
width: 24rpx; width: 26rpx;
height: 24rpx; height: 26rpx;
font-size: 16rpx; margin-top: 25rpx;
color: #FFFFFF; margin-left: 8rpx;
line-height: 24rpx; }
text-align: center; }
background-color: #EE520E;
border-radius: 50%; .left-project {
position: absolute; font-size: 32rpx;
top: 12rpx; color: #333333;
right: -24rpx; line-height: 76rpx;
margin-right: 48rpx;
position: relative;
i {
display: block;
width: 24rpx;
height: 24rpx;
font-size: 16rpx;
color: #FFFFFF;
line-height: 24rpx;
text-align: center;
background-color: #EE520E;
border-radius: 50%;
position: absolute;
top: 12rpx;
right: -24rpx;
}
}
.left-projectDe {
color: #3688FF;
font-weight: bold;
} }
} }
.left-projectDe{
color: #3688FF; .address-right {
font-weight: bold; display: flex;
} }
} }
.address-right{
display: flex; .album-address::-webkit-scrollbar {
display: none;
}
}
.album-address::-webkit-scrollbar{
display: none;
}
.album-addressMore{
width: 232rpx;
padding: 24rpx 24rpx 0 24rpx;
box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
position: fixed;
top: 76rpx;
right: 0;
z-index: 20;
.addressMore-name{
font-size: 32rpx;
color: #333333;
line-height: 44rpx;
margin-bottom: 24rpx;
}
}
.album-checkAll{
display: flex;
width: 100%;
height: 98rpx;
padding: 32rpx 24rpx 0 24rpx;
overflow: hidden;
position: fixed;
top: 76rpx;
left: 0;
z-index: 20;
/deep/ .u-checkbox{
line-height: 34rpx !important;
}
/deep/ .u-checkbox__label{
font-size: 24rpx !important;
} }
.checkAll-tips{
font-size: 24rpx; .album-addressMore {
color: #999999; width: 232rpx;
line-height: 46rpx; padding: 24rpx 24rpx 0 24rpx;
margin-left: 24rpx; box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
position: fixed;
top: 76rpx;
right: 0;
z-index: 20;
.addressMore-name {
font-size: 32rpx;
color: #333333;
line-height: 44rpx;
margin-bottom: 24rpx;
}
} }
}
.album-subject{ .album-checkAll {
display: flex; display: flex;
flex-wrap: wrap; width: 100%;
justify-content: space-between; height: 98rpx;
flex: 1; padding: 32rpx 24rpx 0 24rpx;
padding: 0 24rpx 0 24rpx;
overflow: auto;
.subject-List{
width: 344rpx;
height: 460rpx;
margin-bottom: 24rpx;
border-radius: 16rpx;
overflow: hidden; overflow: hidden;
position: relative; position: fixed;
.list-image{ top: 76rpx;
display: block; left: 0;
width: 344rpx; z-index: 20;
height: 460rpx;
} /deep/ .u-checkbox {
.list-mask{ line-height: 34rpx !important;
width: 344rpx;
height: 64rpx;
background-color: rgba(0, 0, 0, 0.2);
font-size: 28rpx;
color: #fff;
line-height: 64rpx;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
} }
.list-uCheck{
position: absolute; /deep/ .u-checkbox__label {
right: 0; font-size: 24rpx !important;
top: 24rpx;
} }
}
} .checkAll-tips {
.album-bottom{
display: flex;
justify-content: space-between;
width: 100%;
height: 98rpx;
padding: 0 0 0 24rpx;
box-shadow: 0rpx -2rpx 8rpx 2rpx rgba(0,0,0,0.08);
position: fixed;
bottom: 0;
left: 0;
z-index: 22;
.bottom-left{
flex: 1;
display: flex;
line-height: 98rpx;
.left-oldMoney{
font-size: 24rpx; font-size: 24rpx;
color: #999999; color: #999999;
text-decoration: line-through; line-height: 46rpx;
line-height: 110rpx; margin-left: 24rpx;
margin-right: 8rpx;
}
.left-newMoney{
font-size: 40rpx;
color: #EE520E;
font-weight: bold;
margin-right: 68rpx;
} }
.left-detail{ }
display: flex;
color: #333333; .album-subject {
margin-right: 20rpx; display: flex;
text{ flex-wrap: wrap;
justify-content: space-between;
flex: 1;
padding: 0 24rpx 0 24rpx;
overflow: auto;
.subject-List {
width: 344rpx;
height: 460rpx;
margin-bottom: 24rpx;
border-radius: 16rpx;
overflow: hidden;
position: relative;
.list-image {
display: block;
width: 344rpx;
height: 460rpx;
}
.list-mask {
width: 344rpx;
height: 64rpx;
background-color: rgba(0, 0, 0, 0.2);
font-size: 28rpx; font-size: 28rpx;
line-height: 98rpx; color: #fff;
margin-right: 10rpx; line-height: 64rpx;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
} }
}
.left-num{ .list-uCheck {
width: 32rpx;
height: 32rpx;
border-radius: 50%;
background-color: #EE520E;
text-align: center;
line-height: 32rpx;
font-size: 20rpx;
font-weight: bold;
color: #fff;
margin-top: 34rpx;
}
.left-mask{
width: 128rpx;
height: 48rpx;
font-size: 24rpx;
color: #FFFFFF;
line-height: 48rpx;
text-align: center;
background-color: #EE520E;
border-radius: 28rpx;
opacity: 0.5;
position: absolute;
left: 350rpx;
top: -24rpx;
.mask-transparent{
width:0px;
height:0px;
border:10rpx solid transparent;/*以下四个样式对应四种三角形,任选其一即可实现*/
border-top-color:#EE520E;
/* border-left-color:lightseagreen; */
/* border-right-color:lightseagreen; */
// border-bottom-color:lightseagreen;
position: absolute; position: absolute;
right: 15rpx; right: 0;
bottom: -17rpx; top: 24rpx;
} }
} }
} }
.bottom-Detail{
flex: 1; .album-bottom {
display: flex; display: flex;
flex-direction: column; justify-content: space-between;
.detail-total{
font-size: 28rpx;
line-height: 40rpx;
color: 191919;
margin-bottom: 4rpx;
margin-top: 16rpx;
}
.detail-favorable{
font-size: 16rpx;
color: #FF4308;
line-height: 22rpx;
}
}
.bootom-btn{
width: 240rpx;
height: 98rpx;
background-color: #3688FF;
font-size: 32rpx;
color: #fff;
font-weight: bold;
text-align: center;
line-height: 98rpx;
}
}
.album-maskDetail{
position: fixed;
top: 0;
right: 0;
bottom: 98rpx;
left: 0;
z-index: 19;
background-color: rgba(0,0,0,.3);
.maskDetail-content{
width: 100%; width: 100%;
padding: 32rpx; height: 98rpx;
background-color: #fff; padding: 0 0 0 24rpx;
border-radius: 16rpx 16rpx 0 0; box-shadow: 0rpx -2rpx 8rpx 2rpx rgba(0, 0, 0, 0.08);
position: fixed; position: fixed;
bottom: 0;
left: 0; left: 0;
bottom: 98rpx; z-index: 25;
.content-title{
width: 100%; .bottom-left {
font-size: 36rpx; flex: 1;
color: #333333;
line-height: 50rpx;
margin-bottom: 38rpx;
text-align: center;
font-weight: bold;
position: relative;
.title-close{
position: absolute;
top: 8rpx;
right: 0;
}
}
.content-label{
font-size: 36rpx;
color: #191919;
font-weight: bold;
line-height: 50rpx;
margin-bottom: 32rpx;
}
.content-money{
display: flex; display: flex;
justify-content: space-between; line-height: 98rpx;
margin-bottom: 8rpx;
.money-name{ .left-oldMoney {
font-size: 32rpx; font-size: 24rpx;
color: #191919; color: #999999;
line-height: 44rpx; text-decoration: line-through;
line-height: 110rpx;
margin-right: 8rpx;
} }
.money-text{
font-size: 32rpx; .left-newMoney {
font-size: 40rpx;
color: #EE520E;
font-weight: bold;
margin-right: 68rpx;
}
.left-detail {
display: flex;
color: #333333; color: #333333;
line-height: 44rpx; margin-right: 20rpx;
text {
font-size: 28rpx;
line-height: 98rpx;
margin-right: 10rpx;
}
}
.left-num {
width: 32rpx;
height: 32rpx;
border-radius: 50%;
background-color: #EE520E;
text-align: center;
line-height: 32rpx;
font-size: 20rpx;
font-weight: bold; font-weight: bold;
color: #fff;
margin-top: 34rpx;
}
.left-mask {
width: 128rpx;
height: 48rpx;
font-size: 24rpx;
color: #FFFFFF;
line-height: 48rpx;
text-align: center;
background-color: #EE520E;
border-radius: 28rpx;
opacity: 0.5;
position: absolute;
left: 350rpx;
top: -24rpx;
z-index: 23;
.mask-transparent {
width: 0px;
height: 0px;
border: 10rpx solid transparent;
/*以下四个样式对应四种三角形,任选其一即可实现*/
border-top-color: #EE520E;
/* border-left-color:lightseagreen; */
/* border-right-color:lightseagreen; */
// border-bottom-color:lightseagreen;
position: absolute;
right: 15rpx;
bottom: -17rpx;
}
} }
} }
.content-favorable{
.bottom-Detail {
flex: 1;
display: flex; display: flex;
justify-content: space-between; flex-direction: column;
.favorable-name{
.detail-total {
font-size: 28rpx; font-size: 28rpx;
color: #FC771D;
line-height: 40rpx; line-height: 40rpx;
color: 191919;
margin-bottom: 4rpx;
margin-top: 16rpx;
} }
.favorable-text{
font-size: 28rpx; .detail-favorable {
color: #FC771D; font-size: 16rpx;
line-height: 40rpx; color: #FF4308;
line-height: 22rpx;
} }
} }
.bootom-btn {
width: 240rpx;
height: 98rpx;
background-color: #3688FF;
font-size: 32rpx;
color: #fff;
font-weight: bold;
text-align: center;
line-height: 98rpx;
}
} }
}
.album-maskPreview{ .album-maskDetail {
position: fixed;
top: 0;
right: 0;
bottom: 98rpx;
left: 0;
z-index: 22;
background-color: rgba(0,0,0,.3);
.maskPreview-Num{
font-size: 28rpx;
color: #FFFFFF;
line-height: 40rpx;
position: fixed; position: fixed;
top: 72rpx; top: 0;
right: 32rpx; right: 0;
bottom: 98rpx;
left: 0;
z-index: 24;
background-color: rgba(0, 0, 0, .3);
.maskDetail-content {
width: 100%;
padding: 32rpx;
background-color: #fff;
border-radius: 16rpx 16rpx 0 0;
position: fixed;
left: 0;
bottom: 98rpx;
.content-title {
width: 100%;
font-size: 36rpx;
color: #333333;
line-height: 50rpx;
margin-bottom: 38rpx;
text-align: center;
font-weight: bold;
position: relative;
.title-close {
position: absolute;
top: 8rpx;
right: 0;
}
}
.content-label {
font-size: 36rpx;
color: #191919;
font-weight: bold;
line-height: 50rpx;
margin-bottom: 32rpx;
}
.content-money {
display: flex;
justify-content: space-between;
margin-bottom: 8rpx;
.money-name {
font-size: 32rpx;
color: #191919;
line-height: 44rpx;
}
.money-text {
font-size: 32rpx;
color: #333333;
line-height: 44rpx;
font-weight: bold;
}
}
.content-favorable {
display: flex;
justify-content: space-between;
.favorable-name {
font-size: 28rpx;
color: #FC771D;
line-height: 40rpx;
}
.favorable-text {
font-size: 28rpx;
color: #FC771D;
line-height: 40rpx;
}
}
}
} }
.maskPreview-img{
display: flex; .album-maskPreview {
width: 100%;
height: 794rpx;
position: fixed; position: fixed;
top: 152rpx; top: 0;
right: 0;
bottom: 98rpx;
left: 0; left: 0;
.img-left{ z-index: 22;
width: 520rpx; background-color: rgba(0, 0, 0, .3);
height: 692rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx; .maskPreview-Num {
margin: auto; font-size: 28rpx;
position: absolute; color: #FFFFFF;
left: -466rpx; line-height: 40rpx;
top: 0; position: fixed;
bottom: 0; top: 72rpx;
} right: 32rpx;
.img-right{
width: 520rpx;
height: 692rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx;
margin: auto;
position: absolute;
right: -466rpx;
top: 0;
bottom: 0;
} }
.img-center{
width: 596rpx; .maskPreview-img {
display: flex;
width: 100%;
height: 794rpx; height: 794rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx; position: fixed;
margin: auto; top: 152rpx;
position: absolute;
right: 0;
top: 0;
bottom: 0;
left: 0; left: 0;
.img-left {
width: 520rpx;
height: 692rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx;
margin: auto;
position: absolute;
left: -466rpx;
top: 0;
bottom: 0;
}
.img-right {
width: 520rpx;
height: 692rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx;
margin: auto;
position: absolute;
right: -466rpx;
top: 0;
bottom: 0;
}
.img-center {
width: 596rpx;
height: 794rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx;
margin: auto;
position: absolute;
right: 0;
top: 0;
bottom: 0;
left: 0;
}
} }
}
.maskPreview-check{ .maskPreview-check {
width: 48rpx; width: 48rpx;
height: 48rpx; height: 48rpx;
margin: auto; margin: auto;
position: fixed; position: fixed;
top: 968rpx; top: 968rpx;
left: 0; left: 0;
right: 0; right: 0;
/deep/ .u-checkbox__icon-wrap{
width: 50rpx !important; /deep/ .u-checkbox__icon-wrap {
height: 50rpx !important; width: 50rpx !important;
color: #fff !important; height: 50rpx !important;
border:solid 2px #fff; color: #fff !important;
border: solid 2px #fff;
}
} }
} }
} </style>
</style> \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment