|
|
@@ -56,9 +56,9 @@
|
|
|
<span><i class="iconfont icon-sousuo"></i></span>
|
|
|
</div>
|
|
|
<div class="list-content">
|
|
|
- <div class="bg" v-for="item in auditBind">
|
|
|
+ <div class="bg">
|
|
|
<div class="staff-list">
|
|
|
- <div class="list-item"><span>用户名:</span><span>{{item}}}</span></div>
|
|
|
+ <div class="list-item"><span>用户名:</span><span>{item}</span></div>
|
|
|
<div class="list-item"><span>UU账号:</span><span>100000721</span></div>
|
|
|
<div class="list-item"><span>手机号:</span><span>12345678901</span></div>
|
|
|
<div class="list-item"><span>邮箱:</span><span>12345678901</span></div>
|
|
|
@@ -69,7 +69,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div>{{auditBind}}</div>
|
|
|
+ <empty-status :type="'collect'" :showLink="true" :text="'抱歉,没有相关信息'"></empty-status>
|
|
|
</div>
|
|
|
<!--<seek-list :keyword="remindKeyword" :isSearch="isSearch" :userType="userType" :seekType="seekType" :purchaseManList="purchaseManListData"></seek-list>-->
|
|
|
<!--<pull-up :fixId="'mobileFixContent'" :searchMore="fetching" :allPage="allPage" :page="page" @pullUpAction="onPullUpAction"></pull-up>-->
|
|
|
@@ -113,29 +113,28 @@
|
|
|
staffData () {
|
|
|
return this.$store.state.staff.infoList.info.data.content
|
|
|
},
|
|
|
- auditBind () {
|
|
|
- console.log(this.$store.state.staff.infoList.audit.data, '13')
|
|
|
- return this.$store.state.staff.infoList.audit.data.content
|
|
|
- },
|
|
|
userInfo () {
|
|
|
return this.$store.state.option.user.data
|
|
|
}
|
|
|
},
|
|
|
- fetch ({ store }) {
|
|
|
- return Promise.all([
|
|
|
- store.dispatch('staff/bindAudit', {size: this.count, page: this.page, speaceUU: this.user.userUU, status: 311, keyword: this.auditSearch})
|
|
|
- ])
|
|
|
- },
|
|
|
+ // fetch ({ store }) {
|
|
|
+ // return Promise.all([
|
|
|
+ // store.dispatch('staff/bindAudit', {size: this.count, page: this.page, speaceUU: this.user.userUU, status: 311, keyword: this.auditSearch})
|
|
|
+ // ])
|
|
|
+ // },
|
|
|
methods: {
|
|
|
setSwitchType (type) {
|
|
|
this.switchType = type
|
|
|
- // this.$jsonp(`${process.env.ssoUrl}/api/userspace/apply/info/mall?count=10&page=1&speaceUU=10049698&status=311`, {timeout: 5000, name: 'successCallback'}, (err, data) => {
|
|
|
- // console.log(err, data, '231')
|
|
|
- // })
|
|
|
this.$http({
|
|
|
method: 'get',
|
|
|
- dataType: 'jsonp',
|
|
|
- url: `${process.env.ssoUrl}/api/userspace/apply/info/mall?count=10&page=1&speaceUU=10049698&status=311`
|
|
|
+ baseURL: process.env.ssoUrl,
|
|
|
+ url: `/api/userspace/apply/info/mall`,
|
|
|
+ data: {
|
|
|
+ count: 10,
|
|
|
+ page: 1,
|
|
|
+ speaceUU: 10049698,
|
|
|
+ status: 311
|
|
|
+ }
|
|
|
}).then(res => {
|
|
|
console.log('1', res.data)
|
|
|
}, err => {
|