Commit 6a1eeb16 authored by 黄奎's avatar 黄奎

页面修改

parent a7446bfd
...@@ -59,7 +59,11 @@ ...@@ -59,7 +59,11 @@
<template v-slot:body-cell-IsRenew="props"> <template v-slot:body-cell-IsRenew="props">
<q-td auto-width :props="props"> <q-td auto-width :props="props">
<span style="color:red;" v-if="props.row.IsRenew==0"></span> <span style="color:red;" v-if="props.row.IsRenew==0"></span>
<span style="color:green;" v-if="props.row.IsRenew==1"></span> <span style="color:green;" v-if="props.row.IsRenew==1">
<q-tooltip :offset="[10, 10]">
原订单:{{props.row.RenewOrderId}}
</q-tooltip>
</span>
</q-td> </q-td>
</template> </template>
<template v-slot:body-cell-GuestName="props"> <template v-slot:body-cell-GuestName="props">
...@@ -162,7 +166,7 @@ ...@@ -162,7 +166,7 @@
}, },
{ {
name: 'IsRenew', name: 'IsRenew',
label: '续费课程', label: '续费订单',
field: 'IsRenew', field: 'IsRenew',
align: 'left' align: 'left'
} }
......
...@@ -62,6 +62,9 @@ ...@@ -62,6 +62,9 @@
<td :rowspan="3" style="text-align: left"> <td :rowspan="3" style="text-align: left">
<div class="order_OfferId" @click="goOrderdetails(item,1)">{{item.OrderId}} <div class="order_OfferId" @click="goOrderdetails(item,1)">{{item.OrderId}}
</div> </div>
<div class="order_OfferId" v-if="item.RenewOrderId&&item.RenewOrderId>0">
原订单:{{item.RenewOrderId}}
</div>
<div>{{item.EnterName}}</div> <div>{{item.EnterName}}</div>
<div style="margin-top: 10px">{{item.CreateTime}}</div> <div style="margin-top: 10px">{{item.CreateTime}}</div>
<template v-if="AuthorityObj.isShowName"> <template v-if="AuthorityObj.isShowName">
...@@ -316,7 +319,8 @@ ...@@ -316,7 +319,8 @@
</template> </template>
<template v-else> <template v-else>
<q-btn color="secondary" size="sm" @click="goContractMannage(subItem)" label="查看合同" /> <q-btn color="secondary" size="sm" @click="goContractMannage(subItem)" label="查看合同" />
<q-btn style="margin-left:5px;" v-if="subItem.ContractStatus==0" color="purple" size="sm" @click="goContractAudit(subItem)" label="提交审核" /> <q-btn style="margin-left:5px;" v-if="subItem.ContractStatus==0" color="purple" size="sm"
@click="goContractAudit(subItem)" label="提交审核" />
</template> </template>
</td> </td>
</tr> </tr>
...@@ -1337,7 +1341,7 @@ ...@@ -1337,7 +1341,7 @@
}); });
}, },
//合同提交审核 //合同提交审核
goContractAudit(subItem){ goContractAudit(subItem) {
let msg = { let msg = {
ContractId: subItem.ContractId, ContractId: subItem.ContractId,
State: 1 State: 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment