Merge pull request 'gdpao' (#98) from gyh into master

Reviewed-on: http://git.luyuan.tk/luyuan/deming/pulls/98
This commit is contained in:
gyh 2020-08-03 14:31:20 +08:00
commit c118eced7f
6 changed files with 148 additions and 74 deletions

View File

@ -47,6 +47,9 @@ const store = new Vuex.Store({
uni.removeStorage({ uni.removeStorage({
key: "token" key: "token"
}) })
uni.removeStorage({
key: "user_info"
})
}, },
setOrderType(state, type) { setOrderType(state, type) {
state.orderType = type; state.orderType = type;

View File

@ -180,6 +180,9 @@
return false return false
} else { } else {
me.loginIn(res.data.token); // me.loginIn(res.data.token); //
//
uni.setStorageSync('user_info',res.data);
if (res.data.member.has_labels) { if (res.data.member.has_labels) {
uni.switchTab({ uni.switchTab({
url: '/pages/index/index' url: '/pages/index/index'
@ -189,14 +192,6 @@
url: '/pageA/topick/topick' url: '/pageA/topick/topick'
}) })
} }
//
uni.setStorageSync({
key: 'user_info',
data: res.data,
success: function() {
console.log('success');
}
});
} }
// token // token

View File

@ -98,7 +98,7 @@ export default {
this.is_cart = newValue; this.is_cart = newValue;
}, },
comment(newValue,old) { comment(newValue,old) {
console.log(newValue,old); // console.log(newValue,old);
this.is_content = newValue; this.is_content = newValue;
}, },
deep: true deep: true

View File

@ -22,21 +22,41 @@
</view> </view>
</view> </view>
<!-- 用户操作 --> <!-- 用户操作 -->
<userinfo class="userinfo" :list="list" :cart="cart_type" :comment="is_comment" @openCart="openCart"></userinfo> <userinfo class="userinfo" :list="list" :cart="cart_type" :comment="is_comment" @openCart="openPopup"></userinfo>
<!-- 评论 --> <!-- 评论 -->
<u-popup v-model="is_comment" class="pl" mode="bottom" border-radius="10" height="700rpx"> <u-popup v-model="is_comment" class="pl" mode="bottom" border-radius="10" height="700rpx">
<view class="top"> <view class="top">
<text>评论</text> <text>评论</text>
<u-icon name="arrow-down" color="#333" size="28" @click="close"></u-icon> <u-icon name="arrow-down" color="#333" size="28" @click="is_comment=false"></u-icon>
</view> </view>
<scroll-view class="scroll-box" scroll-y="true" > <scroll-view class="scroll-box" scroll-y="true" >
<view></view> <block v-for="(item,index) in commentList" :key="index" v-if="commentList.length">
<view class="box">
<image :src="item.member_avatar" mode=""></image>
<view class="info">
<text>{{ item.member_nickname }}</text>
<text class="time">{{ item.create_time }}</text>
</view>
<text class="reply" @click="openKeyInput(item)">回复</text>
</view>
<view class="content">
{{ item.content }}
</view>
</block>
<view class="no-data" v-else>111</view>
</scroll-view> </scroll-view>
<view class="editing"> <view class="editing" @click="openKeyInput()">
<input type="text" value="" /> <input type="text" value="" :placeholder="edit_text" disabled="disabled" />
<text>发送</text> <text>发送</text>
</view> </view>
</u-popup> </u-popup>
<!-- 评论box -->
<u-popup v-model="is_edit" mode="bottom" border-radius="10" height="100rpx">
<view class="edit-box">
<input type="text" :placeholder="edit_text" :focus="is_focus" @focus="focus" v-model="send_value">
<text @click="sendComment">发送</text>
</view>
</u-popup>
<!-- 购物车 --> <!-- 购物车 -->
<u-popup v-if="cart_len > 1" class="cart" v-model="cart_type" mode="bottom" length="782" border-radius="20"> <u-popup v-if="cart_len > 1" class="cart" v-model="cart_type" mode="bottom" length="782" border-radius="20">
<view class="top"> <view class="top">
@ -95,6 +115,7 @@
.item{ .item{
display: flex; display: flex;
align-items: center; align-items: center;
width: 50%;
padding: 8rpx 16rpx; padding: 8rpx 16rpx;
font-size: 24rpx; font-size: 24rpx;
color: #fff; color: #fff;
@ -147,6 +168,7 @@
} }
.pl { .pl {
.top { .top {
z-index: 1000;
position: fixed; position: fixed;
top: 0; top: 0;
width: 100%; width: 100%;
@ -162,8 +184,45 @@
} }
} }
.scroll-box { .scroll-box {
margin: 88rpx 0 100rpx 0; z-index: 99;
margin: 88rpx 0 150rpx 0;
height: 100%; height: 100%;
.box {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20rpx;
& > image {
width: 60rpx;
height: 60rpx;
border-radius: 50%;
margin-right: 10rpx;
}
.info {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 60rpx;
font-size: 26rpx;
color: #333;
.time {
font-size: 22rpx;
color: #999;
}
}
.reply {
font-size: 26rpx;
color: #333;
}
}
.content {
padding: 0 20rpx 10rpx 90rpx;
border-bottom: 1px solid #ececec;
}
}
.no-data {
margin-top: 100rpx;
} }
.editing { .editing {
position: fixed; position: fixed;
@ -172,18 +231,30 @@
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
width: 100%; width: 100%;
height: 90rpx; height: 88rpx;
padding: 0 30rpx; padding: 0 30rpx;
background-color: #ECECEC; border-top: 1px solid #ececec;
background-color: #fff;
& > input { & > input {
width: 80%; width: 80%;
height: 60rpx; height: 50rpx;
padding: 0 20rpx; padding: 0 20rpx;
border-radius: 30rpx; border-radius: 20rpx;
background-color: #fff; background-color: #fff;
} }
} }
} }
//
.edit-box {
display: flex;
align-items: center;
height: 90rpx;
& > input {
width: 80%;
padding: 4rpx 20rpx;
border-radius: 20rpx;
}
}
.cart { .cart {
.top{ .top{
z-index: 1000; z-index: 1000;
@ -293,15 +364,20 @@ export default {
return { return {
list:{}, list:{},
swiper_id: "", swiper_id: "",
cart_type: false, cart_type: false, //
is_comment: false, is_comment: false, //
is_focus: false, //
is_edit: false, //
send_value: "", //
cartList: [], cartList: [],
cart_len: 0, cart_len: 0,
edit_text: "有爱评论,说点好听的 ~",
commentList: [], //
} }
}, },
onLoad(o){ onLoad(option){
this.id = o.id; this.article_id = option.id;
this.articleInfo(this.id); this.articleInfo(this.article_id);
}, },
methods:{ methods:{
// //
@ -317,17 +393,47 @@ export default {
this.swiper_id = e.detail.current; // swiper id this.swiper_id = e.detail.current; // swiper id
}, },
// //
openCart(data) { openPopup(data) {
console.log(data);
this.cart_type = data.cart;
this.is_comment = data.comment;
},
hideCart(data) {
// console.log(data); // console.log(data);
this.cart_type = data.cart; this.cart_type = data.cart;
this.is_comment = data.comment;
if (this.is_comment) {
this.getComment(this.article_id,0);
}
}, },
close() { //
this.is_comment = false; getComment(id,page) {
this.$u.post("article/articleCommentList",{
article_id: id,
page: page,
}).then(res => {
console.log(res);
if (res.errCode == 0) {
this.commentList = res.data;
}
})
},
//
openKeyInput(data) {
console.log(data);
this.is_edit = true;
this.is_focus = true;
},
//
sendComment(data) {
this.$u.post("article/articleAddComment",{
article_id: this.article_id,
content: this.send_value,
pid: data.id,
reply_id: data.member_id,
}).then(res => {
console.log(res);
if (res.errCode == 0) {
this.is_edit = false;
} else {
this.$u.toast(res.message);
}
})
}, },
// //
viewImage(e) { viewImage(e) {
@ -351,6 +457,11 @@ export default {
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 1
}) })
},
focus() {
setTimeout(function(){
uni.showSoftKeybord;
}, 200)
} }
}, },
} }

View File

@ -109,16 +109,7 @@
"navigationBarTitleText": "商品详情", "navigationBarTitleText": "商品详情",
"app-plus":{ "app-plus":{
"titleNView":{ "titleNView":{
"backgroundColor":"#ffffff", "backgroundColor":"#ffffff"
"buttons": [
{
"type":"none",
"text":"\ue636",
"float":"right",
"fontSize":"18",
"fontSrc": "/static/fonts/cart.ttf"
}
]
} }
} }
} }
@ -140,16 +131,7 @@
"navigationBarTitleText": "商品评价", "navigationBarTitleText": "商品评价",
"app-plus":{ "app-plus":{
"titleNView":{ "titleNView":{
"backgroundColor":"#ffffff", "backgroundColor":"#ffffff"
"buttons": [
{
"type":"none",
"text":"\ue636",
"float":"right",
"fontSize":"18",
"fontSrc": "/static/fonts/cart.ttf"
}
]
} }
} }
} }
@ -214,8 +196,10 @@
"path": "photo/index", "path": "photo/index",
"style": { "style": {
"navigationBarTitleText": "", "navigationBarTitleText": "",
"navigationStyle": "custom" "navigationStyle": "custom",
"app-plus": {
"softinputMode": "adjustResize"
}
} }
} }
] ]
@ -253,7 +237,6 @@
{ {
"path": "cart/index", "path": "cart/index",
"style": { "style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "购物车", "navigationBarTitleText": "购物车",
"app-plus": { "app-plus": {
"titleSize": "36px", "titleSize": "36px",
@ -621,7 +604,6 @@
{ {
"path": "tool/Manicure", "path": "tool/Manicure",
"style": { "style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "美甲", "navigationBarTitleText": "美甲",
"app-plus": { "app-plus": {
"titleSize": "36px", "titleSize": "36px",
@ -658,19 +640,6 @@
} }
} }
}, },
{
"path": "tool/washComment",
"style": {
"navigationBarTitleText": "送洗评价",
"app-plus": {
"titleSize": "36px",
"titleNView": {
"titleColor": "#333333",
"backgroundColor": "#FFFFFF"
}
}
}
},
{ {
"path": "tool/WashOrder", "path": "tool/WashOrder",
"style": { "style": {
@ -863,7 +832,6 @@
{ {
"path": "order/Index", "path": "order/Index",
"style": { "style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "我的订单", "navigationBarTitleText": "我的订单",
"app-plus": { "app-plus": {
"titleSize": "36px", "titleSize": "36px",
@ -877,7 +845,6 @@
{ {
"path": "order/Details", "path": "order/Details",
"style": { "style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "订单详情", "navigationBarTitleText": "订单详情",
"app-plus": { "app-plus": {
"titleSize": "36px", "titleSize": "36px",
@ -937,7 +904,6 @@
{ {
"path": "pages/index/index", "path": "pages/index/index",
"style": { "style": {
"enablePullDownRefresh": true,
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },
@ -961,7 +927,6 @@
{ {
"path": "pages/mine/index", "path": "pages/mine/index",
"style": { "style": {
"enablePullDownRefresh": true,
"navigationBarTitleText": "我的", "navigationBarTitleText": "我的",
"app-plus": { "app-plus": {
"titleSize": "36px", "titleSize": "36px",

View File

@ -2,7 +2,7 @@
<view> <view>
<view class="status_bar"></view> <view class="status_bar"></view>
<view class="index"> <view class="index">
<navigator url="/pageB/photo/index?id=28">qqq</navigator> <navigator url="/pageB/photo/index?id=28">bbb</navigator>
<view class="top"> <view class="top">
<view class="sosuo"></view> <view class="sosuo"></view>
<view class="tabs"> <view class="tabs">