Browse Source

关联pt

master
lucky 4 years ago
parent
commit
dd6c3f7013
  1. 8
      src/App.vue
  2. 6
      src/config/api.js

8
src/App.vue

@ -25,6 +25,14 @@ export default {
const userId = '1218763410024566784'; const userId = '1218763410024566784';
const params = { userId }; const params = { userId };
this.getUserId(params); this.getUserId(params);
window.plugin = TallPlugin.init();
// created created便
// created created
window.plugin.created(function(props) {
console.log(this);
console.log(props, props.projectId, this.config);
});
}, },
methods: mapActions('home', ['getUserId']), methods: mapActions('home', ['getUserId']),

6
src/config/api.js

@ -46,3 +46,9 @@ export const countCase = params => axios.post(`${statistics}/countCase`, params)
// 添加会议记录 // 添加会议记录
export const saveConferenceRecords = params => axios.post(`${conferenceRecords}/save`, params); export const saveConferenceRecords = params => axios.post(`${conferenceRecords}/save`, params);
// 查询会议记录
export const selConRec = params => axios.post(`${conferenceRecords}/selConRec`, params);
// 分享会议记录
export const shareMeeting = params => axios.post(`${conferenceRecords}/share`, params);

Loading…
Cancel
Save