14 lines
187 B
JavaScript
14 lines
187 B
JavaScript
|
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
|
||
|
// 查询协议版本详细
|
||
|
export function getAgreement() {
|
||
|
return request({
|
||
|
url: '/system/agreement/protocol',
|
||
|
method: 'get'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|