linwenxin hace 5 meses
padre
commit
1f21d7c3b6
Se han modificado 1 ficheros con 10 adiciones y 6 borrados
  1. 10 6
      src/packageMaterial/pages/sale/index.vue

+ 10 - 6
src/packageMaterial/pages/sale/index.vue

@@ -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) {