GITLAB

刘文博 / gulu-vue

Sign in
  • Sign in
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • gulu-vue
  • src
  • store
  • modules
  • payLog.js
  • 9a8f39ae3   订单 Browse Code »
    BigBoss
    2020-05-21 23:03:09 +0800  
payLog.js 412 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
import urlAlias from '../url';
import request from '../request';

const {
  payLog
} = urlAlias;


const actions = {
  payLog({ commit }, param) {
      request({
        url: payLog,
        data: param,
        success: (res) => {
          // console.log(res.data);
          commit("INIT", res.data.data);
        },
    })
  }
}

export default {
  namespaced: true,
  // state,
  // mutations,
  actions,
}