diff --git a/.env.development b/.env.development index 357369f..1d102f9 100644 --- a/.env.development +++ b/.env.development @@ -5,7 +5,8 @@ VUE_APP_TITLE = 小鹿骑行 ENV = 'development' # 小鹿骑行/开发环境 -VUE_APP_BASE_API = '/dev-api' +# VUE_APP_BASE_API = 'http://192.168.2.74:8100' +VUE_APP_BASE_API = 'https://testlu.chuangtewl.com/prod-api' # 路由懒加载 VUE_CLI_BABEL_TRANSPILE_MODULES = true diff --git a/src/api/system/withdraw.js b/src/api/system/withdraw.js index 4d3acd7..666690f 100644 --- a/src/api/system/withdraw.js +++ b/src/api/system/withdraw.js @@ -43,9 +43,9 @@ export function delWithdraw(id) { }) } -export function getuserWithdraw(id) { +export function getuserWithdraw(userId) { return request({ - url: '/user/user/getUserWithdrawChannelList?userId=' + id, + url: '/appVerify/getUserWithdrawChannelList?userId=' + userId, method: 'get' }) } diff --git a/src/router/index.js b/src/router/index.js index 109d6d8..04cf615 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -106,6 +106,20 @@ export const dynamicRoutes = [ } ] }, + { + path: '/system/user-mechat', + component: Layout, + hidden: true, + permissions: ['system:user:edit'], + children: [ + { + path: 'role/:userId(\\d+)', + component: () => import('@/views/system/user/mechat'), + name: 'mechat', + meta: { title: '商户管理', activeMenu: '/system/user' } + } + ] + }, { path: '/system/role-auth', component: Layout, diff --git a/src/views/system/user/mechat.vue b/src/views/system/user/mechat.vue new file mode 100644 index 0000000..5affacb --- /dev/null +++ b/src/views/system/user/mechat.vue @@ -0,0 +1,688 @@ + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + 新增 + + + 修改 + + + 删除 + + + + + + + + + + + + + + + + + + {{ scope.row.balance }}元 + + + + + + + + + + {{ parseTime(scope.row.cooperationTime) }} + + + + + 修改 + 删除 + handleCommand(command, scope.row)" + v-hasPermi="['system:user:resetPwd', 'system:user:edit']"> + 更多 + + 重置密码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ + dict.label + }} + + + + + + + + + + + + + + {{ item.name }} + 渠道状态: + + + + {{ + dict.label + }} + + + + + + + + + + + + + + + + 单笔最低 + + 元 + + 单笔最高 + + 元 + + + + + + + + + + + + + + + + + + + diff --git a/vue.config.js b/vue.config.js index 793e986..57b21ee 100644 --- a/vue.config.js +++ b/vue.config.js @@ -32,16 +32,16 @@ module.exports = { host: '0.0.0.0', port: port, open: true, - proxy: { - // detail: https://cli.vuejs.org/config/#devserver-proxy - [process.env.VUE_APP_BASE_API]: { - target: `http://localhost:8100`, - changeOrigin: true, - pathRewrite: { - ['^' + process.env.VUE_APP_BASE_API]: '' - } - } - }, + // proxy: { + // // detail: https://cli.vuejs.org/config/#devserver-proxy + // [process.env.VUE_APP_BASE_API]: { + // target: `http://localhost:8100`, + // changeOrigin: true, + // pathRewrite: { + // ['^' + process.env.VUE_APP_BASE_API]: '' + // } + // } + // }, disableHostCheck: true }, css: {