Compare commits
No commits in common. "b8dcf545b0db022c33a324f88699fd11e102f5d2" and "410ab9131e067894830d0242195b6d3b2de951d8" have entirely different histories.
b8dcf545b0
...
410ab9131e
|
|
@ -185,7 +185,14 @@ export function passwordFreeLen(params) {
|
|||
params
|
||||
})
|
||||
}
|
||||
|
||||
// 会员有效状态
|
||||
export function getExpirestatus(params) {
|
||||
return request({
|
||||
url: '/system/pub/enums/get-expirestatus',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
// 会员奖衔查询列表
|
||||
export function member_awards(params) {
|
||||
return request({
|
||||
|
|
|
|||
|
|
@ -715,6 +715,7 @@ import {
|
|||
passwordFreeLen,
|
||||
incomeStatusList,
|
||||
serviceStatus,
|
||||
getExpirestatus,
|
||||
copyPwd
|
||||
} from '@/api/member'
|
||||
import {
|
||||
|
|
@ -1081,6 +1082,9 @@ export default {
|
|||
getattestation().then((res) => {
|
||||
this.tattestation = res.data
|
||||
})
|
||||
getExpirestatus().then((res) => {
|
||||
this.expireList = res.data
|
||||
})
|
||||
},
|
||||
// 服务协议
|
||||
serviceStatus() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue