Commit dcf87b64fd572119a60935c1075f0067cdebe289

Authored by Andy
1 parent 76f08d4e

table bug修复

src/views/account/index.vue
... ... @@ -71,7 +71,7 @@
71 71 </el-table-column>
72 72 </el-table>
73 73 <el-pagination
74   - :page-size="10"
  74 + :page-size="5"
75 75 :pager-count="11"
76 76 layout="prev, pager, next"
77 77 :total="total"
... ... @@ -134,7 +134,7 @@
134 134 </el-table-column>
135 135 </el-table>
136 136 <el-pagination
137   - :page-size="10"
  137 + :page-size="5"
138 138 :pager-count="21"
139 139 layout="prev, pager, next"
140 140 :total="total2"
... ... @@ -180,10 +180,10 @@ export default {
180 180 /** 分页*/
181 181 total: 0,
182 182 currentPage: 1,
183   - pageSize: 10,
  183 + pageSize: 5,
184 184 total2: 0,
185 185 currentPage2: 1,
186   - pageSize2: 10,
  186 + pageSize2: 5,
187 187 }
188 188 },
189 189 mounted: function() {
... ...
src/views/dashboard/index.vue
... ... @@ -175,7 +175,7 @@
175 175 </el-table-column>
176 176 </el-table>
177 177 <el-pagination
178   - :page-size="10"
  178 + :page-size="5"
179 179 :pager-count="11"
180 180 layout="prev, pager, next"
181 181 :total="total"
... ... @@ -212,7 +212,7 @@
212 212 },
213 213 total: 0,
214 214 currentPage: 1,
215   - pageSize: 10,
  215 + pageSize: 4,
216 216 moneyData: [{
217 217 name: '消费金额',
218 218 january: '0',
... ...
src/views/myevaluate/index.vue
... ... @@ -95,7 +95,7 @@
95 95 dialogFormVisible: false,
96 96 total: 10,
97 97 currentPage: 1,
98   - pageSize: 10,
  98 + pageSize: 5,
99 99 orderData: [],
100 100 rules:{
101 101 desc:[
... ...
src/views/order/index.vue
... ... @@ -127,7 +127,7 @@ export default {
127 127 },
128 128 total: 0,
129 129 currentPage: 1,
130   - pageSize: 10,
  130 + pageSize: 6,
131 131 orderData: [
132 132 ]
133 133 }
... ...
src/views/payback/index.vue
... ... @@ -144,7 +144,7 @@
144 144 orgs:[],
145 145 total: 0,
146 146 currentPage: 1,
147   - pageSize: 10,
  147 + pageSize: 6,
148 148 orderData: [
149 149 ],
150 150 multipleSelection:[],
... ...