Commit 2e3a8a78 authored by 罗超's avatar 罗超

1

parent 943cbf9b
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<th width="7.5%">平台税金</th> <th width="7.5%">平台税金</th>
<th width="7.5%">待收金额</th> <th width="7.5%">待收金额</th>
<th width="8%">状态</th> <th width="8%">状态</th>
<th>操作</th> <th v-if="isEdit">操作</th>
</tr> </tr>
<tr> <tr>
<td v-show="dataList && dataList.length==0" :colspan="12" align="center">暂无数据</td> <td v-show="dataList && dataList.length==0" :colspan="12" align="center">暂无数据</td>
...@@ -155,13 +155,13 @@ ...@@ -155,13 +155,13 @@
<th>姓名</th> <th>姓名</th>
<th style="width:180px;">合同编号</th> <th style="width:180px;">合同编号</th>
<th>状态</th> <th>状态</th>
<th width="110px;">操作</th> <th width="110px;" v-if="isEdit">操作</th>
</tr> </tr>
<tr v-for="subItem in item.GuestList"> <tr v-for="subItem in item.GuestList">
<td>{{subItem.GuestName}}</td> <td>{{subItem.GuestName}}</td>
<td>{{subItem.ContractNo}}</td> <td>{{subItem.ContractNo}}</td>
<td>{{subItem.ContractStatusStr}}</td> <td>{{subItem.ContractStatusStr}}</td>
<td> <td v-if="isEdit">
<q-btn color="accent" v-if="subItem.ContractId==0" size="sm" class="q-mr-md" <q-btn color="accent" v-if="subItem.ContractId==0" size="sm" class="q-mr-md"
@click="takeContractTwo(item,subItem)" label="领取合同" /> @click="takeContractTwo(item,subItem)" label="领取合同" />
<q-btn color="accent" v-else size="sm" class="q-mr-md" <q-btn color="accent" v-else size="sm" class="q-mr-md"
...@@ -287,8 +287,10 @@ ...@@ -287,8 +287,10 @@
<div class="col"> <div class="col">
<div class="row" style="justify-content: space-between"> <div class="row" style="justify-content: space-between">
<span>收款单据:</span> <span>收款单据:</span>
<q-btn flat size="xs" icon="edit" v-if="AuthorityObj.isShowFinanceBtn" <q-btn flat size="xs" icon="edit" v-if="AuthorityObj.isShowFinanceBtn&&isEdit"
style="font-weight:400;color: #02C499" label="修改" @click="chanceType(item,1)" /> style="font-weight:400;color: #02C499" label="修改" @click="chanceType(item,1)" />
<q-btn flat size="xs" icon="edit" v-if="AuthorityObj.isShowFinanceBtn&&!isEdit"
style="font-weight:400;color: #02C499" label="修改" @click="" />
</div> </div>
<div class="row wrap"> <div class="row wrap">
<div class="finance row" v-for="(x,j) in item.FinanceList" :index="j" <div class="finance row" v-for="(x,j) in item.FinanceList" :index="j"
...@@ -300,8 +302,10 @@ ...@@ -300,8 +302,10 @@
</div> </div>
<div class="row" style="justify-content: space-between"> <div class="row" style="justify-content: space-between">
<span>付款单据:</span> <span>付款单据:</span>
<q-btn flat size="xs" icon="edit" v-if="AuthorityObj.isShowFinanceBtn" <q-btn flat size="xs" icon="edit" v-if="AuthorityObj.isShowFinanceBtn&&isEdit"
style="font-weight:400;color: #02C499" label="修改" @click="chanceType(item,2)" /> style="font-weight:400;color: #02C499" label="修改" @click="chanceType(item,2)" />
<q-btn flat size="xs" icon="edit" v-if="AuthorityObj.isShowFinanceBtn&&!isEdit"
style="font-weight:400;color: #02C499" label="修改" @click="" />
</div> </div>
<div class="row wrap"> <div class="row wrap">
<div class="finance row" v-for="(x,j) in item.RefundFinanceList" :index="j" <div class="finance row" v-for="(x,j) in item.RefundFinanceList" :index="j"
...@@ -351,7 +355,7 @@ ...@@ -351,7 +355,7 @@
<span style="color: #02C499">{{item.OrderStateName}}</span> <span style="color: #02C499">{{item.OrderStateName}}</span>
</div> </div>
</td> </td>
<td style="border:none;"> <td style="border:none;" v-if="isEdit">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400;display:none;" label="编辑" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400;display:none;" label="编辑"
@click="editOrder(item)" /> @click="editOrder(item)" />
<q-btn-dropdown flat size="xs" color="dark" label="更多" style="margin-left:10px;display:none;"> <q-btn-dropdown flat size="xs" color="dark" label="更多" style="margin-left:10px;display:none;">
......
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