Merge branch 'dev' of http://git.gxwebsoft.com/gxwebsoft/yunxinwei-vue into dev
This commit is contained in:
@@ -23,6 +23,7 @@ export interface Profit {
|
|||||||
orderRealName?: string;//用户实名
|
orderRealName?: string;//用户实名
|
||||||
createTime?: string;
|
createTime?: string;
|
||||||
updateTime?: string;
|
updateTime?: string;
|
||||||
|
relationOrderNo?:string;//关联订单号
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -120,9 +120,6 @@ import {addOrderPay} from "@/api/order";
|
|||||||
form.expirationTime = d2 + ' 23:59:59';
|
form.expirationTime = d2 + ' 23:59:59';
|
||||||
form.orderNo=props.data?.orderNo;
|
form.orderNo=props.data?.orderNo;
|
||||||
form.rentOrderId=props.data?.rentOrderId;
|
form.rentOrderId=props.data?.rentOrderId;
|
||||||
|
|
||||||
validate()
|
|
||||||
.then(() => {
|
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
// 转字符串
|
// 转字符串
|
||||||
addOrderPay(form)
|
addOrderPay(form)
|
||||||
@@ -136,8 +133,6 @@ import {addOrderPay} from "@/api/order";
|
|||||||
loading.value = false;
|
loading.value = false;
|
||||||
message.error(e.message);
|
message.error(e.message);
|
||||||
});
|
});
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
|||||||
@@ -150,7 +150,6 @@
|
|||||||
title: '用户实名',
|
title: '用户实名',
|
||||||
dataIndex: 'orderRealName',
|
dataIndex: 'orderRealName',
|
||||||
key: 'orderRealName',
|
key: 'orderRealName',
|
||||||
hideInTable:true //FIXME 先隐藏起来,用户是想将orderUserName改成实名,但是实名可能为空
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '门店',
|
title: '门店',
|
||||||
@@ -163,9 +162,9 @@
|
|||||||
key: 'sceneDis'
|
key: 'sceneDis'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '订单号',
|
title: '关联订单号',
|
||||||
dataIndex: 'orderNo',
|
dataIndex: 'relationOrderNo',
|
||||||
key: 'orderNo'
|
key: 'relationOrderNo'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '金额',
|
title: '金额',
|
||||||
|
|||||||
Reference in New Issue
Block a user