1. 安装axios  cnpm install axios –save

  2. main.js 引用axios

    import axios from 'axios'

    //axios.defaults.baseURL = 'http://api.jiapin.com/api/'

    Vue.prototype.$http = axios

  3. template 使用 axios 请求数据

    this.$http.post('http://api.jiapin.com/api/finance/add',JSON.stringify(this.ruleForm))

                  //.then(res=>res.json())

                  .then(data=>{

                    //console.log(data.data);

                    if(data.data.code == 0){

                      this.$message({

                        type: 'success',

                        message: '记账成功!'

                      });

                    }else{

                     this.$message({

                        type: 'error',

                        message: '记账失败'

                      });

                    }

                  })

                  .catch(err=>console.log(err));