Files
yshop-pro-uniapp/api/activity/afterVerification.js

18 lines
378 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @name: afterVerification
* @author: kahu4
* @date: 2024-01-22 10:30
* @description核销相关api
* @update: 2024-01-22 10:30
* */
import { requestUtil } from "@/utils/request";
/**
* 订单核销
* @param data
* @param data.writeOffCode 核销码
* @return {*}
*/
export const cancelAfterVerification = (data) => requestUtil.post(`/order/writeOff`, data)