| 1234567891011121314151617181920212223 |
- export default {
- mounted() {
- this.getWxConfig()
- },
- data() {
- return {
- // 详情id
- detailID: this.$route.params.detail,
- }
- },
- methods: {
- /**
- * 获取微信配置
- */
- async getWxConfig() {
- let res = await this.$axios.$post(`/api/auth/get_wechat_js_api_conf`)
- this.$store.commit('updateWxConfig', {
- wxConfig: res.data || {}
- })
- if(this.configWx) this.configWx()
- }
- }
- }
|