diff --git a/src/api/system/smUser.js b/src/api/system/smUser.js index 86ee5c1..e2a58ab 100644 --- a/src/api/system/smUser.js +++ b/src/api/system/smUser.js @@ -9,6 +9,38 @@ export function listSmUser(query) { }) } +export function listAgent(query) { + return request({ + url: '/system/smUser/agentList', + method: 'get', + params: query + }) +} + +export function listBiz(query) { + return request({ + url: '/system/smUser/bizList', + method: 'get', + params: query + }) +} + +export function listInvestor(query) { + return request({ + url: '/system/smUser/investorList', + method: 'get', + params: query + }) +} + +export function listStoreUser(query) { + return request({ + url: '/system/smUser/storeList', + method: 'get', + params: query + }) +} + // ids查询普通用户信息列表 export function listSmUserByIds(ids) { diff --git a/src/components/Business/Store/StoreInput.vue b/src/components/Business/Store/StoreInput.vue index bb3a3b3..eb4a900 100644 --- a/src/components/Business/Store/StoreInput.vue +++ b/src/components/Business/Store/StoreInput.vue @@ -3,18 +3,19 @@ @@ -99,11 +117,12 @@ import { SmUserType } from '@/utils/constants' import Device from '@/views/system/device/index.vue' import StoreInvestor from '@/views/ss/storeInvestor/index.vue' import SmUser from '@/views/system/smUser/index.vue' +import User from '@/views/system/user/index.vue' export default { name: 'User/:userId', mixins: [$view, $serviceType], - components: { StoreInvestor, Device, Suit, Account, RecordBalance, Store, Access, UserRechargeReport, UserAccount, UserDevice, LineChart}, + components: { SmUser, User, StoreInvestor, Device, Suit, Account, RecordBalance, Store, Access, UserRechargeReport, UserAccount, UserDevice, LineChart}, dicts: ['service_type', 'withdraw_service_type', 'user_type'], computed: { SmUser() { diff --git a/src/views/system/smUser/index.vue b/src/views/system/smUser/index.vue index b9fb269..eac0783 100644 --- a/src/views/system/smUser/index.vue +++ b/src/views/system/smUser/index.vue @@ -99,8 +99,11 @@ -