Blame view

src/store/modules/test.js 1.2 KB
e2eaa8a22   范牧   请求地址提取
1
2
3
4
5
6
   import urlAlias from '../url';
   import request from '../request';
  
   const {
    shopList
   } = urlAlias;
843fce64e   wulunyi   feat(master): 加入 ...
7
8
9
10
11
12
13
14
15
16
17
18
  const state = {
    list: [],
  };
  
  const mutations = {
    INIT: (state, list) => {
      state.list = list;
    },
  };
  
  const actions = {
    fetch({ commit }, param) {
e2eaa8a22   范牧   请求地址提取
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
      request({
        url: shopList,
        success: (res) => {
          commit('INIT', res.data.data)
        },
        fail: (res) => {
          console.log("fail status === > ", res);
        },
        complete: (res) => {
          console.log("complete status === > ", res);
        },
      })
      // uni
      //   .request({
      //     url: "https://api.glass.xiuyetang.com/app/prod/list",
      //     method: "post",
      //     data: {},
      //     header: {
      //       "Content-Type": "application/x-www-form-urlencoded",
      //     },
      //     timeout: 3000,
      //     withCredentials: false, 
      //     success: (res) => {
      //       commit('INIT', res.data.data)
      //     },
      //     fail: (res) => {
      //       console.log("fail status === > ", res);
      //     },
      //     complete: (res) => {
      //       console.log("complete status === > ", res);
      //     },
      //   });
843fce64e   wulunyi   feat(master): 加入 ...
51
52
53
54
55
56
57
58
59
    },
  };
  
  export default {
    namespaced: true,
    state,
    mutations,
    actions,
  };