前端页面:
前端页面
请求后台
请求后台
后台数据
在这里插入图片描述
搜索按钮的方法
在这里插入图片描述

 // 搜索
    sousuo() {
      this.userxinxi = this.restaurants
      if (!(this.userid === '')) {
        this.userxinxi = this.userxinxi.filter(data => {
          if (data.id === this.userid) {
            return true
          }
        })
      }
      if (!(this.username === '')) {
        this.userxinxi = this.userxinxi.filter(data => {
          if (data.username === this.username) {
            return true
          }
        })
      }
      if (!(this.leibie === '')) {
        this.userxinxi = this.userxinxi.filter(data => {
          if (data.roles === this.leibie) {
            return true
          }
        })
      }
      if (this.leibie === '' && this.userid === '' && this.username === '') {
        this.userxinxi = this.restaurants
      }
    },
Logo

前往低代码交流专区

更多推荐