Browse Source

接口

master
chenlong 2 years ago
parent
commit
3771b12957
  1. 18
      api/order.js
  2. 10
      api/user.js
  3. 158
      pages.json
  4. 66
      pages/CardDetail/index.vue
  5. 2
      pages/ChatDetail/index.vue
  6. 14
      pages/Index/components/HomePage/index.vue
  7. 2
      pages/Index/components/OrderPage/index.vue
  8. 27
      pages/Index/components/UserPage/index.vue
  9. 35
      pages/Index/index.vue
  10. 54
      pages/Login/components/index.scss
  11. 212
      pages/Login/index.vue
  12. 2
      project.config.json
  13. 1
      unpackage/dist/dev/mp-weixin/app.js
  14. 3
      unpackage/dist/dev/mp-weixin/app.json
  15. 5
      unpackage/dist/dev/mp-weixin/pages/ChatDetail/index.js
  16. 16
      unpackage/dist/dev/mp-weixin/pages/Index/components/HomePage/Index.js
  17. 9
      unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.js
  18. 2
      unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.wxml
  19. 71
      unpackage/dist/dev/mp-weixin/pages/Index/components/UserPage/Index.js
  20. 2
      unpackage/dist/dev/mp-weixin/pages/Index/components/UserPage/Index.wxml
  21. 32
      unpackage/dist/dev/mp-weixin/pages/Index/index.js
  22. 2
      unpackage/dist/dev/mp-weixin/project.config.json
  23. 13
      unpackage/dist/dev/mp-weixin/project.private.config.json
  24. 2
      utils/request.js

18
api/order.js

@ -0,0 +1,18 @@
import request from "@/utils/request";
import {host} from "@/config/host";
/**
* 权益卡订单
* @param card_id
* @returns {Promise | Promise<unknown>}
*/
export function cardOrder(card_id)
{
return request({
url:`${host}/order/create-cardorder`,
method: 'post',
data:{
card_id
}
})
}

10
api/user.js

@ -46,4 +46,14 @@ export function userCoupons(data) {
method: "get",
data
});
}
export function appletLogin(code){
return request({
url: `${host}/user/login`,
method: "post",
data:{
code:code
}
})
}

158
pages.json

@ -1,94 +1,116 @@
{
"pages" : [
"pages": [
//pageshttps://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/Index/index",
"style" : {
"navigationBarTitleText" : "首页"
"path": "pages/Index/index",
"style": {
"navigationBarTitleText": "首页"
}
},{
"path" : "pages/UserDetail/index",
"style" : {
"navigationBarTitleText" : "用户信息"
},
{
"path": "pages/UserDetail/index",
"style": {
"navigationBarTitleText": "用户信息"
}
},{
"path" : "pages/ChatDetail/index",
"style" : {
"navigationBarTitleText" : "聊天列表"
},
{
"path": "pages/ChatDetail/index",
"style": {
"navigationBarTitleText": "聊天列表"
}
},{
"path" : "pages/UserCoupons/index",
"style" : {
"navigationBarTitleText" : "用户优惠券"
},
{
"path": "pages/UserCoupons/index",
"style": {
"navigationBarTitleText": "用户优惠券"
}
},{
"path" : "pages/Addr/index",
"style" : {
"navigationBarTitleText" : "地址簿"
},
{
"path": "pages/Addr/index",
"style": {
"navigationBarTitleText": "地址簿"
}
},{
"path" : "pages/AddrDetail/index",
"style" : {
"navigationBarTitleText" : "地址详情"
},
{
"path": "pages/AddrDetail/index",
"style": {
"navigationBarTitleText": "地址详情"
}
},
{
"path": "pages/Card/index",
"style": {
"navigationBarTitleText": "付款权益卡"
}
},{
"path" : "pages/Card/index",
"style" : {
"navigationBarTitleText" : "付款权益卡"
},
{
"path": "pages/CardDetail/index",
"style": {
"navigationBarTitleText": "付款权益卡详情"
}
},{
"path" : "pages/CardDetail/index",
"style" : {
"navigationBarTitleText" : "付款权益卡详情"
},
{
"path": "pages/Pet/index",
"style": {
"navigationBarTitleText": "萌宠画册"
}
},{
"path" : "pages/Pet/index",
"style" : {
"navigationBarTitleText" : "萌宠画册"
},
{
"path": "pages/Draw/index",
"style": {
"navigationBarTitleText": "惊喜抽抽抽"
}
},{
"path" : "pages/Draw/index",
"style" : {
"navigationBarTitleText" : "惊喜抽抽抽"
},
{
"path": "pages/PetDetail/index",
"style": {
"navigationBarTitleText": "萌宠详情"
}
},{
"path" : "pages/PetDetail/index",
"style" : {
"navigationBarTitleText" : "萌宠详情"
},
{
"path": "pages/FeedLog/index",
"style": {
"navigationBarTitleText": "喂养档案"
}
},{
"path" : "pages/FeedLog/index",
"style" : {
"navigationBarTitleText" : "喂养档案"
},
{
"path": "pages/OrderPage/index",
"style": {
"navigationBarTitleText": "预约服务"
}
},{
"path" : "pages/OrderPage/index",
"style" : {
"navigationBarTitleText" : "预约服务"
},
{
"path": "pages/Login/index",
"style": {
"navigationBarTitleText": "登录"
}
}
],
"globalStyle" : {
"navigationBarTextStyle" : "black",
"navigationBarTitleText" : "uni-app",
"navigationBarBackgroundColor" : "#F8F8F8",
"backgroundColor" : "#F8F8F8",
"navigationStyle" : "custom"
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"navigationStyle": "custom"
},
"easycom" : {
"custom" : {
"^u-(.*)" : "uview-plus/components/u-$1/u-$1.vue"
"easycom": {
"custom": {
"^u-(.*)": "uview-plus/components/u-$1/u-$1.vue"
}
},
"uniIdRouter" : {},
"condition" : {
"uniIdRouter": {},
"condition": {
//
"current" : 0, //(list )
"list" : [
"current": 0,
//(list )
"list": [
{
"name" : "", //
"path" : "", //
"query" : "" //onLoad
"name": "",
//
"path": "",
//
"query": ""
//onLoad
}
]
}

66
pages/CardDetail/index.vue

@ -13,10 +13,10 @@
<view class="card-col row" >
<view class="card-right">
<view class="card-title">宠托10次权益卡</view>
<view class="card-title">{{ cardDetail.title }}</view>
<view class="card-desc-container">
<view class="card-desc">
<view class="card-desc-text">300元购500元券包</view>
<view class="card-desc-text">{{ cardDetail.profile }}</view>
<view class="card-desc-background"></view>
</view>
</view>
@ -26,10 +26,10 @@
</view>
<view class="card-content">
<view class="card-content-top">
券内含50元抵扣券10张
{{ cardDetail.illustrate }}
</view>
<view class="card-content-bottom">
抵扣券有效期购卡后
{{ cardDetail.que_illustrate }}
</view>
</view>
</view>
@ -44,32 +44,32 @@
</view>
<view class="detail-box-bottom">
<view class="coupons-list">
<view v-for="item in couponsList" class="coupons-item-container" :style="{
<view class="coupons-item-container" :style="{
backgroundImage:'url('+(staticImage.couponsBackground)+')'
}">
<view class="coupons-item row">
<view class="coupons-left ">
<view class="coupons-big-title-group row">
<view class="coupons-big-title">{{item.price}}</view>
<view class="coupons-big-title">{{cardDetail.deduction}}</view>
<view class="coupons-big-desc"></view>
</view>
<view class="coupons-cause">
{{item.cause}}
{{cardDetail.min_price}}
</view>
</view>
<view class="coupons-right col row">
<view class=" row">
<view class="coupons-title-group col-12 row">
<view class="coupons-title">
{{item.title}}
{{cardDetail.coupons_title}}
</view>
<view class="coupons-btn">
{{item.coupons_number}}
{{cardDetail.coupons_number}}
</view>
</view>
<view class="coupons-desc col-12">{{item.time}}</view>
<view class="coupons-desc col-12">{{ cardDetail.min_price }}元使用仅限线上预约下单使用</view>
</view>
<view class="coupons-gq " v-show="item.is_timeout">
<view class="coupons-gq " >
<image class="img" :src="staticImage.couponsGQ" mode="aspectFill" />
</view>
</view>
@ -86,13 +86,15 @@
<text>我已阅读并同意</text><text class="foot-menu-url">付费权益卡协议</text>
</view>
</view>
<MzButton
title="立即购买"
button-color="#4DC3B8"
font-color="#FFFFFF"
button-width="200rpx"
>
</MzButton>
<view @click="pay">
<MzButton
title="立即购买"
button-color="#4DC3B8"
font-color="#FFFFFF"
button-width="200rpx"
>
</MzButton>
</view>
</view>
<!-- <RightNav></RightNav> -->
</template>
@ -107,6 +109,7 @@
import MzButton from '../../components/MzButton/Index.vue';
import api from '@/utils/functions.js';
import {cardDetail} from "../../api/card";
import {cardOrder} from "@/api/order";
export default {
components: {
HeaderNav,
@ -140,6 +143,7 @@
isTop: false,
pagePadding: 100,
petImage: imghost + '/static/image/pet_avatar1.jpeg',
cardDetail:{},
orderCardList:[
{
title:'成都市武侯区丰德国际4栋...',
@ -173,9 +177,31 @@
cardDetail({
id:this.id
}).then((res) => {
console.log(res)
this.cardDetail = res.data
})
}
},
pay(){
cardOrder(this.id).then(data => {
console.log(data);
});
// uni.requestPayment({
// "provider": "wxpay",
// "orderInfo": {
// "appid": "wx499********7c70e", // - - AppId AppId
// "noncestr": "c5sEwbaNPiXAF3iv", //
// "package": "Sign=WXPay", //
// "partnerid": "148*****52", //
// "prepayid": "wx202254********************fbe90000", //
// "timestamp": 1597935292, //
// "sign": "A842B45937F6EFF60DEC7A2EAA52D5A0" // MD5/RSA
// },
// success(res) {},
// fail(e) {}
// })
}
},
onPageScroll(res) {
if(res.scrollTop <= 20){

2
pages/ChatDetail/index.vue

@ -109,7 +109,9 @@
},
methods: {
getToken(){
}
},
onPageScroll(res) {

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

@ -29,7 +29,7 @@
<view class="user-coupons" :style="{backgroundImage:'url('+staticImage.couponsImage+')'}">
<view class="user-coupons-number" @click="userCouponsPage()">
<view class="user-coupons-number-container">
{{user.coupons}}
{{user.coupon_count}}
</view>
</view>
</view>
@ -59,6 +59,7 @@
imghost
} from '@/config/host.js'
import api from '@/utils/functions.js';
import log from "@/utils/log";
export default {
data: {
title: 'Hello',
@ -101,13 +102,12 @@
user:{
avatar:imghost+'/static/image/banner.png',
nickname:'清晨的风',
coupons:221,
coupon_count:221,
id:88685
},
isTop:false,
pagePadding:100,
userInfo:{},
userExtends:{},
},
onLoad() {
@ -128,9 +128,7 @@
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
this.user.coupon_count = this.userInfo.coupon_count
}
}
},
@ -147,7 +145,9 @@
api.navHeight().navHeight + (api.navHeight().headerPadding *2))
},
mounted() {
this.userInfo = this.$store.state.userInfo;
log(this.userInfo);
log(this.$store.state);
},
updated() {

2
pages/Index/components/OrderPage/index.vue

@ -65,7 +65,7 @@
</view>
</view>
<view class="order-card-bottom col-12 row">
<view class="card-button">
<view class="card-button" @click="navTo('/pages/ChatDetail/index')">
<MzButton
title="立即沟通"
font-color="#3E3221"

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

@ -26,7 +26,7 @@
<view class="user-detail-coupons" :style="{
backgroundImage:'url('+staticImage.couponsImage+')'
}" @click="userCouponsPage()">
{{user.coupons}}
{{user.coupon_count}}
</view>
<view class="user-detail-id col-12">会员编号{{user.id}}</view>
</view>
@ -42,17 +42,17 @@
<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>
<view class="user-desc">{{ userExtends.pet_count }}个萌宠</view>
</view>
<view class="user-button col-4" @click="navTo('/pages/Addr/index')">
<image class="img" :src="staticImage.information.info" mode="aspectFit"/>
<view class="user-title">信息档案</view>
<view class="user-desc">2个地址</view>
<view class="user-desc">{{ userExtends.address_count }}个地址</view>
</view>
<view class="user-button col-4">
<image class="img" :src="staticImage.information.feed" mode="aspectFit"/>
<view class="user-title">喂养档案</view>
<view class="user-desc">2个档案</view>
<view class="user-desc">{{ userExtends.feed_count }}个档案</view>
</view>
</view>
</view>
@ -69,7 +69,7 @@
<image class="img" :src="staticImage.babyTitle" mode="heightFix"/>
<view class="shop-car-container">
<image class="img shop-car" :src="staticImage.baby.shopCar" mode="heightFix"/>
<view class="shop-car-number">2</view>
<view class="shop-car-number">{{ userExtends.order_count }}</view>
</view>
</view>
<view class="user-button-group row">
@ -151,6 +151,8 @@
import FooterNav from '@/components/FooterNav/Index.vue';
import RightNav from '@/components/RightNav/Index.vue';
import api from '@/utils/functions.js';
import {userExtends} from "@/api/user";
import log from "@/utils/log";
export default {
components: {
HeaderNav,
@ -196,7 +198,7 @@
user:{
avatar:imghost+'/static/image/banner.png',
nickname:'清晨的风',
coupons:221,
coupon_count:221,
id:88685
},
isTop:false,
@ -223,6 +225,12 @@
this.$store.commit('footCheck','order');
this.$store.commit('title','订单');
},
showNumber(){
userExtends().then(data => {
log(data);
this.userExtends = data.data;
})
},
userCouponsPage(){
wx.navigateTo({
url:'/pages/UserCoupons/index'
@ -233,9 +241,7 @@
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
this.user.coupon_count = this.userInfo.coupon_count
}
}
},
@ -247,6 +253,9 @@
}
},
mounted() {
this.showNumber();
},
created() {
this.pagePadding = (api.navHeight().navPaddingTop+
api.navHeight().navHeight + (api.navHeight().headerPadding *2))

35
pages/Index/index.vue

@ -54,28 +54,11 @@
},
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);
});
uni.navigateTo({
url:'/pages/Login/index'
})
this.show = false;
},
getUserExtend() {
userExtends().then((res) => {
uni.setStorageSync('user-extends', res.data);
this.$store.commit('userExtends', res.data);
});
}
// store.
},
onPageScroll(res) {
@ -93,17 +76,11 @@
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 {
}else{
let user = uni.getStorageSync('user');
this.$store.commit('userInfo', user);
this.$store.commit('userExtends', userExtends);
}
},
watch: {

54
pages/Login/components/index.scss

@ -0,0 +1,54 @@
.wallpaper-container{
position: fixed;
top:0;
left:0;
width:100%;
height:100vh;
padding:0 50rpx;
.login-container{
position: relative;
width:100%;
height:100%;
align-items: center;
justify-content: center;
align-content: center;
.login-logo-container{
position: absolute;
top:300rpx;
flex-direction: column;
//width:100%;
justify-content: center;
align-items: center;
.logo{
//width:100%;
}
.login-title{
justify-content: center;
}
}
.login-button-container{
width:100%;
.login-button{
width:100%;
}
}
.privacy-container{
position: absolute;
bottom:100rpx;
text-align: center;
}
.login-title{
.title-background{
position: relative;
bottom:12rpx;
width: 142rpx;
height: 12rpx;
background: linear-gradient(90deg, #FF9545 0%, rgba(255,149,69,0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
z-index: -1;
}
}
}
}

212
pages/Login/index.vue

@ -0,0 +1,212 @@
<template>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
:safe-area-inset-top="true"
:placeholder="true"
bgColor="#ffffff"
></u-navbar>
<view class="wallpaper-container row">
<view class="login-container row">
<view class="login-logo-container row">
<view class="logo">
<u-image mode="widthFix" width="188" height="188" :src="staticImage.loginLogo"></u-image>
</view>
<view class="login-title">
<u-text text="欢迎登录宠物喂养" color="#020B18" size="36"></u-text>
<view class="title-background"></view>
</view>
</view>
<view class="login-button-container">
<u-button
v-if="privateStatus"
type="success"
size="normal"
@getphonenumber="wxLogin"
open-type="getPhoneNumber"
shape="circle"
color="#45C55E"
height="88"
>
<!-- <u-icon name="weixin-fill" size="50" color="#fff" class="weixin-icon"></u-icon>-->
<u-text text="登录" color="#fff" size="32" align="center" prefix-icon="weixin-fill" :icon-style="{fontSize:'50rpx',color:'#ffffff',marginRight:'5rpx'}" custom-style="display:inline;"></u-text>
</u-button>
<u-button
v-else
type="success"
size="normal"
shape="circle"
color="#45C55E"
height="88"
@click="openPopup"
>
<!-- <u-icon name="weixin-fill" size="50" color="#fff" class="weixin-icon"></u-icon>-->
<u-text text="登录" color="#fff" size="32" align="center" prefix-icon="weixin-fill" :icon-style="{fontSize:'50rpx',color:'#ffffff',marginRight:'5rpx'}" custom-style="display:inline;"></u-text>
</u-button>
</view>
<view class="privacy-container row">
<view class="text">
<u-text text="登录/注册即视为你同意" color="#999999" size="24"></u-text>
</view>
<view class="text">
<u-text text="《小程序隐私保护指引》" color="#178AF2" size="24" @click="openPrivacyContract"></u-text>
</view>
<!-- <view class="text">-->
<!-- <u-text text="和" color="#999999" size="24"></u-text>-->
<!-- </view>-->
<!-- <view class="text">-->
<!-- <u-text text="《隐私政策》" color="#178AF2" size="24"></u-text>-->
<!-- </view>-->
</view>
<!-- <u-button-->
<!-- type="success"-->
<!-- size="large"-->
<!-- @click="login"-->
<!-- >-->
<!-- <u-icon name="weixin-circle-fill" size="50" color="#fff" class="weixin-icon"></u-icon>-->
<!-- 登录-->
<!-- </u-button>-->
<uv-popup ref="popup" type="center" :is-mask-click="false" round="20" mode="bottom">
<view class="popup-box" style="padding:40rpx">
<view style="padding:20rpx 0;">
<u-text bold text="用户隐私保护提示" color="#020b18" size="32"></u-text>
</view>
<view class="row">
<view class="">
<u-text color="#020b18" line-height="50" text="用户隐私保护提示" size="28"></u-text>
</view>
<view class="">
<u-text color="#178AF2" size="28" line-height="50" text="《小程序隐私保护指引》" @click="openPrivacyContract"></u-text>
</view>
<view class="">
<u-text color="#020b18" size="28" line-height="50" text="当您点击同意并开始使用产品服务时,即表示你已理解并同意该条款内容,该条款将对您产生法律约束力。如您拒绝,将无法更好的体验产品。"></u-text>
</view>
</view>
<view class="row" style="padding:30rpx;">
<view class="col-6" style="padding:15rpx;">
<u-button @click="handleDisagree">拒绝</u-button>
</view>
<view class="col-6" style="padding:15rpx;">
<u-button id="agree-btn" open-type="agreePrivacyAuthorization" color="#45C55E" class="weui-btn agree"
@agreeprivacyauthorization="handleAgreePrivacyAuthorization">同意</u-button>
</view>
</view>
</view>
</uv-popup>
</view>
</view>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import api from '@/utils/functions.js';
import {appletLogin, testLogin, userDetail} from "@/api/user";
export default {
data() {
return {
title: ' 登录',
loading: true,
staticImage: {
bg: imghost + '/BG.png',
newIcon: imghost + '/new-icon.png',
loginLogo: imghost + '/login-logo.png',
},
isTop: false,
fileList1:[],
userinfo:{},
privateStatus:false
}
},
onLoad() {
},
computed: {
api() {
return api
},
},
methods: {
login(){
testLogin({
user_id:1
}).then((res) => {
uni.setStorageSync('token',res.data.token);
userDetail().then((res) => {
uni.setStorageSync('user',res.data);
this.$store.commit('userInfo',res.data);
});
});
},
wxLogin(phoneCode) {
uni.login({
success: ((res) => {
appletLogin(res.code).then(res => {
if(res.code === 200){
uni.setStorageSync('token',res.data.token);
uni.setStorageSync('user',res.data.user);
this.$store.commit('userInfo', res.data.user);
uni.navigateBack({
delta:1,
})
}else{
uni.$u.toast('登录失败');
}
}).catch(err => {
uni.$u.toast('服务器错误');
})
})
});
},
openPrivacyContract() {
uni.openPrivacyContract({});
},
handleAgreePrivacyAuthorization() {
this.$refs.popup.close();
},
openPopup(){
this.$refs.popup.open();
},
handleDisagree(){
this.$refs.popup.close();
}
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
},
mounted() {
uni.getPrivacySetting({
success: res => {
console.log("是否需要授权:", res.needAuthorization, "隐私协议的名称为:", res.privacyContractName)
if (res.needAuthorization) {
this.privateStatus = false;
} else {
this.privateStatus = true;
}
},
fail: () => {
},
complete: () => {},
})
},
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

2
project.config.json

@ -25,5 +25,5 @@
"ignore": [],
"include": []
},
"appid": "wx21022af817b060e9"
"appid": "wx4f93cb087d0e8e6c"
}

1
unpackage/dist/dev/mp-weixin/app.js vendored

@ -16,6 +16,7 @@ if (!Math) {
"./pages/PetDetail/index.js";
"./pages/FeedLog/index.js";
"./pages/OrderPage/index.js";
"./pages/Login/index.js";
}
const _sfc_main = {
onLaunch: function() {

3
unpackage/dist/dev/mp-weixin/app.json vendored

@ -12,7 +12,8 @@
"pages/Draw/index",
"pages/PetDetail/index",
"pages/FeedLog/index",
"pages/OrderPage/index"
"pages/OrderPage/index",
"pages/Login/index"
],
"window": {
"navigationBarTextStyle": "black",

5
unpackage/dist/dev/mp-weixin/pages/ChatDetail/index.js vendored

@ -29,7 +29,10 @@ const _sfc_main = {
},
onLoad() {
},
methods: {},
methods: {
getToken() {
}
},
onPageScroll(res) {
},
created() {

16
unpackage/dist/dev/mp-weixin/pages/Index/components/HomePage/Index.js vendored

@ -2,7 +2,7 @@
const common_vendor = require("../../../../common/vendor.js");
const config_host = require("../../../../config/host.js");
const utils_functions = require("../../../../utils/functions.js");
require("../../../../utils/log.js");
const utils_log = require("../../../../utils/log.js");
require("../../../../utils/qqmap-wx-jssdk.min.js");
const _sfc_main = {
data: {
@ -49,13 +49,12 @@ const _sfc_main = {
user: {
avatar: config_host.imghost + "/static/image/banner.png",
nickname: "清晨的风",
coupons: 221,
coupon_count: 221,
id: 88685
},
isTop: false,
pagePadding: 100,
userInfo: {},
userExtends: {}
userInfo: {}
},
onLoad() {
},
@ -75,9 +74,7 @@ const _sfc_main = {
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;
this.user.coupon_count = this.userInfo.coupon_count;
}
}
},
@ -92,6 +89,9 @@ const _sfc_main = {
this.pagePadding = utils_functions.api.navHeight().navPaddingTop + utils_functions.api.navHeight().navHeight + utils_functions.api.navHeight().headerPadding * 2;
},
mounted() {
this.userInfo = this.$store.state.userInfo;
utils_log.log(this.userInfo);
utils_log.log(this.$store.state);
},
updated() {
},
@ -122,7 +122,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
d: common_vendor.t(_ctx.user.nickname),
e: _ctx.staticImage.dogImage,
f: common_vendor.t(_ctx.user.id),
g: common_vendor.t(_ctx.user.coupons),
g: common_vendor.t(_ctx.user.coupon_count),
h: common_vendor.o(($event) => $options.userCouponsPage()),
i: "url(" + _ctx.staticImage.couponsImage + ")",
j: common_vendor.f(_ctx.staticImage.indexButtonGroup, (item, k0, i0) => {

9
unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.js vendored

@ -98,15 +98,16 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
["button-color"]: "#F7E1C3",
["button-width"]: "255rpx"
}),
g: common_vendor.p({
g: common_vendor.o(($event) => $options.navTo("/pages/ChatDetail/index")),
h: common_vendor.p({
title: "喂养档案",
["font-color"]: "#FFFFFF",
["button-color"]: "#4DC3B8",
["button-width"]: "255rpx"
}),
h: common_vendor.o(($event) => $options.navTo("/pages/FeedLog/index")),
i: "url(" + $data.staticImage.orderCardBackground + ")",
j: "url(" + $data.staticImage.wallpaperBgImage + ")"
i: common_vendor.o(($event) => $options.navTo("/pages/FeedLog/index")),
j: "url(" + $data.staticImage.orderCardBackground + ")",
k: "url(" + $data.staticImage.wallpaperBgImage + ")"
};
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/phpstudy_pro/WEB/pet_uni/pages/Index/components/OrderPage/Index.vue"]]);

2
unpackage/dist/dev/mp-weixin/pages/Index/components/OrderPage/Index.wxml vendored

@ -1 +1 @@
<view class="app-wallpaper" style="{{'background-image:' + j}}"><view class="order-capsule-container row"><view class="order-capsule col-4 active"> 全部 </view><view class="order-capsule col-4"> 待服务 </view><view class="order-capsule col-4"> 已完成 </view></view><view class="order-screen-container row"><view class="order-screen active"> 全部 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{a}}"/></view></view><view class="order-screen"> 明天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{b}}"/></view></view><view class="order-screen"> 后天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{c}}"/></view></view><view class="order-screen-time-container row"><view class="order-screen order-screen-time-title"> 05/06-08-03 </view><view class="order-screen order-screen-time-buttton-container"><view class="order-screen-time-buttton"> 时间 </view></view></view><view class="order-list-container"><view wx:for="{{d}}" wx:for-item="item" class="order-list-item"><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" style="{{'background-image:' + i}}"><view class="order-card-left"><image class="img" src="{{e}}" mode="aspectFill"/></view><view class="order-card-right"><view class="order-card-title">{{item.a}}</view><view class="order-card-tag-container row"><view class="order-card-tag">刷毛</view><view class="order-card-tag">洗澡</view></view><view class="order-card-day"><text class="card-label">上门:</text>{{item.b}}</view><view class="order-card-pay-time"><text class="card-label">下单时间:</text>{{item.c}}</view></view><view class="order-card-bottom col-12 row"><view class="card-button"><mz-button wx:if="{{f}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{f}}"></mz-button></view><view class="card-button" bindtap="{{h}}"><mz-button wx:if="{{g}}" u-i="{{item.e}}" bind:__l="__l" u-p="{{g}}"></mz-button></view></view></view></view></view></view></view></view></view>
<view class="app-wallpaper" style="{{'background-image:' + k}}"><view class="order-capsule-container row"><view class="order-capsule col-4 active"> 全部 </view><view class="order-capsule col-4"> 待服务 </view><view class="order-capsule col-4"> 已完成 </view></view><view class="order-screen-container row"><view class="order-screen active"> 全部 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{a}}"/></view></view><view class="order-screen"> 明天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{b}}"/></view></view><view class="order-screen"> 后天 <view class="order-screen-active"><image mode="widthFix" class="img" src="{{c}}"/></view></view><view class="order-screen-time-container row"><view class="order-screen order-screen-time-title"> 05/06-08-03 </view><view class="order-screen order-screen-time-buttton-container"><view class="order-screen-time-buttton"> 时间 </view></view></view><view class="order-list-container"><view wx:for="{{d}}" wx:for-item="item" class="order-list-item"><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" style="{{'background-image:' + j}}"><view class="order-card-left"><image class="img" src="{{e}}" mode="aspectFill"/></view><view class="order-card-right"><view class="order-card-title">{{item.a}}</view><view class="order-card-tag-container row"><view class="order-card-tag">刷毛</view><view class="order-card-tag">洗澡</view></view><view class="order-card-day"><text class="card-label">上门:</text>{{item.b}}</view><view class="order-card-pay-time"><text class="card-label">下单时间:</text>{{item.c}}</view></view><view class="order-card-bottom col-12 row"><view class="card-button" bindtap="{{g}}"><mz-button wx:if="{{f}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{f}}"></mz-button></view><view class="card-button" bindtap="{{i}}"><mz-button wx:if="{{h}}" u-i="{{item.e}}" bind:__l="__l" u-p="{{h}}"></mz-button></view></view></view></view></view></view></view></view></view>

71
unpackage/dist/dev/mp-weixin/pages/Index/components/UserPage/Index.js vendored

@ -2,8 +2,10 @@
const common_vendor = require("../../../../common/vendor.js");
const config_host = require("../../../../config/host.js");
const utils_functions = require("../../../../utils/functions.js");
require("../../../../utils/log.js");
const api_user = require("../../../../api/user.js");
const utils_log = require("../../../../utils/log.js");
require("../../../../utils/qqmap-wx-jssdk.min.js");
require("../../../../utils/request.js");
const HeaderNav = () => "../../../../components/HeaderNav/Index.js";
const FooterNav = () => "../../../../components/FooterNav/Index.js";
const RightNav = () => "../../../../components/RightNav/Index.js";
@ -52,7 +54,7 @@ const _sfc_main = {
user: {
avatar: config_host.imghost + "/static/image/banner.png",
nickname: "清晨的风",
coupons: 221,
coupon_count: 221,
id: 88685
},
isTop: false,
@ -78,6 +80,12 @@ const _sfc_main = {
this.$store.commit("footCheck", "order");
this.$store.commit("title", "订单");
},
showNumber() {
api_user.userExtends().then((data) => {
utils_log.log(data);
this.userExtends = data.data;
});
},
userCouponsPage() {
common_vendor.wx$1.navigateTo({
url: "/pages/UserCoupons/index"
@ -88,9 +96,7 @@ const _sfc_main = {
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;
this.user.coupon_count = this.userInfo.coupon_count;
}
}
},
@ -101,6 +107,9 @@ const _sfc_main = {
common_vendor.index.$emit("isTop", false);
}
},
mounted() {
this.showNumber();
},
created() {
this.pagePadding = utils_functions.api.navHeight().navPaddingTop + utils_functions.api.navHeight().navHeight + utils_functions.api.navHeight().headerPadding * 2;
},
@ -127,37 +136,41 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
d: common_vendor.o((...args) => $options.userDetail && $options.userDetail(...args)),
e: $data.staticImage.hiImage,
f: common_vendor.t($data.user.nickname),
g: common_vendor.t($data.user.coupons),
g: common_vendor.t($data.user.coupon_count),
h: "url(" + $data.staticImage.couponsImage + ")",
i: common_vendor.o(($event) => $options.userCouponsPage()),
j: common_vendor.t($data.user.id),
k: $data.staticImage.gun1,
l: $data.staticImage.informationTitle,
m: $data.staticImage.information.pet,
n: common_vendor.o(($event) => $options.navTo("/pages/Pet/index")),
o: $data.staticImage.information.info,
p: common_vendor.o(($event) => $options.navTo("/pages/Addr/index")),
q: $data.staticImage.information.feed,
r: $data.staticImage.gun2,
s: $data.staticImage.babyTitle,
t: $data.staticImage.baby.shopCar,
v: $data.staticImage.baby.wait,
w: common_vendor.o(($event) => $options.orderPage()),
x: $data.staticImage.baby.end,
y: common_vendor.o(($event) => $options.orderPage()),
z: $data.staticImage.gun2,
A: $data.staticImage.bigTitle,
B: $data.staticImage.big.wait,
n: common_vendor.t($data.userExtends.pet_count),
o: common_vendor.o(($event) => $options.navTo("/pages/Pet/index")),
p: $data.staticImage.information.info,
q: common_vendor.t($data.userExtends.address_count),
r: common_vendor.o(($event) => $options.navTo("/pages/Addr/index")),
s: $data.staticImage.information.feed,
t: common_vendor.t($data.userExtends.feed_count),
v: $data.staticImage.gun2,
w: $data.staticImage.babyTitle,
x: $data.staticImage.baby.shopCar,
y: common_vendor.t($data.userExtends.order_count),
z: $data.staticImage.baby.wait,
A: common_vendor.o(($event) => $options.orderPage()),
B: $data.staticImage.baby.end,
C: common_vendor.o(($event) => $options.orderPage()),
D: $data.staticImage.big.end,
E: common_vendor.o(($event) => $options.orderPage()),
F: $data.staticImage.gun2,
G: $data.staticImage.moreTitle,
H: $data.staticImage.more.online,
I: $data.staticImage.more.privacy,
J: $data.staticImage.more.feedback,
K: $data.staticImage.more.about,
L: "url(" + $data.staticImage.wallpaperBgImage + ")"
D: $data.staticImage.gun2,
E: $data.staticImage.bigTitle,
F: $data.staticImage.big.wait,
G: common_vendor.o(($event) => $options.orderPage()),
H: $data.staticImage.big.end,
I: common_vendor.o(($event) => $options.orderPage()),
J: $data.staticImage.gun2,
K: $data.staticImage.moreTitle,
L: $data.staticImage.more.online,
M: $data.staticImage.more.privacy,
N: $data.staticImage.more.feedback,
O: $data.staticImage.more.about,
P: "url(" + $data.staticImage.wallpaperBgImage + ")"
};
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/phpstudy_pro/WEB/pet_uni/pages/Index/components/UserPage/Index.vue"]]);

2
unpackage/dist/dev/mp-weixin/pages/Index/components/UserPage/Index.wxml vendored

@ -1 +1 @@
<view class="user-background" style="{{'background-image:' + a}}"></view><view class="user-shadow" style="{{'background-image:' + b}}"></view><view class="app-wallpaper" style="{{'background-image:' + L}}"><view class="user-detail row"><view class="user-detail-avatar-container" bindtap="{{d}}"><image src="{{c}}" mode="aspectFill" class="img"/><view class="user-detail-avatar-border"></view></view><view class="user-detail-info"><view class="user-detail-title-container row"><image mode="widthFix" class="user-detail-img" src="{{e}}"/><view class="user-detail-title">{{f}}</view><view class="user-detail-coupons" style="{{'background-image:' + h}}" bindtap="{{i}}">{{g}}</view><view class="user-detail-id col-12">会员编号:{{j}}</view></view></view></view><view class="user-information .user-button-group-container"><view class="user-button-content"><image class="img gun1" src="{{k}}" mode="heightFix"/><view class="user-title-img"><image class="img" src="{{l}}" mode="heightFix"/></view><view class="user-button-group row"><view class="user-button col-4" bindtap="{{n}}"><image class="img" src="{{m}}" mode="aspectFit"/><view class="user-title">宝贝档案</view><view class="user-desc">2个萌宠</view></view><view class="user-button col-4" bindtap="{{p}}"><image class="img" src="{{o}}" mode="aspectFit"/><view class="user-title">信息档案</view><view class="user-desc">2个地址</view></view><view class="user-button col-4"><image class="img" src="{{q}}" mode="aspectFit"/><view class="user-title">喂养档案</view><view class="user-desc">2个档案</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view><view class="user-baby-log .user-button-group-container"><view class="user-button-content"><image class="img gun2" src="{{r}}" mode="heightFix"/><view class="user-title-img row"><image class="img" src="{{s}}" mode="heightFix"/><view class="shop-car-container"><image class="img shop-car" src="{{t}}" mode="heightFix"/><view class="shop-car-number">2</view></view></view><view class="user-button-group row"><view class="user-button col-6" bindtap="{{w}}"><image class="img" src="{{v}}" mode="aspectFit"/><view class="user-title">待服务</view></view><view class="user-button col-6" bindtap="{{y}}"><image class="img" src="{{x}}" mode="aspectFit"/><view class="user-title">已完成</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view><view class="user-big-service .user-button-group-container"><view class="user-button-content"><image class="img gun2" src="{{z}}" mode="heightFix"/><view class="user-title-img"><image class="img" src="{{A}}" mode="heightFix"/></view><view class="user-button-group row"><view class="user-button col-6" bindtap="{{C}}"><image class="img" src="{{B}}" mode="aspectFit"/><view class="user-title">待服务</view></view><view class="user-button col-6" bindtap="{{E}}"><image class="img" src="{{D}}" mode="aspectFit"/><view class="user-title">已完成</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view><view class="user-more .user-button-group-container"><view class="user-button-content"><image class="img gun2" src="{{F}}" mode="heightFix"/><view class="user-title-img"><image class="img" src="{{G}}" mode="heightFix"/></view><view class="user-button-group row"><view class="user-button col-3"><image class="img" src="{{H}}" mode="aspectFit"/><view class="user-title">在线沟通</view></view><view class="user-button col-3"><image class="img" src="{{I}}" mode="aspectFit"/><view class="user-title">隐私协议</view></view><view class="user-button col-3"><image class="img" src="{{J}}" mode="aspectFit"/><view class="user-title">意见反馈</view></view><view class="user-button col-3"><image class="img" src="{{K}}" mode="aspectFit"/><view class="user-title">关于我们</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view></view>
<view class="user-background" style="{{'background-image:' + a}}"></view><view class="user-shadow" style="{{'background-image:' + b}}"></view><view class="app-wallpaper" style="{{'background-image:' + P}}"><view class="user-detail row"><view class="user-detail-avatar-container" bindtap="{{d}}"><image src="{{c}}" mode="aspectFill" class="img"/><view class="user-detail-avatar-border"></view></view><view class="user-detail-info"><view class="user-detail-title-container row"><image mode="widthFix" class="user-detail-img" src="{{e}}"/><view class="user-detail-title">{{f}}</view><view class="user-detail-coupons" style="{{'background-image:' + h}}" bindtap="{{i}}">{{g}}</view><view class="user-detail-id col-12">会员编号:{{j}}</view></view></view></view><view class="user-information .user-button-group-container"><view class="user-button-content"><image class="img gun1" src="{{k}}" mode="heightFix"/><view class="user-title-img"><image class="img" src="{{l}}" mode="heightFix"/></view><view class="user-button-group row"><view class="user-button col-4" bindtap="{{o}}"><image class="img" src="{{m}}" mode="aspectFit"/><view class="user-title">宝贝档案</view><view class="user-desc">{{n}}个萌宠</view></view><view class="user-button col-4" bindtap="{{r}}"><image class="img" src="{{p}}" mode="aspectFit"/><view class="user-title">信息档案</view><view class="user-desc">{{q}}个地址</view></view><view class="user-button col-4"><image class="img" src="{{s}}" mode="aspectFit"/><view class="user-title">喂养档案</view><view class="user-desc">{{t}}个档案</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view><view class="user-baby-log .user-button-group-container"><view class="user-button-content"><image class="img gun2" src="{{v}}" mode="heightFix"/><view class="user-title-img row"><image class="img" src="{{w}}" mode="heightFix"/><view class="shop-car-container"><image class="img shop-car" src="{{x}}" mode="heightFix"/><view class="shop-car-number">{{y}}</view></view></view><view class="user-button-group row"><view class="user-button col-6" bindtap="{{A}}"><image class="img" src="{{z}}" mode="aspectFit"/><view class="user-title">待服务</view></view><view class="user-button col-6" bindtap="{{C}}"><image class="img" src="{{B}}" mode="aspectFit"/><view class="user-title">已完成</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view><view class="user-big-service .user-button-group-container"><view class="user-button-content"><image class="img gun2" src="{{D}}" mode="heightFix"/><view class="user-title-img"><image class="img" src="{{E}}" mode="heightFix"/></view><view class="user-button-group row"><view class="user-button col-6" bindtap="{{G}}"><image class="img" src="{{F}}" mode="aspectFit"/><view class="user-title">待服务</view></view><view class="user-button col-6" bindtap="{{I}}"><image class="img" src="{{H}}" mode="aspectFit"/><view class="user-title">已完成</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view><view class="user-more .user-button-group-container"><view class="user-button-content"><image class="img gun2" src="{{J}}" mode="heightFix"/><view class="user-title-img"><image class="img" src="{{K}}" mode="heightFix"/></view><view class="user-button-group row"><view class="user-button col-3"><image class="img" src="{{L}}" mode="aspectFit"/><view class="user-title">在线沟通</view></view><view class="user-button col-3"><image class="img" src="{{M}}" mode="aspectFit"/><view class="user-title">隐私协议</view></view><view class="user-button col-3"><image class="img" src="{{N}}" mode="aspectFit"/><view class="user-title">意见反馈</view></view><view class="user-button col-3"><image class="img" src="{{O}}" mode="aspectFit"/><view class="user-title">关于我们</view></view></view></view><view class="user-button-group-background"><view class="user-button-group-container-background-color"></view><view class="user-button-group-container-background-border"></view></view></view></view>

32
unpackage/dist/dev/mp-weixin/pages/Index/index.js vendored

@ -1,7 +1,5 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const api_user = require("../../api/user.js");
require("../../utils/request.js");
require("../../utils/functions.js");
require("../../utils/log.js");
require("../../utils/qqmap-wx-jssdk.min.js");
@ -35,26 +33,10 @@ const _sfc_main = {
},
methods: {
userLogin() {
api_user.testLogin({
user_id: 1
}).then((res) => {
console.log(res.data);
common_vendor.index.setStorageSync("token", res.data);
this.show = false;
this.getUserDetail();
});
},
getUserDetail() {
api_user.userDetail().then((res) => {
common_vendor.index.setStorageSync("user", res.data);
this.$store.commit("userInfo", res.data);
});
},
getUserExtend() {
api_user.userExtends().then((res) => {
common_vendor.index.setStorageSync("user-extends", res.data);
this.$store.commit("userExtends", res.data);
common_vendor.index.navigateTo({
url: "/pages/Login/index"
});
this.show = false;
}
// store.
},
@ -70,17 +52,11 @@ const _sfc_main = {
mounted() {
this.title = this.$store.state.title;
let token = common_vendor.index.getStorageSync("token");
let user = common_vendor.index.getStorageSync("user");
let userExtends = common_vendor.index.getStorageSync("user-extends");
if (!token) {
this.show = true;
} else if (!user) {
this.getUserDetail();
} else if (!userExtends) {
this.getUserExtend();
} else {
let user = common_vendor.index.getStorageSync("user");
this.$store.commit("userInfo", user);
this.$store.commit("userExtends", userExtends);
}
},
watch: {

2
unpackage/dist/dev/mp-weixin/project.config.json vendored

@ -25,5 +25,5 @@
"ignore": [],
"include": []
},
"appid": "wx21022af817b060e9"
"appid": "wx4f93cb087d0e8e6c"
}

13
unpackage/dist/dev/mp-weixin/project.private.config.json vendored

@ -4,18 +4,5 @@
"setting": {
"compileHotReLoad": true,
"urlCheck": false
},
"condition": {
"miniprogram": {
"list": [
{
"name": "",
"pathName": "pages/AddrDetail/index",
"query": "id=2",
"launchMode": "default",
"scene": null
}
]
}
}
}

2
utils/request.js

@ -10,7 +10,7 @@ const service = (params) => {
dataType: "json",
header: {
"content-type": "application/json;charset=utf-8",
"Authorization":"Bearer "+ token.token
"Authorization":"Bearer "+ token
}
}).then(res => {
if (res.statusCode === 200) {

Loading…
Cancel
Save