修复:运营中心 - 绑定商户时 商户仅显示前20个商户,导致部分商户不能选择编辑

This commit is contained in:
wuhui_zzw 2024-04-24 09:15:38 +08:00
parent 6a4fa2573e
commit c3adc31148
3 changed files with 5 additions and 6 deletions

View File

@ -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.

View File

@ -568,8 +568,6 @@ const marketingRouter =
},
component: () => import('@/views/marketing/agent/config/index')
},
]
},
{

View File

@ -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;