async awiat

       * 表单分页查询
       * */
    async queryPageTieline(queryParam) {
      try {
        const res = await planAnalysisApi.queryPageTieline(queryParam)
        this.planekingList = res.data.list
        this.queryParam.pageInfo.pageNum = res.data.pageNum
        this.queryParam.pageInfo.pageSize = res.data.pageSize
        this.queryParam.pageInfo.size = res.data.size
        this.queryParam.pageInfo.total = res.data.total
        this.dPopup1()
      } catch (err) {
        console.log(err)
      }
    },
原文地址:https://www.cnblogs.com/javascript9527/p/12467221.html