许成详 6 年之前
父節點
當前提交
069c441076

+ 1
- 1
dist/index.html 查看文件

@@ -1 +1 @@
1
-<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel=stylesheet href=//at.alicdn.com/t/font_775069_dwqa9wy3lkh.css><title>城的空间后台管理系统</title><link href=./static/css/app.a03d347a86013325bcec60d2b4f33068.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.992319e39e0ff64940a3.js></script><script type=text/javascript src=./static/js/app.ec917e5733982a532bde.js></script></body></html>
1
+<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel=stylesheet href=//at.alicdn.com/t/font_775069_dwqa9wy3lkh.css><title>城的空间后台管理系统</title><link href=./static/css/app.224e2a86393b63b0994faf1e7bd8710a.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.992319e39e0ff64940a3.js></script><script type=text/javascript src=./static/js/app.15196c425f3d13398719.js></script></body></html>

+ 4
- 1
src/pages/system/caseManager/deviceManager/index.vue 查看文件

@@ -141,7 +141,10 @@ export default {
141 141
       this.getList()
142 142
     },
143 143
     getList () { // 获取列表
144
-      this.GetDeviceList({ ...this.postData, caseid: this.CaseId === 'all' ? '' : this.CaseId })
144
+      this.GetDeviceList({ ...this.postData, caseid: this.CaseId === 'all' ? '' : this.CaseId }).then((res) => {
145
+        this.postData.page = res.page
146
+        this.total = res.pagenum
147
+      })
145 148
     },
146 149
     delCallBack () {
147 150
       this.$message({

+ 1
- 1
src/pages/system/dataStatistics/cardCouponList/index.vue 查看文件

@@ -167,7 +167,7 @@ export default {
167 167
       this.getCardCouponList(this.postData).then((res) => {
168 168
         // console.log(JSON.stringify(res))
169 169
         this.postData.page = res.page
170
-        this.total = res.total
170
+        this.total = res.pagenum
171 171
       })
172 172
     },
173 173
     exportExcel () {

+ 1
- 1
src/pages/system/dataStatistics/courseOrderList/index.vue 查看文件

@@ -197,7 +197,7 @@ export default {
197 197
       this.getCourseOrderList(this.postData).then((res) => {
198 198
         // console.log(JSON.stringify(res))
199 199
         this.postData.page = res.page
200
-        this.total = res.total
200
+        this.total = res.pagenum
201 201
       })
202 202
     },
203 203
     exportExcel () {

+ 1
- 1
src/pages/system/dataStatistics/courseStatisticsList/index.vue 查看文件

@@ -169,7 +169,7 @@ export default {
169 169
       this.getCourseList(this.postData).then((res) => {
170 170
         console.log(JSON.stringify(res))
171 171
         this.postData.page = res.page
172
-        this.total = res.total
172
+        this.total = res.pagenum
173 173
       })
174 174
     },
175 175
     exportExcel () {

+ 1
- 1
src/pages/system/dataStatistics/courseVerifyList/index.vue 查看文件

@@ -194,7 +194,7 @@ export default {
194 194
       this.getCourseVerifyList(this.postData).then((res) => {
195 195
         // console.log(JSON.stringify(res))
196 196
         this.postData.page = res.page
197
-        this.total = res.total
197
+        this.total = res.pagenum
198 198
       })
199 199
     },
200 200
     exportExcel () {

+ 1
- 1
src/pages/system/dataStatistics/goodsStatisticsList/index.vue 查看文件

@@ -157,7 +157,7 @@ export default {
157 157
     getList () { // 获取列表
158 158
       this.GetGoods(this.postData).then((res) => {
159 159
         this.postData.page = res.page
160
-        this.total = res.total
160
+        this.total = res.pagenum
161 161
       })
162 162
     },
163 163
     exportExcel () {

+ 1
- 1
src/util/ajax.js 查看文件

@@ -81,7 +81,7 @@ const ajax = (...args) => {
81 81
 
82 82
 export default ajax
83 83
 
84
-export function replaceURLParams(url, params) {
84
+export function replaceURLParams (url, params) {
85 85
   const args = { ...(params || {}), org: 'MQ' }
86 86
 
87 87
   return Object.keys(args).reduce((acc, k) => { // 此方法对每个元素进行处理