批量处理协议

This commit is contained in:
2022-06-11 17:01:04 +08:00
parent 942bec6263
commit b8c986c0d8
7 changed files with 796 additions and 770 deletions

View File

@@ -12,16 +12,20 @@
content: ''
};
},
created() {
agreement().then(res => {
this.content = res.content
}).catch(err => {
uni.showToast({
title: err.message,
icon : 'none'
})
})
}
onLoad(e) {
console.log(e.id);
agreement(e.id).then(res => {
this.content = res.content
uni.setNavigationBarTitle({
title:res.title
})
}).catch(err => {
uni.showToast({
title: err.message,
icon : 'none'
})
})
},
}
</script>