diff --git a/public/config.js b/public/config.js index ee9bb4a..f5e02f0 100644 --- a/public/config.js +++ b/public/config.js @@ -4,11 +4,11 @@ window.serverConfig = { // 必填: api地址, 换成自己的域名即可 // 例如: https://www.你的域名.com/index.php?s=/admin // BASE_API: 'https://www.saas.njrenzhou.com/index.php?s=/admin', - BASE_API: 'https://test-www.royaum.com.cn/index.php?s=/admin', + BASE_API: 'https://www.royaum.com.cn/index.php?s=/admin', // 必填: store模块的入口地址 // 例如: https://www.你的域名.com/store // STORE_URL: 'https://www.saas.njrenzhou.com/store', - STORE_URL: 'https://test-www.royaum.com.cn/store', + STORE_URL: 'https://www.royaum.com.cn/store', // 图片文件上传大小 (单位mb) uploadImageSize: 2, diff --git a/src/api/feedback/index.js b/src/api/feedback/index.js index d14456f..2e181b9 100644 --- a/src/api/feedback/index.js +++ b/src/api/feedback/index.js @@ -8,13 +8,13 @@ const api = { /** * 反馈列表 - * @param {*} data + * @param {*} params */ -export function feedbackList (data) { +export function feedbackList (params) { return axios({ url: api.feedbackList, method: 'get', - data + params }) } diff --git a/src/views/dataCenter/feedback/index.vue b/src/views/dataCenter/feedback/index.vue index 2808bfd..88638ec 100644 --- a/src/views/dataCenter/feedback/index.vue +++ b/src/views/dataCenter/feedback/index.vue @@ -1,14 +1,12 @@ - + @@ -48,7 +46,11 @@ export default { '功能新增:我想用的功能,希望能开发新增', '服务建议:服务商服务不到位,我有建议' ], - feedbackList: [], + loadData: (param) => { + return Api.feedbackList({ ...param }).then((response) => { + return response.data + }) + }, // 表头 columns: [ { @@ -91,10 +93,6 @@ export default { ] } }, - created () { - // 获取分类列表 - this.getFeedbackList() - }, methods: { // 编辑商户 async handleEdit (record) { @@ -102,20 +100,8 @@ export default { this.$refs.EditForm.add(record) }, // 刷新列表 - handleRefresh () { - // 获取分类列表 - this.getFeedbackList() - }, - // 获取商户列表 - getFeedbackList () { - this.isLoading = true - Api.feedbackList() - .then((result) => { - console.log(result) - this.feedbackList = result.data.data - this.isLoading = false - }) - .finally(() => (this.isLoading = false)) + handleRefresh (bool = false) { + this.$refs.table.refresh(bool) } } }