diff --git a/api/api.js b/api/api.js index dac0f26..8e6bbf1 100644 --- a/api/api.js +++ b/api/api.js @@ -8,17 +8,17 @@ const config = { // 示例 // wxLogin : {url : '/api/wxLogin', method : 'POST', // auth : false, showLoading : true, loadingTitle : '加载中...', - // limit : 1000 + // limit : 1500 // }, - getConfig: {url: '/index/getSysText', method: 'POST', limit: 500}, + getConfig: {url: '/index/getSysText', method: 'POST', limit: 1500}, // 微信登录接口 wxLogin: { url: '/login/login', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 修改个人信息接口 @@ -26,7 +26,7 @@ const config = { url: '/info/updateInfo', method: 'POST', auth: true, - limit: 500, + limit: 1500, showLoading: true, }, //隐私政策 @@ -45,35 +45,42 @@ const config = { loginUser: { url: '/alUser/login', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, //用户注册 registerUser: { url: '/alUser/regUesr', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 发送短信接口 sendSms: { url: '/alUser/sendSms', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 选择身份 roleOption: { url: '/alUser/role', method: 'POST', - limit : 1000, + limit : 1500, + showLoading: true, + }, + // 修改身份信息 + updateRoleInfo: { + url: '/alUser/updateRoleInfo', + method: 'POST', + limit : 1500, showLoading: true, }, // 忘记密码 newPassword: { url: '/alUser/newPassword', method: 'POST', - limit : 1000, + limit : 1500, showLoading: true, }, @@ -82,28 +89,28 @@ const config = { addCustoms: { url: '/product/addCustoms', method: 'POST', - limit : 1000, + limit : 1500, showLoading: true, }, // 产品报价 addProduct: { url: '/product/addProduct', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 下订单 addProductOrder: { url: '/product/addProductOrder', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 确认-取消订单 updateOrder: { url: '/product/updateOrder', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 我的挂单列表 @@ -115,7 +122,7 @@ const config = { noShow: { url: '/product/noShow', method: 'GET', - limit: 500, + limit: 1500, showLoading: true, }, // 现货/期货列表 @@ -133,21 +140,21 @@ const config = { addAddress: { url: '/address/add', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 用户地址表-编辑 editAddress: { url: '/address/edit', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 用户地址表-删除 deleteAddress: { url: '/address/edit', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 用户地址表-分页列表查询 @@ -160,7 +167,7 @@ const config = { addSuggest: { url: '/index/addSuggest', method: 'POST', - limit: 500, + limit: 1500, showLoading: true, }, // 铝价接口 diff --git a/components/base/centerList.vue b/components/base/centerList.vue index e9c9dfe..7275f67 100644 --- a/components/base/centerList.vue +++ b/components/base/centerList.vue @@ -1,9 +1,11 @@