this.post()
    this.get()
    this.put()
    this._delete()

    举例

    1. methods: {
    2. async getBanner() {
    3. const res = await this.post('/wap/BusniessCollege/adsList');
    4. this.banner = res.data.list;
    5. }
    6. }