我的页面

This commit is contained in:
haomingming
2025-09-25 10:28:27 +08:00
parent b884a8f6fc
commit 9e78b974a2
17 changed files with 897 additions and 104 deletions
+20
View File
@@ -0,0 +1,20 @@
import {request} from '@/utils/request.js'
const my_api = {
isBoundWechat() {
return request('/expertAPI/isBoundWechatByUuid', {}, 'post', true);
},
unBindWechat(data) {
return request('/expertAPI/delWechatExpert', data, 'post', true);
},
bindWechat(data) {
return request('/expertAPI/addWechatExpert', data, 'post', true);
},
expertWxLogin(data,header) {
return request('/expertAPI/wechatLogin', data, 'post', true,'application/json',header);
}
}
export default my_api;