feature/comment-0620-ch
ch 2 years ago
parent 6b2adcaf6a
commit f11b0ee085

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-06-20 11:38:48
* @LastEditors: ch
* @LastEditTime: 2022-06-29 16:04:59
* @LastEditTime: 2022-06-29 17:41:44
* @Description: file content
*/
@ -15,17 +15,16 @@ const BASE_URL = '/mall/comment';
* @param {*} param0
*/
export const ApiGetCommentList = (params) =>
ToAsyncAwait(MsbRequestTk.get(`${BASE_URL}/app/comment`, {
...params,
notVerifyToken : true
ToAsyncAwait(MsbRequestTk.get(`${BASE_URL}/app/comment`,params, {
notVerifyToken: true
}));
/**
* 根据商品获取评论总数
* @param {*} param0
*/
export const ApiGetCommentCount = ({productId}) =>
ToAsyncAwait(MsbRequestTk.get(`${BASE_URL}/app/comment/getAllCommentCountByProductId/${productId}`, {
notVerifyToken : true
ToAsyncAwait(MsbRequestTk.get(`${BASE_URL}/app/comment/getAllCommentCountByProductId/${productId}`,{}, {
notVerifyToken: true
}));
/**
* 根据商品获取标签评论总数
@ -44,8 +43,8 @@ export const ApiGetOrderCommentDetail = ({orderId}) =>
* @param {*} param0
*/
export const ApiGetCommentDetail = ({commentId}) =>
ToAsyncAwait(MsbRequestTk.get(`${BASE_URL}/app/comment/getCommentDetail/${commentId}`, {
notVerifyToken : true
ToAsyncAwait(MsbRequestTk.get(`${BASE_URL}/app/comment/getCommentDetail/${commentId}`,{}, {
notVerifyToken: true
}));
/**
* 新增评论

@ -2,7 +2,7 @@
* @Author: ch
* @Date: 2022-03-17 17:42:32
* @LastEditors: ch
* @LastEditTime: 2022-06-29 17:33:30
* @LastEditTime: 2022-06-29 17:37:04
* @Description: 项目接口请求统一处理器返回一个需要token和不需要token的请求封装方法
*/
@ -107,15 +107,15 @@ MsbRequestTk.baseUrl = ENV.baseUrl;
MsbRequestTk.use('request', (option) => {
const token = $store.state.token;
option.header.uid = uuid;
if(!token && !option.headers.notVerifyToken){
debugger
if(!token && !option.header.notVerifyToken){
// 登录状态处理没有token直接跳转至登录
uni.redirectTo({
url: '/login'
});
return Promise.reject({message:'要先登录才能操作哦~'});
}
delete option.headers.notVerifyToken
delete option.header.notVerifyToken
option.header = {...option.header, Authorization:token};
if(option.header.repeat){

Loading…
Cancel
Save