1234567891011121314151617181920212223242526 |
- import request from '@/utils/request'
-
-
- export function getCompanyInfo() {
- return request({
- url: '/company/company/getCompanyInfo',
- method: 'get'
- })
- }
- export function getCompanyVoice() {
- return request({
- url: '/company/company/getCompanyVoice',
- method: 'get'
- })
- }
- export function getCompanySms() {
- return request({
- url: '/company/company/getCompanySms',
- method: 'get'
- })
- }
-
|