01 2022 档案

摘要:1、路径中含有'/dev-api/admin/product'都会匹配到第一个代理,需要注意的是如果把第二个代理放到最上面那么所有请求会被匹配到其target路径下2、实际路径是:target+ baseURL(如果重写axios文件配置)+url(api文件) - pathRewrite 实际请求 阅读全文
posted @ 2022-01-26 15:27 阿piu~ต 阅读(900) 评论(1) 推荐(0)
摘要:vuex中,action调用接口使用.then方法返回值不能获取到,如下action: 1 import { 2 reqLogin 3 } from '@/api/index' 4 export default ({ 5 state: { 6 token: '', 7 }, 8 mutations: 阅读全文
posted @ 2022-01-10 16:31 阿piu~ต 阅读(2556) 评论(1) 推荐(0)
摘要:1 <ul class="cart-list" v-for="sku in skuInfo" :key="sku.id"> 2 <li class="cart-list-con1"> 3 <input 4 type="checkbox" 5 name="chk_list" 6 :checked="s 阅读全文
posted @ 2022-01-05 14:24 阿piu~ต 阅读(228) 评论(0) 推荐(0)