|
@@ -177,12 +177,16 @@ export default {
|
|
|
},
|
|
|
|
|
|
getWebsitList() {
|
|
|
- this.$api.get('/user/apply/websit').then(res => {
|
|
|
- this.websitList = res.data
|
|
|
- if (this.websitList.length == 1) {
|
|
|
- this.websit = this.websitList[0]
|
|
|
- }
|
|
|
- })
|
|
|
+ this.$api
|
|
|
+ .get('/user/apply/websit', {
|
|
|
+ examineStatus: ['OK', 'EXPIRED']
|
|
|
+ })
|
|
|
+ .then(res => {
|
|
|
+ this.websitList = res.data
|
|
|
+ if (this.websitList.length == 1) {
|
|
|
+ this.websit = this.websitList[0]
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
confirmBrandDialog(e) {
|