Merge pull request '合并代码' (#3) from zuodanni_branch into master

master
popix497f 1 year ago
commit 5b1ffb52df

@ -1,66 +0,0 @@
// @pages/setting/setting.js
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
}
})

@ -1,3 +0,0 @@
{
"usingComponents": {}
}

@ -1,2 +0,0 @@
<!--@pages/setting/setting.wxml-->
<text>@pages/setting/setting.wxml</text>

@ -1 +0,0 @@
/* @pages/setting/setting.wxss */

@ -11,7 +11,8 @@
"pages/recommend/recommend",
"pages/recommend/rec1",
"pages/recommend/rec2",
"pages/recommend/rec3"
"pages/recommend/rec3",
"pages/match/photo"
],
"window": {
"backgroundTextStyle": "light",
@ -21,16 +22,33 @@
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"@list": [
"tabBar": {
"list": [
{
"pagePath": "pages/aa/aa",
"text": "aa"
"pagePath": "pages/main/main",
"text": "首页",
"iconPath": "pages/images/home.png",
"selectedIconPath": "pages/images/home_selected.png",
"color": ""
},
{
"pagePath": "pages/index/index",
"text": "我的",
"@iconPath": "./pages/images/me.png",
"@selectedIconPath": "./pages/images/me_select.png"
"pagePath": "pages/match/match",
"text": "妆容",
"iconPath": "pages/images/match.png",
"selectedIconPath": "pages/images/match_selected.png"
},
{
"pagePath": "pages/history/history",
"text": "历史",
"iconPath": "pages/images/history.png",
"selectedIconPath": "pages/images/history_selected.png"
},
{
"pagePath": "pages/recommend/recommend",
"text": "教程",
"iconPath": "pages/images/learn.png",
"selectedIconPath": "pages/images/learn_selected.png"
}
]
}
}

@ -75,22 +75,22 @@ Page({
},
bindmaiViewTap() {
wx.navigateTo({
wx.redirectTo({
url: '../main/main'
})
},
bindhisViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../history/history'
})
},
bindrecViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../recommend/recommend'
})
},
bindmacViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../match/match'
})
},

@ -3,7 +3,7 @@
<view class="his_main">
</view>
<view class="his_navi">
<!-- <view class="his_navi">
<view>
<text bindtap="bindmaiViewTap" mode="cover">首页</text>
</view>
@ -16,6 +16,6 @@
<view>
<text bindtap="bindrecViewTap" mode="cover">推荐</text>
</view>
</view>
</view> -->
</view>
<text>pages/history/history.wxml</text>

@ -4,12 +4,13 @@ const app = getApp()
Page({
data: {
motto: 'Hello World',
motto: '欢迎进入',
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('button.open-type.getUserInfo'),
canIUseGetUserProfile: false,
canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName') // 如需尝试获取用户信息可改为false
canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName'), // 如需尝试获取用户信息可改为false
isSelected:0
},
// 事件处理函数
bindViewTap() {
@ -18,22 +19,22 @@ Page({
})
},
bindmaiViewTap() {
wx.navigateTo({
wx.switchTab({
url: '../main/main'
})
},
bindhisViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../history/history'
})
},
bindrecViewTap(){
wx.navigateTo({
wx.switchTab({
url: '../recommend/recommend'
})
},
bindmacViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../match/match'
})
},
@ -65,28 +66,29 @@ Page({
hasUserInfo: true
})
},
handleImageTap: function(e) {
const index = e.currentTarget.dataset.index; // 获取当前点击的图片的位置
const isSelected = this.data['isSelected' + index]; // 获取当前点击的图片的选中状态
let newData = {}; // 定义一个新的数据对象
if (isSelected) {
newData['isSelected' + index] = false; // 如果当前图片已经被选中,就将它的选中状态设置为 false
} else {
for (let i = 1; i <= 3; i++) {
if (i !== index && this.data['isSelected' + i]) { // 如果有其他图片被选中,则将它的选中状态还原
newData['isSelected' + i] = false;
wx.navigateTo({
url: '../match/match'
})
}
}
newData['isSelected' + index] = true; // 将当前点击的图片的选中状态设置为 true
}
this.setData(newData); // 使用 setData 方法更新页面数据
// wx.navigateTo({
// url: '../match/match'
// })
},
// handleImageTap: function(e) {
// const index = e.currentTarget.dataset.index; // 获取当前点击的图片的位置
// const isSelected = this.data['isSelected' + index]; // 获取当前点击的图片的选中状态
// let newData = {}; // 定义一个新的数据对象
// if (isSelected) {
// newData['isSelected' + index] = false; // 如果当前图片已经被选中,就将它的选中状态设置为 false
// } else {
// for (let i = 1; i <= 3; i++) {
// if (i !== index && this.data['isSelected' + i]) { // 如果有其他图片被选中,则将它的选中状态还原
// newData['isSelected' + i] = false;
// // wx.navigateTo({
// // url: '../match/match'
// // })
// }
// }
// newData['isSelected' + index] = true; // 将当前点击的图片的选中状态设置为 true
// }
// this.setData(newData); // 使用 setData 方法更新页面数据
// // wx.navigateTo({
// // url: '../match/match'
// // })
// },
onLoad(options) {
@ -103,96 +105,3 @@ Page({
})
}
})
//也可以设置在onShow()
// Page({
// /**
// * 页面的初始数据
// */
// data: {
// avatarUrl:"",
// name: "",
// m:"0",
// mySet:[
// {
// 'name':"我的预约",
// 'img':"../images/预约.png"
// },
// {
// 'name':"我的收藏",
// 'img':"../images/收藏.png"
// },
// {
// 'name':"个人设置",
// 'img':"../images/设置.png"
// },
// ]
// },
// /**
// * 生命周期函数--监听页面加载
// */
// onLoad: function (options) {
// },
// /**
// * 用户信息获取权限
// */
// getUserProfile: function () {
// if(this.data.m==0){
// wx.getUserProfile({
// desc: '信息仅作为个人展示',
// success: (res) => {
// console.log('获取成功', res)
// wx.setStorage({
// data: res.userInfo,
// key: 'userInfo',
// });
// this.setData({
// m:1
// })
// this.onShow();
// }})
// }else{
// wx.showToast({
// title: '您已登录啦',
// })
// }
// },
// /**
// * 点击我的预约等板块后进行页面跳转
// */
// onMySet:function(e){
// if(e.currentTarget.dataset.type=="个人设置"){
// wx.navigateTo({
// url: '/pages/index/setting/setting',
// })
// }
// else if(e.currentTarget.dataset.type=="我的预约"){
// wx.navigateTo({
// url: '/pages/index/want/want',
// })
// }
// else (e.currentTarget.dataset.type=="我的收藏")
// {
// wx.navigateTo({
// url: '/pages/index/like/like',
// })
// }
// },
// /**
// * 生命周期函数--监听页面显示
// */
// onShow: function () {
// var useInfo = wx.getStorageSync('userInfo')
// var that = this;
// that.setData({
// avatarUrl:useInfo.avatarUrl,
// name:useInfo.nickName,
// })
// }
// })

@ -18,11 +18,11 @@
</block>
</view>
<view class="usermotto">
<text class="user-motto">{{motto}}</text>
<text class="user-motto" bindtap="bindmaiViewTap">{{motto}}</text>
</view>
<!-- 下菜单 -->
<view class="menu">
<!-- <view class="menu">
<view class="menu-item" bindtap="goindex">
<image src="{{isSelected1 ? selectedImageUrl1 : imageUrl1}}" bindtap="handleImageTap" data-index="1" data-selected="{{isSelected1}}" />
@ -41,42 +41,6 @@
<image src="{{isSelected4 ? selectedImageUrl4 : imageUrl4}}" bindtap="handleImageTap" data-index="4" data-selected="{{isSelected4}}" />
<text>推荐</text>
</view>
</view>
<view class="navi">
<view>
<navigator url="../main/main"><text>首页</text></navigator>
</view>
<view>
<text bindtap="bindmacViewTap" mode="cover">匹配</text>
</view>
<view>
<text bindtap="bindhisViewTap" mode="cover">历史</text>
</view>
<view>
<text bindtap="bindrecViewTap" mode="cover">推荐</text>
</view>
</view>
</view>
<!-- 用户信息:头像,呢称 /登录 -->
<!-- <view class="xx">
<view><image src="{{avatarUrl}}" class="tx"></image></view>
<view class="mz" >{{name}}</view>
<view bindtap="getUserProfile" class="underline">登录</view>
</view> -->
<!-- 分割线 -->
<!-- <view class="hr"></view> -->
<!-- 循环数组 mySet -->
<!-- <view wx:for="{{mySet}}" bindtap="onMySet" data-type="{{item.name}}"> -->
<!-- 图标和循环myset中的文字 -->
<!-- <view class="vv_1">
<image class="image1" src="{{item.img}}"/>
{{item.name}}
<view class="icon">></view>
</view>
</view> -->
<!-- 分割线 -->
<!-- <view class="hr2"></view> -->

@ -19,119 +19,10 @@
}
/* pages/index/index.wxss */
.mz{
font-size:50rpx;
line-height: 200rpx;
margin-left: 20rpx;
color: #FFFFFF;
}
.hr{
height:16rpx;
background-color:rgb(202, 202, 202);
}
.vv_1{
line-height: 100rpx;
background-color: #ffffff;
display: flex;
}
.vv{
background-color: #ebebeb;
height: 950rpx;
}
.xx{
display: flex;
flex-direction:row;
background-color:#32667e;
line-height: 400rpx;
}
.tx{
width: 150rpx;
height: 150rpx;
border-radius: 40%;
margin-left:50rpx ;
}
.underline{
text-decoration:underline;
font-size: 30rpx;
color: white;
text-align: center;
line-height: 200rpx;
}
.hr2{
height: 2rpx;
background-color: rgba(202, 202, 202, 0.856);
}
.icon{
margin-left:470rpx;
color: rgba(202, 202, 202) ;
}
.image1{
padding-top:26rpx;
padding-right:20rpx;
padding-left: 30rpx;
width: 70rpx;
height: 50rpx;
}
.menu{
width: 100%;
height: 140rpx;
background-color: #e0a981;
background-color: #ddcfc3;
border-top-left-radius: 70rpx;
border-top-right-radius: 70rpx;
box-shadow: 0px -2px 10px 4px rgba(0, 0, 0,0.05);
@ -153,8 +44,16 @@
.menu-item image{
width: 50rpx;
height: 50rpx;
width: 90rpx;
height: 90rpx;
margin-bottom: 10rpx;
}
/* .navi{
display: flex;
bottom: 0;
}
.flex-wrp{
flex-direction: row;
} */

@ -3,4 +3,5 @@
<block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log">
<text class="log-item">{{index + 1}}. {{log.date}}</text>
</block>
<text>{{index}}</text>
</view>

@ -5,25 +5,40 @@ Page({
* 页面的初始数据
*/
data: {
nowData:"",
rm4:"../images/recom_1_1.jpg"
},
date:function(){
var now=new Date();
var Y=now.getFullYear();
var M=now.getMonth()+1;
var D=now.getDate();
var nowDate= Date(Y+"//"+M+"//"+D+"//");
console.log(nowDate);
return nowDate;
},
bindrecViewTap(){
wx.redirectTo({
url:'../recommend/rec1'
})
},
bindmaiViewTap() {
wx.navigateTo({
wx.redirectTo({
url: '../main/main'
})
},
bindhisViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../history/history'
})
},
bindrecViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../recommend/recommend'
})
},
bindmacViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../match/match'
})
},
@ -31,7 +46,9 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad(options) {
this.setData({
nowData:this.date()
})
},
/**
@ -45,7 +62,7 @@ Page({
* 生命周期函数--监听页面显示
*/
onShow() {
this.date();
},
/**

@ -1,21 +1,14 @@
<!--pages/main/main.wxml-->
<view class="container">
<view class="main">
<text>主界面</text>
<view class="home">
<!-- <wxs module="now" ></wxs> -->
<view>{{filter.day(1621409888000)}}</view>
<text>{{date()}}</text>
<text>选择一个妆容开始美好的一天吧!</text>
</view>
<view class="navi">
<view>
<text bindtap="bindmaiViewTap" mode="cover">首页</text>
<view class="mainrec">
<image bindtap="bindrecViewTap" src="{{rm4}} "/>
<image src="" style="height:100%"mode="widthFix"></image>
</view>
<view>
<text bindtap="bindmacViewTap" mode="cover">匹配</text>
</view>
<view>
<text bindtap="bindhisViewTap" mode="cover">历史</text>
</view>
<view>
<text bindtap="bindrecViewTap" mode="cover">推荐</text>
</view>
</view>
</view>
<text>pages/main/main.wxml</text>

@ -1 +1,4 @@
/* pages/main/main.wxss */
.home{
}

@ -5,9 +5,33 @@ Page({
* 页面的初始数据
*/
data: {
phopath:"../match/photo"
},
bindphoViewTap(){
wx.redirecTo({
url:'../match/photo'
})
},
bindmaiViewTap() {
wx.redirectTo({
url: '../main/main'
})
},
bindhisViewTap(){
wx.redirectTo({
url: '../history/history'
})
},
bindrecViewTap(){
wx.redirectTo({
url: '../recommend/recommend'
})
},
bindmacViewTap(){
wx.redirectTo({
url: '../match/match'
})
},
/**
* 生命周期函数--监听页面加载
*/

@ -1,21 +1,24 @@
<!--pages/match/match.wxml-->
<view class="container">
<view class="match_main">
<navigator url="../match/photo">
<view>点击开始拍照</view>
</navigator>
<!-- <text bindtap:"bindphoViewTap"/> -->
</view>
<view class="navi">
<!-- <view class="navi">
<view>
<text bindtap="bindmaiViewTap" mode="cover">首页</text>
<text bindtap="bindmaiViewTap" >首页</text>
</view>
<view>
<text bindtap="bindmacViewTap" mode="cover">匹配</text>
<text bindtap="bindmacViewTap" >匹配</text>
</view>
<view>
<text bindtap="bindhisViewTap" mode="cover">历史</text>
<text bindtap="bindhisViewTap" >历史</text>
</view>
<view>
<text bindtap="bindrecViewTap" mode="cover">推荐</text>
</view>
<text bindtap="bindrecViewTap" >推荐</text>
</view>
</view> -->
</view>
<text>pages/match/match.wxml</text>

@ -35,22 +35,22 @@ Page({
})
},
bindmaiViewTap() {
wx.navigateTo({
wx.redirectTo({
url: '../main/main'
})
},
bindhisViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../history/history'
})
},
bindrecViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../recommend/recommend'
})
},
bindmacViewTap(){
wx.navigateTo({
wx.redirectTo({
url: '../match/match'
})
},

@ -21,18 +21,4 @@
<image src="" style="height:100%"mode="widthFix"></image>
</view>
</view>
<view class="rec_navi">
<view>
<text bindtap="bindmaiViewTap" mode="cover">首页</text>
</view>
<view>
<text bindtap="bindmacViewTap" mode="cover">匹配</text>
</view>
<view>
<text bindtap="bindhisViewTap" mode="cover">历史</text>
</view>
<view>
<text bindtap="bindrecViewTap" mode="cover">推荐</text>
</view>
</view>
</view>
Loading…
Cancel
Save