This commit is contained in:
yanran200730
2022-06-15 16:30:45 +08:00
parent 07d8bb7dc0
commit d8eadba6ba
4 changed files with 6 additions and 35 deletions

View File

@@ -60,7 +60,7 @@ export default {
module = 'wangge'
}
this.setModule(module)
this.getToken({...this.form, module, corpId}).then(token => {
this.getToken({...this.form, module, corpId: 'wpytYEDgAAcpXjmlYkYwKO60JDGDWrXg'}).then(token => {
if (token) {
this.login(token)
if (module != 'AppCountryAlbum') {

View File

@@ -93,7 +93,7 @@
if (res.code === 0) {
const data = this.configList[this.currIndex]
uni.navigateTo({
url: `./ReportImg?albumId=${this.albumId}&img=${res.data.url}&type=${data.watermarkType}&templateId=${data.id}`
url: `./ReportImg?albumId=${this.albumId}&img=${res.data.url}&fileId=${res.data.fileId}&type=${data.watermarkType}&templateId=${data.id}`
})
}

View File

@@ -24,7 +24,7 @@
</template>
<script>
import { mapActions, mapState } from 'vuex'
import { mapState } from 'vuex'
export default {
name: 'Photo',
@@ -62,43 +62,12 @@
},
methods: {
...mapActions(['wxInvoke']),
back () {
uni.navigateBack({
delta: 1
})
},
share () {
uni.showActionSheet({
itemList: ['分享', '微信分享'],
success: data => {
if (data.tapIndex === 0 || data.tapIndex === 1) {
if (data.tapIndex === 0) {
this.wxInvoke(['shareAppMessage', {
title: this.info.title,
desc: this.info.tableExplain,
link: this.linkUrl,
imgUrl: this.info.headPicture
}, () => {
this.isShow = false
}])
} else {
this.wxInvoke(['shareWechatMessage', {
title: this.info.title,
desc: this.info.tableExplain,
link: this.linkUrl,
imgUrl: this.info.headPicture
}, () => {
this.isShow = false
}])
}
}
}
})
},
remove () {
this.$confirm('确定删除该图片?').then(() => {
this.$http.post(`/api/appalbumphoto/delete?ids=${this.id}`).then(res => {

View File

@@ -71,7 +71,8 @@
albumId: '',
templateId: '',
isShow: false,
currIndex: 0
currIndex: 0,
fileId: ''
}
},
@@ -90,6 +91,7 @@
this.type = query.type
this.templateId = query.templateId
this.albumId = query.albumId
this.fileId = query.fileId
this.getWatermarkList()
},