diff --git a/src/api/index.js b/src/api/index.js index ce6f7ce..e6e6547 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -1,5 +1,12 @@ import request from '@/utils/request'; +// 获取短信发送的总条数 +export function getSmsCount(params) { + return request({ + url: '/mobile/getSmsCount', + params + }); +} // 修改活动 export function qrUpdate(data) { return request({ @@ -18,9 +25,11 @@ export function orderList(data, params) { }); } // 获取活动领取名单列表 -export function userList(params) { +export function userList(data, params) { return request({ url: '/aUser/userList', + method: 'post', + data, params }); } diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue index c815e13..7bd153e 100644 --- a/src/components/Pagination/index.vue +++ b/src/components/Pagination/index.vue @@ -1,5 +1,5 @@ diff --git a/vue.config.js b/vue.config.js index 0dfa030..7545490 100644 --- a/vue.config.js +++ b/vue.config.js @@ -6,7 +6,7 @@ function resolve(dir) { return path.join(__dirname, dir); } -const name = defaultSettings.title || '金槐花服务平台'; // 标题 +const name = defaultSettings.title || '金淮花服务平台'; // 标题 const port = process.env.port || process.env.npm_config_port || 8080; // 端口