Browse Source

抽奖及动画

宠物详情
地址/权益卡/权益卡详情/宠物/用户优惠券/微调
master
396316021 2 years ago
parent
commit
97f35289b9
  1. 20
      api/card.js
  2. 36
      api/user.js
  3. 2
      components/RightNav/index.vue
  4. 2
      config/host.js
  5. 8
      main.js
  6. 10
      pages.json
  7. 20
      pages/Addr/components/index.scss
  8. 23
      pages/Addr/index.vue
  9. 37
      pages/Card/index.vue
  10. 18
      pages/CardDetail/index.vue
  11. 188
      pages/Draw/components/index.scss
  12. 216
      pages/Draw/index.vue
  13. 48
      pages/Index/components/HomePage/index.vue
  14. 34
      pages/Index/components/UserPage/index.vue
  15. 61
      pages/Index/index.vue
  16. 13
      pages/Pet/components/index.scss
  17. 13
      pages/Pet/index.vue
  18. 428
      pages/PetDetail/components/index.scss
  19. 304
      pages/PetDetail/index.vue
  20. 31
      pages/UserCoupons/index.vue

20
api/card.js

@ -0,0 +1,20 @@
import request from "@/utils/request.js";
import {host} from "@/config/host.js";
export function cardList(data) {
return request({
url: `${host}/user/card-list`,
method: "post",
data
});
}
export function cardDetail(data) {
return request({
url: `${host}/user/card-info`,
method: "post",
data
});
}

36
api/user.js

@ -5,11 +5,45 @@ import {host} from "@/config/host.js";
* 登录
* @param {Object} data
*/
export function test(data) {
export function testLogin(data) {
return request({
url: `${host}/user/gettoken`,
method: "get",
data
});
}
export function login(data) {
return request({
url: `${host}`,
method: "method",
data
});
}
export function userDetail(data) {
return request({
url: `${host}/user/detail`,
method: "post",
data
});
}
export function userExtends(data) {
return request({
url: `${host}/user/user-count`,
method: "post",
data
});
}
export function userCoupons(data) {
return request({
url: `${host}/user/coupons-list`,
method: "get",
data
});
}

2
components/RightNav/index.vue

@ -32,5 +32,5 @@
</script>
<style lang="scss">
@import '@/components/RightNav/components/index.scss';
@import './components/index.scss';
</style>

2
config/host.js

@ -1,4 +1,4 @@
const host='https://aolanxue.x-embers.com/api'
const host='http://192.168.2.92:9505/api'
// const host='https://bml.test.scyp.ink/api'
// const host='http://192.168.2.92:9503/api'
const imghost='http://live.admin.jinghkb.com'

8
main.js

@ -21,6 +21,8 @@ const store = createStore({
return {
footCheck:'home',
title:title,
userInfo:{},
userExtends:{},
}
},
mutations: {
@ -30,6 +32,12 @@ const store = createStore({
title (state,title) {
state.title = title
},
userInfo (state,userInfo) {
state.userInfo = userInfo
},
userExtends (state,userExtends) {
state.userExtends = userExtends
},
}
})
export function createApp() {

10
pages.json

@ -46,6 +46,16 @@
"style" : {
"navigationBarTitleText" : "萌宠画册"
}
},{
"path" : "pages/Draw/index",
"style" : {
"navigationBarTitleText" : "惊喜抽抽抽"
}
},{
"path" : "pages/PetDetail/index",
"style" : {
"navigationBarTitleText" : "萌宠详情"
}
}
],
"globalStyle" : {

20
pages/Addr/components/index.scss

@ -7,6 +7,7 @@
padding-right:0;
.addr-list-item-container{
padding-right:30rpx;
margin-bottom:20rpx;
}
.addr-list-container{
.swiper{
@ -95,7 +96,7 @@
z-index: -1;
width:auto;
height:100%;
padding-bottom:10rpx;
padding-bottom:30rpx;
box-sizing: border-box;
}
.addr-list-del-content{
@ -130,4 +131,21 @@
font-size: 26rpx;
}
}
}
.footer-menu{
padding:30rpx;
position: fixed;
bottom:0;
left:0;
width: 100%;
background: #FFFFFF;
border: 2rpx solid #262626;
box-shadow: 0rpx -2rpx 20rpx 0rpx rgba(0,0,0,0.06);
border-radius: 26rpx 26rpx 0rpx 0rpx;
text-align: center;
.footer-button{
display: flex;
justify-content: center;
}
}

23
pages/Addr/index.vue

@ -52,7 +52,28 @@
</view>
</view>
<view class="footer-menu row">
<view class="footer-button col-6">
<MzButton
title="管理"
button-color="#ffffff"
font-color="##262626"
button-width="250rpx"
>
</MzButton>
</view>
<view class="footer-button col-6"
@click="navTo('/pages/AddrDetail/index')">
<MzButton
title="新增地址"
button-color="#4DC3B8"
font-color="#FFFFFF"
button-width="250rpx"
>
</MzButton>
</view>
</view>
<!-- <RightNav></RightNav> -->
</template>

37
pages/Card/index.vue

@ -18,7 +18,7 @@
<view class="card-title">{{item.title}}</view>
<view class="card-desc-container">
<view class="card-desc">
<view class="card-desc-text">300元购500元券包</view>
<view class="card-desc-text">{{item.profile}}</view>
<view class="card-desc-background"></view>
</view>
</view>
@ -28,13 +28,13 @@
</view>
<view class="card-content">
<view class="card-content-top">
券内含50元抵扣券10张
{{item.illustrate}}
</view>
<view class="card-content-bottom">
抵扣券有效期购卡后
抵扣券有效期{{item.que_illustrate}}
</view>
</view>
<view class="card-btn" @click="navTo('/pages/CardDetail/index')">
<view class="card-btn" @click="navTo('/pages/CardDetail/index?id='+item.id)">
<MzButton
title="开始预约"
font-color="#FFFFFF"
@ -70,6 +70,7 @@
import RightNav from '@/components/RightNav/Index.vue';
import MzButton from '../../components/MzButton/Index.vue';
import api from '@/utils/functions.js';
import {cardList} from "../../api/card";
export default {
components: {
HeaderNav,
@ -100,20 +101,7 @@
isTop: false,
pagePadding: 100,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
orderCardList:[
{
title:'成都市武侯区丰德国际4栋...',
tags:['刷毛','洗澡'],
do_time:'2023/05/03 15—17时',
create_time:'2023/03/03 15:23:22',
},
{
title:'成都市武侯区丰德国际4栋...',
tags:['刷毛','洗澡'],
do_time:'2023/05/03 15—17时',
create_time:'2023/03/03 15:23:22',
},
]
orderCardList:[],
}
},
onLoad() {
@ -125,6 +113,12 @@
url:url
})
},
getCardList(){
cardList().then((res) => {
console.log(res)
this.orderCardList = res.data
})
}
},
onPageScroll(res) {
if(res.scrollTop <= 20){
@ -136,8 +130,11 @@
created() {
this.pagePadding = (api.navHeight().navPaddingTop +
api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
},
mounted() {
this.getCardList();
}
}
</script>
<style lang="scss">

18
pages/CardDetail/index.vue

@ -64,7 +64,7 @@
{{item.title}}
</view>
<view class="coupons-btn">
10
{{item.coupons_number}}
</view>
</view>
<view class="coupons-desc col-12">{{item.time}}</view>
@ -106,6 +106,7 @@
import RightNav from '@/components/RightNav/Index.vue';
import MzButton from '../../components/MzButton/Index.vue';
import api from '@/utils/functions.js';
import {cardDetail} from "../../api/card";
export default {
components: {
HeaderNav,
@ -115,6 +116,7 @@
},
data() {
return {
id:'',
title: 'Hello',
loading: true,
staticImage: {
@ -156,16 +158,24 @@
price: '57',
title: '57元抵扣券',
cause: '满0.01使用',
coupons_number:10,
time: '满0.01元使用仅限线上预约下单使用',
is_timeout: false,
}]
}
},
onLoad() {
onLoad(options) {
this.id = options.id;
this.getCardDetail();
},
methods: {
getCardDetail(){
cardDetail({
id:this.id
}).then((res) => {
console.log(res)
})
}
},
onPageScroll(res) {
if(res.scrollTop <= 20){

188
pages/Draw/components/index.scss

@ -0,0 +1,188 @@
.app-wallpaper{
position: relative;
background:{
size: 100% 100%;
repeat: no-repeat;
};
//padding-left:20rpx;
//padding-right:20rpx;
.draw-container{
padding:{
left:20rpx;
right:20rpx;
top:50rpx;
bottom:60rpx;
}
background:{
size: 100% 100%;
repeat: no-repeat;
position: center center;
}
.draw-content{
box-sizing: border-box;
.draw-item{
box-sizing: border-box;
//padding:5rpx;
padding:10rpx;
.draw-item-container{
padding:5rpx;
box-sizing: border-box;
.img{
width:95rpx;
height:95rpx;
}
border-radius: 20rpx;
&.start-draw{
border-radius: 50%;
padding:5rpx;
background:{
color:#4DC3B8;
}
.draw-item-content{
border-radius: 50%;
border:1rpx solid #D9FFFA;
color:#fff;
}
&.disabled{
background:{
color:#dedede;
}
.draw-item-content{
border-radius: 50%;
border:1rpx solid #f5f5f5;
color:#fff;
}
}
}
background:{
color:#E2FFFB;
}
}
.draw-item-content{
font-size:24rpx;
font-weight: 400;
border:1rpx dashed #4DC3B8;
padding:{
top:35rpx;
bottom:30rpx;
}
text-align: center;
border-radius: 20rpx;
box-sizing: border-box;
color:#539188;
}
&.active{
.draw-item-container{
background:{
color:#FF8859;
}
.draw-item-content{
border:1rpx dashed #FFFFFF;
color:#FFFFFF;
}
}
}
}
}
}
.draw-info-container{
box-sizing: border-box;
padding:{
top:30rpx;
bottom:70rpx;
left:40rpx;
right:40rpx;
};
background:{
size: 100% 100%;
repeat: no-repeat;
};
.draw-title-group{
position: relative;
.draw-gun{
width:100%;
position: absolute;
top:-90rpx;
left:0;
text-align: center;
.img{
height:85rpx;
}
}
.draw-image{
.img{
width:65rpx;
}
margin-bottom:22rpx;
margin-top:10rpx;
}
.draw-title{
font-size: 26rpx;
font-weight: 400;
color: #151515;
}
}
}
}
.draw-shadow{
position: fixed;
top:0;
left:0;
z-index: 9999;
width:100%;
height:100%;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
background:{
color:rgba(0,0,0,0.7)
}
.draw-shadow-container{
position: relative;
background-color:#fff;
box-sizing: border-box;
border-radius: 30rpx;
padding: {
top:160rpx;
bottom:60rpx;
left:60rpx;
right:60rpx;
};
.draw-shadow-image{
text-align: center;
position: absolute;
width:100%;
top:-90rpx;
left:0;
.img{
width:240rpx;
}
}
.draw-shadow-title{
text-align: center;
margin-bottom:20rpx;
.img{
width:200rpx;
}
}
.draw-shadow-content{
max-width:440rpx;
text-align: center;
font-size: 28rpx;
font-weight: 500;
color: #131313;
line-height: 40rpx;
margin-bottom:60rpx;
}
.draw-shadow-button{
justify-content: center;
}
}
}

216
pages/Draw/index.vue

@ -0,0 +1,216 @@
<template>
<HeaderNav title="惊喜抽抽抽" :is-back="true"></HeaderNav>
<view class="body-background" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}"></view>
<view class="app-wallpaper">
<view class="draw-container" :style="{backgroundImage:'url('+staticImage.drawBackground+')'}">
<view class="draw-content row">
<view class="draw-item col-4" :class="{active:(checked == index)}" v-for="(item,index) in drawList">
<view class="draw-item-container" v-if="index != 4">
<view class="draw-item-content">
<image class="img" mode="aspectFill" :src="item.img"/>
<view class="draw-title ">{{item.title}}</view>
</view>
</view>
<view class="draw-item-container start-draw" :class="{disabled:!drawButton}" v-else>
<view class="draw-item-content " @click="drawAni()">
<image class="img" mode="aspectFill" :src="item.img"/>
<view class="draw-title">{{item.title}}</view>
</view>
</view>
</view>
</view>
</view>
<view class="draw-info-container" :style="{backgroundImage:'url('+staticImage.drawInfoBackground+')'}">
<view class="draw-title-group">
<view class="draw-gun">
<image class="img" :src="staticImage.drawInfoGun" mode="heightFix"/>
</view>
<view class="draw-image">
<image class="img" :src="staticImage.drawInfoTitle" mode="widthFix"/>
</view>
<view class="draw-title">
1每人每次限参加一次抽奖活动<br>
2实物请到门店进行兑换<br>
3优惠券自动发送到中奖账户<br>
4优惠券不代表实际金额进行店内消费
</view>
</view>
</view>
</view>
<view class="draw-shadow" v-show="drawShadow">
<view class="draw-shadow-container">
<view class="draw-shadow-image">
<image class="img" :src="staticImage.drawInfoWZImg" mode="widthFix" v-show="!drawStatus"/>
<image class="img" :src="staticImage.drawInfoZJImg" mode="widthFix" v-show="drawStatus"/>
</view>
<view class="draw-shadow-title">
<image class="img" :src="staticImage.drawInfoWZTitle" mode="widthFix" v-show="!drawStatus"/>
<image class="img" :src="staticImage.drawInfoZJTitle" mode="widthFix" v-show="drawStatus"/>
</view>
<view class="draw-shadow-content">
<!-- 恭喜小主获得XX奖励客服将会1个 工作日内联系您-->
恭喜小主获得一匹大马客服将会1个 工作日内联系您
</view>
<view class="draw-shadow-button row" @click="closeDrawShadow">
<MzButton
title="好的"
button-color="#4DC3B8"
font-color="#ffffff"
button-width="250rpx"
>
</MzButton>
</view>
</view>
</view>
<!-- <RightNav></RightNav> -->
</template>
<script>
import {
imghost
} from '@/config/host.js'
import HeaderNav from '@/components/HeaderNav/Index.vue';
import FooterNav from '@/components/FooterNav/Index.vue';
import RightNav from '@/components/RightNav/Index.vue';
import MzButton from '../../components/MzButton/Index.vue';
export default {
components: {
HeaderNav,
FooterNav,
RightNav,
MzButton
},
data() {
return {
drawButton:true,
drawShadow:false,
drawStatus:false,
checked:0,
drawOrder:[],
drawId:7,
drawOrderDefault:[0,1,2,5,8,7,6,3],
title: 'Hello',
loading: true,
staticImage: {
screenActiveImg: imghost + '/static/image/screen-active.png',
wallpaperBgImage: imghost + '/static/image/card-background.png',
dogImage: imghost + '/static/image/index-user-title-dog.png',
drawBackground: imghost + '/static/image/draw-background.png',
drawInfoBackground: imghost + '/static/image/draw-info-background.png',
drawInfoTitle: imghost + '/static/image/draw-info-title.png',
drawInfoGun: imghost + '/static/image/draw-info-gun.png',
drawInfoZJImg: imghost + '/static/image/draw-Zj-img.png',
drawInfoWZImg: imghost + '/static/image/draw-Wz-img.png',
drawInfoZJTitle: imghost + '/static/image/draw-Zj-title.png',
drawInfoWZTitle: imghost + '/static/image/draw-Wz-title.png',
},
indexBanner: [{
image: imghost + '/static/image/banner.png',
url: '',
}],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
drawList: [
{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'开始抽奖'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},{
img:imghost+'/static/image/banner.png',
title:'优惠券'
},
],
}
},
onLoad() {
},
methods: {
navTo(url) {
wx.navigateTo({
url: url
})
},
drawAni(){
let that = this;
if(that.drawButton === false){
return;
}
that.drawButton = false;
that.drawOrder = [];
for(let i=2;i<=3;i++){
for(let index in that.drawOrderDefault){
if(i===3 && that.drawId === that.drawOrderDefault[index]){
break;
}else{
that.drawOrder.push(that.drawOrderDefault[index])
}
}
}
console.log(that.drawOrder)
let index = 0;
let ani = setInterval(()=>{
that.checked = that.drawOrder[index]
index++;
if(index>=that.drawOrder.length){
clearInterval(ani);
that.drawButton = true;
that.drawShadow = true;
}
},200)
},
closeDrawShadow(){
this.drawShadow = false;
}
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
},
mounted() {
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

48
pages/Index/components/HomePage/index.vue

@ -72,22 +72,22 @@
backgroundImage:imghost+'/static/image/index-button-one.png',
serviceImage:imghost+'/static/image/index-button-bg-one.png',
buttonImage:imghost+'/static/image/index-button-bg-btn-one.png',
url:'/pages/Index/index'
url:'/pages/Order/index'
},{
backgroundImage:imghost+'/static/image/index-button-two.png',
serviceImage:imghost+'/static/image/index-button-bg-two.png',
buttonImage:imghost+'/static/image/index-button-bg-btn-two.png',
url:'/pages/Index/index'
url:'/pages/Card/index'
},{
backgroundImage:imghost+'/static/image/index-button-three.png',
serviceImage:imghost+'/static/image/index-button-bg-three.png',
buttonImage:imghost+'/static/image/index-button-bg-btn-three.png',
url:'/pages/Card/index'
url:'/pages/UserCoupons/index'
},{
backgroundImage:imghost+'/static/image/index-button-four.png',
serviceImage:imghost+'/static/image/index-button-bg-four.png',
buttonImage:imghost+'/static/image/index-button-bg-btn-four.png',
url:'/pages/Index/index'
url:'/pages/Draw/index'
},
],
wallpaperBgImage:imghost+'/static/image/background.png'
@ -105,7 +105,9 @@
id:88685
},
isTop:false,
pagePadding:100
pagePadding:100,
userInfo:{},
userExtends:{},
},
onLoad() {
@ -121,6 +123,16 @@
url:url
})
},
updateUserInfo(){
if(this.userInfo){
this.user.id = this.userInfo.id
this.user.nickname = this.userInfo.name
this.user.avatar = this.userInfo.avatar
}
if(this.userExtends){
this.user.coupons = this.userExtends.coupon_count
}
}
},
onPageScroll(res) {
if(res.scrollTop <= 20){
@ -133,10 +145,30 @@
created() {
this.pagePadding = (api.navHeight().navPaddingTop+
api.navHeight().navHeight + (api.navHeight().headerPadding *2))
}
}
},
mounted() {
},
updated() {
},
watch:{
"$store.state.userInfo": {
handler(newVal, oldVal) {
this.userInfo = newVal;
this.updateUserInfo();
}
},
"$store.state.userExtends": {
handler(newVal, oldVal) {
this.userExtends = newVal;
this.updateUserInfo();
}
}
}
}
</script>
<style lang="scss">
@import '@/pages/Index/components/HomePage/components/index.scss';
@import './components/index.scss';
</style>

34
pages/Index/components/UserPage/index.vue

@ -39,7 +39,7 @@
<image class="img" :src="staticImage.informationTitle" mode="heightFix"/>
</view>
<view class="user-button-group row">
<view class="user-button col-4">
<view class="user-button col-4" @click="navTo('/pages/Pet/index')">
<image class="img" :src="staticImage.information.pet" mode="aspectFit"/>
<view class="user-title">宝贝档案</view>
<view class="user-desc">2个萌宠</view>
@ -200,7 +200,9 @@
id:88685
},
isTop:false,
pagePadding:100
pagePadding:100,
userInfo:{},
userExtends:{},
}
},
onLoad() {
@ -225,7 +227,17 @@
wx.navigateTo({
url:'/pages/UserCoupons/index'
})
}
},
updateUserInfo(){
if(this.userInfo){
this.user.id = this.userInfo.id
this.user.nickname = this.userInfo.name
this.user.avatar = this.userInfo.avatar
}
if(this.userExtends){
this.user.coupons = this.userExtends.coupon_count
}
}
},
onPageScroll(res) {
if(res.scrollTop <= 20){
@ -238,7 +250,21 @@
created() {
this.pagePadding = (api.navHeight().navPaddingTop+
api.navHeight().navHeight + (api.navHeight().headerPadding *2))
}
},
watch:{
"$store.state.userInfo": {
handler(newVal, oldVal) {
this.userInfo = newVal;
this.updateUserInfo();
}
},
"$store.state.userExtends": {
handler(newVal, oldVal) {
this.userExtends = newVal;
this.updateUserInfo();
}
}
}
}
</script>

61
pages/Index/index.vue

@ -14,6 +14,8 @@
</view>
<RightNav></RightNav>
<FooterNav></FooterNav>
<u-modal :show="show" title="登录" content="当前未登录是否前往登录" @confirm="userLogin" @cancel="this.show = false;"
:closeOnClickOverlay="true" showCancelButton></u-modal>
</template>
<script>
@ -24,26 +26,56 @@
import OrderPage from '@/pages/Index/components/OrderPage/Index.vue';
import ChatPage from '@/pages/Index/components/ChatPage/Index.vue';
import UserPage from '@/pages/Index/components/UserPage/Index.vue';
import {
testLogin,
userDetail,
userExtends
} from "../../api/user";
export default {
components: {
FooterNav,
RightNav,
HeaderNav,
HomePage,
OrderPage,
ChatPage,
UserPage,
FooterNav,
RightNav,
HeaderNav,
HomePage,
OrderPage,
ChatPage,
UserPage,
},
data() {
return {
title: '',
footCheck: 'home',
show: false,
title: '标题',
content: 'uview-plus的目标是成为uni-app生态最优秀的UI框架'
}
},
onLoad() {
},
methods: {
userLogin() {
testLogin({
user_id: 1
}).then((res) => {
console.log(res.data)
uni.setStorageSync('token', res.data);
this.show = false;
this.getUserDetail();
});
},
getUserDetail() {
userDetail().then((res) => {
uni.setStorageSync('user', res.data);
this.$store.commit('userInfo', res.data);
});
},
getUserExtend() {
userExtends().then((res) => {
uni.setStorageSync('user-extends', res.data);
this.$store.commit('userExtends', res.data);
});
}
// store.
},
onPageScroll(res) {
@ -60,6 +92,19 @@
},
mounted() {
this.title = this.$store.state.title;
let token = uni.getStorageSync('token');
let user = uni.getStorageSync('user');
let userExtends = uni.getStorageSync('user-extends');
if (!token) {
this.show = true;
} else if (!user) {
this.getUserDetail();
} else if (!userExtends) {
this.getUserExtend();
} else {
this.$store.commit('userInfo', user);
this.$store.commit('userExtends', userExtends);
}
},
watch: {
"$store.state.footCheck": {

13
pages/Pet/components/index.scss

@ -247,4 +247,17 @@
}
}
}
}
.right-nav{
width:132rpx;
position: fixed;
right:-25rpx;
bottom:160rpx;
.right-nav-button{
height:127rpx;
background:{
size:100% 100%;
repeat:no-repeat;
}
}
}

13
pages/Pet/index.vue

@ -6,7 +6,7 @@
<view class="order-screen-container row">
<view class="order-list-container">
<view class="order-list-item" v-for="(item,index) in orderCardList">
<view class="order-list-item" v-for="(item,index) in orderCardList" @click="navTo('/pages/PetDetail/index')">
<view v-show="index!=0" class="pet-gun" :style="{
backgroundImage:'url('+staticImage.petGun+')'
}"></view>
@ -37,7 +37,9 @@
</view>
</view>
</view>
<view class="right-nav row">
<view class="right-nav-button col-12" :style="{backgroundImage:'url('+staticImage.addPet+')'}"></view>
</view>
<!-- <RightNav></RightNav> -->
</template>
@ -66,6 +68,7 @@
orderCardBackground: imghost + '/static/image/order-card-background.png',
wallpaperBgImage:imghost +'/static/image/background.png',
petGun:imghost +'/static/image/pet_gun.png',
addPet:imghost +'/static/image/add-pet.png',
},
indexBanner: [{
image: imghost + '/static/image/banner.png',
@ -100,7 +103,11 @@
},
methods: {
navTo(url){
wx.navigateTo({
url:url
})
},
},
onPageScroll(res) {
if(res.scrollTop <= 20){

428
pages/PetDetail/components/index.scss

@ -0,0 +1,428 @@
.app-wallpaper{
position: relative;
background:{
size: 100% 100%;
repeat: no-repeat;
};
.order-capsule-container{
position: sticky;
box-sizing: border-box;
width:100%;
padding:10rpx;
border:2rpx solid #262626;
border-radius: 45rpx;
box-shadow: 1rpx 4rpx 12rpx 0rpx rgba(90,104,103,0.24);
background-color: #F8FAFA;
.order-capsule{
box-sizing: border-box;
padding:20rpx;
text-align: center;
font: {
size:30rpx;
weight:500;
}
line-height:30rpx;
border:2rpx solid rgba(0,0,0,0);
&.active{
background:{
color:#4DC3B8;
}
color:#FFFFFF;
border:2rpx solid #262626;
border-radius:35rpx;
}
}
}
.order-screen-container{
.order-screen{
padding:40rpx 0 20rpx 0;
padding-right: 66rpx;
font-size: 28rpx;
line-height: 53rpx;
color:#646464;
font-weight: 400;
&.active{
color:#000000;
font-size: 32rpx;
font-weight: 500;
.order-screen-active{
display:flex;
}
}
.order-screen-active{
display: none;
align-items: center;
justify-content: center;
.img{
width:37rpx;
}
}
}
.order-screen-time-container{
flex:1;
margin-left:auto;
justify-content: flex-end;
.order-screen{
// padding-right:0;
}
}
.order-screen-time-title{
color:#B5B5B5;
font-size:26rpx;
font-weight: 400;
line-height:53rpx;
padding-right: 16rpx;
}
.order-screen-time-buttton-container{
padding-right: 0;
}
.order-screen-time-buttton{
padding:8rpx 19rpx;
color:#4EC2B7;
font-size: 28rpx;
font-weight: 400;
background-color:#ffffff;
border:1px solid #4EC2B7;
border-radius: 10rpx;
line-height: 28rpx;
box-shadow: 0rpx 4rpx 5rpx 0rpx rgba(82,84,84,0.1), 2rpx -4rpx 0rpx 0rpx rgba(78,194,183,0.2);
}
}
.order-list-container{
width:100%;
max-height: 1000rpx;
height: 100%;
overflow: auto;
box-sizing: border-box;
.order-list-item{
position: relative;
.pet-gun{
background:{
size: 80% 100%;
repeat: no-repeat;
position: center center;
}
height:90rpx;
width:100%;
position: absolute;
top:-60rpx;
z-index: 1;
}
margin-bottom:30rpx;
width:100%;
box-sizing: border-box;
.order-card-container{
width:100%;
box-sizing: border-box;
padding:10rpx 10rpx;
position: relative;
box-sizing: border-box;
.order-card-container-background{
width:100%;
height:90%;
position: absolute;
left:0rpx;
z-index: -1;
bottom:0rpx;
border: 3rpx solid #262626;
box-shadow: 2rpx 6rpx 11rpx 0rpx rgba(159,167,185,0.3);
border-radius: 26rpx;
background: {
color:#EED9AD;
};
}
.order-card-container-background-main{
width:100%;
background:{
color:#FFFFFF;
}
border-radius: 26rpx;
border: 3rpx solid #262626;
padding:7rpx;
box-sizing:border-box;
.order-card-col{
width:100%;
box-sizing: border-box;
padding:20rpx;
background:{
size:100% 100%;
position: center center;
repeat:no-repeat;
}
}
}
.order-card-left{
align-items: center;
.left-background{
box-sizing: border-box;
width:135rpx;
height:135rpx;
border-radius: 50%;
align-items: center;
justify-content: center;
display: flex;
background:{
color:#EED9AD;
}
}
//height:auto;
margin-right: 25rpx;
.img{
width:110rpx;
height:110rpx;
border-radius: 50%;
}
}
.order-card-right{
border-radius: 30rpx;
align-items: center;
justify-content: center;
background:{
color:#FBF5E7;
}
text-align: center;
padding:30rpx;
padding-left:20rpx;
.order-card-title{
padding-top:5px;
font-size:32rpx;
font-weight: 500;
line-height: 30rpx;
color:#131313;
}
.order-card-tag-container{
padding-top:18rpx;
.order-card-tag{
padding:9rpx 20rpx;
background:{
color:#E9FBF7;
}
color:#4DC3B8;
font-size:26rpx;
font-weight:400;
line-height:1;
border-radius:6rpx;
&+.order-card-tag{
margin-left:9rpx;
}
}
}
.order-card-day{
}
.order-card-pay-time{
}
.order-card-day,.order-card-pay-time{
padding-top:20rpx;
font-size:28rpx;
font-weight:400;
line-height:30rpx;
color:#767676;
.card-label{
color:#1B1B1B;
}
}
}
.order-card-bottom{
padding-top:30rpx;
justify-content: center;
}
.card-button{
&:nth-child(1){
padding-right:23rpx;
}
&:nth-child(2){
padding-left:23rpx;
}
}
}
}
}
.pet-detail-bottom-container{
padding:15rpx;
.pet-detail-container{
.pet-detail-gun{
width:100%;
text-align: center;
.img{
height:90rpx;
}
position: absolute;
top:-70rpx;
left:0;
}
position: relative;
.pet-detail-content{
padding:50rpx 0;
border: 3rpx solid #262626;
background:{
color:#FFFFFF;
}
border-radius: 26rpx;
.content-item{
align-items: center;
padding:15rpx 30rpx;
.item-icon{
width:32rpx;
height:32rpx;
.img{
width:32rpx;
height:32rpx;
}
}
.item-title{
font-size: 30rpx;
font-weight: 500;
color: #111111;
margin-left:3rpx;
}
.item-content {
font-size: 30rpx;
font-weight: 400;
color: #4D4D4D;
margin-left:10rpx;
&.item-textarea{
width:100%;
padding:30rpx;
background:{
color:#F2F8F8;
}
margin-left:0;
margin-top:20rpx;
min-height:100rpx;
}
}
&.pet-detail-video-group{
.video-title{
.img{
height:35rpx;
}
}
.video-content{
padding:10rpx;
position: relative;
.video-content-container{
height:250rpx;
background-color:rgba(0,0,0,1);
border-radius: 16rpx;
position: relative;
z-index: 2;
.img{
height:250rpx;
}
}
.video-content-background{
width:100%;
height:75%;
position: absolute;
bottom:0;
left:0;
z-index: 1;
border:1rpx solid #000;
border-radius: 16rpx;
}
}
}
&.pet-detail-photo-group{
box-sizing: border-box;
.video-content{
box-sizing: border-box;
}
.video-title{
.img{
height:35rpx;
}
}
.photo-item{
box-sizing: border-box;
padding:10rpx;
.photo-item-container{
position: relative;
box-sizing: border-box;
.photo-content{
box-sizing: border-box;
position: relative;
border:1rpx solid #000;
border-radius: 20rpx;
z-index: 2;
}
.photo-background{
box-sizing: border-box;
position: absolute;
top:10rpx;
left:0;
z-index: 1;
width:100%;
height:100%;
border:1rpx solid #000;
border-radius: 20rpx;
}
}
.img{
width:100%;
}
}
}
}
}
.pet-detail-background{
position: absolute;
width:100%;
height:100%;
top:0;
left:0;
z-index: -1;
border-radius: 26rpx;
transform: rotateZ(1.5grad);
background:{
color:#4DC3B8;
}
}
}
}
}
.right-nav{
width:132rpx;
position: fixed;
right:-25rpx;
bottom:160rpx;
.right-nav-button{
height:127rpx;
background:{
size:100% 100%;
repeat:no-repeat;
}
}
}
.footer-menu{
padding:30rpx;
position: fixed;
bottom:0;
left:0;
width: 100%;
z-index: 9999;
background: #FFFFFF;
border: 2rpx solid #262626;
box-shadow: 0rpx -2rpx 20rpx 0rpx rgba(0,0,0,0.06);
border-radius: 26rpx 26rpx 0rpx 0rpx;
text-align: center;
.footer-button{
display: flex;
justify-content: center;
}
}

304
pages/PetDetail/index.vue

@ -0,0 +1,304 @@
<template>
<HeaderNav title="萌宠详情" :is-back="true"></HeaderNav>
<view class="app-wallpaper" :style="{
backgroundImage:'url('+staticImage.wallpaperBgImage+')'
}">
<view class="order-screen-container row">
<view class="order-list-container">
<view class="order-list-item">
<view v-show="false" class="pet-gun" :style="{
backgroundImage:'url('+staticImage.petGun+')'
}"></view>
<view class="order-card-container row">
<view class="order-card-container-background col-12"></view>
<view class="order-card-container-background-main row">
<view class="order-card-col row">
<view class="order-card-left">
<view class="left-background">
<image class="img" :src="petImage" mode="aspectFill" />
</view>
</view>
<view class="order-card-right col row">
<view class="col">
<view class="name ">靓仔</view>
<view class="old">2</view>
</view>
<view class="col">
<view class="type">英短</view>
<view class="weight">8kg</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="pet-detail-bottom-container">
<view class="pet-detail-container">
<view class="pet-detail-gun col">
<image class="img" mode="heightFix" :src="staticImage.petGun"/>
</view>
<view class="pet-detail-content">
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petName"/>
</view>
<view class="item-title">
宝贝名字
</view>
<view class="item-content">
靓仔
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petType"/>
</view>
<view class="item-title">
宝贝品种
</view>
<view class="item-content">
美国英短
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petBirth"/>
</view>
<view class="item-title">
出生日期
</view>
<view class="item-content">
2020年6月
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petSex"/>
</view>
<view class="item-title">
宝贝性别
</view>
<view class="item-content">
弟弟
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petYm"/>
</view>
<view class="item-title">
最近疫苗时间
</view>
<view class="item-content">
2020/5/23
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petQc"/>
</view>
<view class="item-title">
最近驱虫时间
</view>
<view class="item-content">
2020/5/23
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petHome"/>
</view>
<view class="item-title">
宝贝户口犬证
</view>
<view class="item-content">
</view>
</view>
<view class="content-item row">
<view class="item-icon">
<image class="img" mode="widthFix" :src="staticImage.petBs"/>
</view>
<view class="item-title">
过往病史
</view>
<view class="item-content item-textarea">
病使信息文字占位
</view>
</view>
<view class="content-item pet-detail-video-group">
<view class="video-title">
<image class="img" mode="heightFix" :src="staticImage.petVideoTitle"/>
</view>
<view class="video-content">
<view class="video-content-container">
<image class="img" mode="aspectFill" :src="staticImage.wallpaperBgImage"/>
</view>
<view class="video-content-background"></view>
</view>
</view>
<view class="content-item pet-detail-photo-group">
<view class="video-title">
<image class="img" mode="heightFix" :src="staticImage.petPhotoTitle"/>
</view>
<view class="video-content row">
<view class="photo-item col-4">
<view class="photo-item-container">
<view class="photo-content">
<image class="img" mode="widthFix" :src="staticImage.wallpaperBgImage"/>
</view>
<view class="photo-background"></view>
</view>
</view>
<view class="photo-item col-4">
<view class="photo-item-container">
<view class="photo-content">
<image class="img" mode="widthFix" :src="staticImage.wallpaperBgImage"/>
</view>
<view class="photo-background"></view>
</view>
</view>
<view class="photo-item col-4">
<view class="photo-item-container">
<view class="photo-content">
<image class="img" mode="widthFix" :src="staticImage.wallpaperBgImage"/>
</view>
<view class="photo-background"></view>
</view>
</view>
</view>
</view>
</view>
<view class="pet-detail-background"></view>
</view>
</view>
</view>
<view class="footer-menu row">
<view class="footer-button col-6">
<MzButton
title="删除"
button-color="#ffffff"
font-color="##262626"
button-width="250rpx"
>
</MzButton>
</view>
<view class="footer-button col-6"
@click="navTo('/pages/AddrDetail/index')">
<MzButton
title="修改"
button-color="#4DC3B8"
font-color="#FFFFFF"
button-width="250rpx"
>
</MzButton>
</view>
</view>
<!-- <RightNav></RightNav> -->
</template>
<script>
import {
imghost
} from '@/config/host.js'
import HeaderNav from '@/components/HeaderNav/Index.vue';
import FooterNav from '@/components/FooterNav/Index.vue';
import RightNav from '@/components/RightNav/Index.vue';
import MzButton from '@/components/MzButton/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
HeaderNav,
FooterNav,
RightNav,
MzButton
},
data() {
return {
title: 'Hello',
loading: true,
staticImage: {
screenActiveImg: imghost + '/static/image/order-screen-active.png',
orderCardBackground: imghost + '/static/image/order-card-background.png',
wallpaperBgImage:imghost +'/static/image/background.png',
petGun:imghost +'/static/image/pet_gun.png',
petName:imghost +'/static/image/pet-detail-name.png',
petType:imghost +'/static/image/pet-detail-type.png',
petBirth:imghost +'/static/image/pet-detail-birthday.png',
petSex:imghost +'/static/image/pet-detail-sex.png',
petYm:imghost +'/static/image/pet-detail-ym.png',
petQc:imghost +'/static/image/pet-detail-qc.png',
petHome:imghost +'/static/image/pet-detail-home.png',
petBs:imghost +'/static/image/pet-detail-bs.png',
petVideoTitle:imghost +'/static/image/pet-detail-video-title.png',
petPhotoTitle:imghost +'/static/image/pet-detail-photo-title.png',
},
indexBanner: [{
image: imghost + '/static/image/banner.png',
url: '',
}],
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
orderCardList:[
{
title:'成都市武侯区丰德国际4栋...',
tags:['刷毛','洗澡'],
do_time:'2023/05/03 15—17时',
create_time:'2023/03/03 15:23:22',
},
{
title:'成都市武侯区丰德国际4栋...',
tags:['刷毛','洗澡'],
do_time:'2023/05/03 15—17时',
create_time:'2023/03/03 15:23:22',
},
]
}
},
onLoad() {
},
methods: {
},
onPageScroll(res) {
if(res.scrollTop <= 20){
uni.$emit('isTop', true);
}else{
uni.$emit('isTop', false);
}
},
created() {
this.pagePadding = (api.navHeight().navPaddingTop +
api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

31
pages/UserCoupons/index.vue

@ -8,7 +8,7 @@
<view class="capsule col-6 active">
省点银子
</view>
<view class="capsule col-6">
<view class="capsule col-6" @click="navTo('/pages/Card/index')">
豪门大户卡
</view>
</view>
@ -67,6 +67,7 @@
import FooterNav from '@/components/FooterNav/Index.vue';
import RightNav from '@/components/RightNav/Index.vue';
import MzButton from '@/components/MzButton/Index.vue';
import {userCoupons} from "../../api/user";
export default {
components: {
HeaderNav,
@ -124,7 +125,26 @@
},
methods: {
navTo(url){
wx.navigateTo({
url:url
})
},
getCouponsList(page = 1){
userCoupons({
page:page
}).then((res) => {
this.couponsList = res.data.map((row) => {
return {
price:parseFloat(row.deduction),
title:row.title,
time: '有效期至 '+row.end_time,
cause:'满'+parseFloat(row.min_price)+'使用',
is_timeout: (row.status == 2),
}
})
})
}
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
@ -136,8 +156,11 @@
created() {
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
},
mounted() {
this.getCouponsList();
}
}
</script>
<style lang="scss">

Loading…
Cancel
Save