许成详 6 years ago
parent
commit
069c441076

+ 1
- 1
dist/index.html View File

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 View File

141
       this.getList()
141
       this.getList()
142
     },
142
     },
143
     getList () { // 获取列表
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
     delCallBack () {
149
     delCallBack () {
147
       this.$message({
150
       this.$message({

+ 1
- 1
src/pages/system/dataStatistics/cardCouponList/index.vue View File

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

+ 1
- 1
src/pages/system/dataStatistics/courseOrderList/index.vue View File

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

+ 1
- 1
src/pages/system/dataStatistics/courseStatisticsList/index.vue View File

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

+ 1
- 1
src/pages/system/dataStatistics/courseVerifyList/index.vue View File

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

+ 1
- 1
src/pages/system/dataStatistics/goodsStatisticsList/index.vue View File

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

+ 1
- 1
src/util/ajax.js View File

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