Commit cfccdf5c68a71dd526282bd8d3897cb9bd456777

Authored by wuxw
1 parent 586338a6

v1.9 修复业务受理页面部分bug

src/views/community/communityManageList.vue
... ... @@ -143,7 +143,7 @@ export default {
143 143 this.communityManageInfo.records = res.records
144 144 this.communityManageInfo.communitys = res.communitys
145 145 this.dealCommunityAttr(res.communitys)
146   - this.pagination.total = res.records
  146 + this.pagination.total = res.total
147 147 }).catch(error => {
148 148 console.error('请求失败处理', error)
149 149 })
... ...
src/views/user/login/Login.vue
... ... @@ -44,8 +44,8 @@ export default {
44 44 logo: '',
45 45 companyName:'',
46 46 loginForm: {
47   - username: '',
48   - passwd: '',
  47 + username: 'wuxw',
  48 + passwd: 'admin',
49 49 validateCode: ''
50 50 },
51 51 captchaUrl: '',
... ...