修复:运营中心 - 绑定商户时 商户仅显示前20个商户,导致部分商户不能选择编辑
This commit is contained in:
parent
6a4fa2573e
commit
c3adc31148
|
|
@ -3,12 +3,12 @@ ENV = 'development'
|
|||
# http://192.168.1.43:8324/admin
|
||||
# http://mer.crmeb.net/admin
|
||||
# base api
|
||||
VUE_APP_BASE_API = 'https://bt.test.cdlfjy.com'
|
||||
#VUE_APP_BASE_API = 'https://mp.scwmbh.cn'
|
||||
#VUE_APP_BASE_API = 'https://bt.test.cdlfjy.com'
|
||||
VUE_APP_BASE_API = 'https://mp.scwmbh.cn'
|
||||
|
||||
# socket 连接地址
|
||||
VUE_APP_WS_URL = 'ws://bt.test.cdlfjy.com'
|
||||
#VUE_APP_WS_URL = 'ws://mp.scwmbh.cn'
|
||||
#VUE_APP_WS_URL = 'ws://bt.test.cdlfjy.com'
|
||||
VUE_APP_WS_URL = 'ws://mp.scwmbh.cn'
|
||||
|
||||
# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
|
||||
# to control whether the babel-plugin-dynamic-import-node plugin is enabled.
|
||||
|
|
|
|||
|
|
@ -568,8 +568,6 @@ const marketingRouter =
|
|||
},
|
||||
component: () => import('@/views/marketing/agent/config/index')
|
||||
},
|
||||
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -105,6 +105,7 @@ export default {
|
|||
// 参数补充
|
||||
params.merchant_type = _this.merchant_type || 0;
|
||||
params.status = 1;
|
||||
params.limit = 1000;
|
||||
// 发起请求
|
||||
merchantListApi(params).then((res) => {
|
||||
if(res.status == 200) _this.list = res.data.list;
|
||||
|
|
|
|||
Loading…
Reference in New Issue