优化uniapp端删帖交互
This commit is contained in:
parent
591e9680ff
commit
7a81f63f95
@ -239,17 +239,29 @@
|
||||
},
|
||||
methods: {
|
||||
deletePost(){
|
||||
this.$H
|
||||
.post('post/deleteMyPost', {
|
||||
id: this.postId
|
||||
})
|
||||
.then(res => {
|
||||
if(res.code==0){
|
||||
uni.switchTab({
|
||||
url:"/pages/index/index"
|
||||
})
|
||||
var that = this;
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '确定删除该帖子吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
that.$H
|
||||
.post('post/deleteMyPost', {
|
||||
id: that.postId
|
||||
})
|
||||
.then(res => {
|
||||
if(res.code==0){
|
||||
uni.switchTab({
|
||||
url:"/pages/index/index"
|
||||
})
|
||||
}
|
||||
});
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
},
|
||||
messageRead(mid) {
|
||||
this.$H
|
||||
|
@ -153,7 +153,7 @@
|
||||
},
|
||||
commercialLink() {
|
||||
// #ifdef H5
|
||||
window.open("https://h5.linfeng.tech")
|
||||
window.open("https://www.linfengtech.cn")
|
||||
// #endif
|
||||
// #ifdef MP-WEIXIN
|
||||
uni.navigateToMiniProgram({
|
||||
|
Loading…
Reference in New Issue
Block a user