ソースを参照

订单查询bug修复

master
梁超 5日前
コミット
8b44757233

+ 1
- 3
src/components/orderInfo/index.vue ファイルの表示

@@ -128,9 +128,7 @@ const props = defineProps({
infoData: {
//表单配置
type: Object,
default: function () {
return {};
},
default: {}
},
});


+ 3
- 4
src/views/onlineBusinessHall/orderManagement/index.vue ファイルの表示

@@ -1219,7 +1219,7 @@ const orderStatus = ref(null);
let content = ref("");
let form = ref();
let startTitle = ref("取消订单"); //取消订单 换货 退货
let visiinfoDatable: any = reactive({});
const visiinfoDatable = ref();
let activeName = null;
let sizeForm: any = ref({ orderInfoExt: {} }); //发货对象
const autdis: any = reactive({ auditStatus: "true", reason: "", reason1: "" }); //审核对象
@@ -1781,19 +1781,18 @@ function audit(idx: number, data: any, type) {
autdisButton.value = type;
offset.value = 150;
}
visiinfoDatable = {};
BaseService.postN("/managew/api/issue/orderQuery/detail", {
orderNo: data.orderNo,
}).then((res: any) => {
if (res && res.code === 0) {
try {
visiinfoDatable = res.data;
visiinfoDatable.value = res.data;
} catch (e) {
ElMessage.error("未知错误");
} //渲详情数据
if (visiinfoDatable) {
if (type !== 0) {
autdis.orderId = visiinfoDatable.orderInfo.orderNo;
// autdis.orderId = visiinfoDatable.orderInfo.orderNo;
visible.value = true;
} else {
CompleteTeturnDialog.value = true;

読み込み中…
キャンセル
保存