添加字体换行 #319

Merged
theluyuan merged 2 commits from xbx into master 2020-09-01 09:33:33 +00:00
Showing only changes of commit e54282b839 - Show all commits

View File

@ -552,6 +552,23 @@ export default {
}, },
xuanzhong(i){ xuanzhong(i){
let that = this let that = this
const token = uni.getStorageSync('token');
if(this.$store.state.hasLogin){
uni.request({
url:"https://mall.dmygkeji.com/api/Specialci/viewingOPproducts",
data:{
good_id:that.list[i].goods_id,
exple_id:that.info.user_id
},
method:"POST",
header:{
"Authorization" : 'Bearer' + " " + token
},
success(a){
console.log(a)
}
})
}
uni.navigateTo({ uni.navigateTo({
url: `/pageB/sdetails/index?id=${that.list[i].goods_id}&type=1` url: `/pageB/sdetails/index?id=${that.list[i].goods_id}&type=1`
}); });