Commit 91a8d1b4 authored by 黄奎's avatar 黄奎

页面修改

parent cf1d72ff
......@@ -2165,12 +2165,16 @@
" v-for="(id, i) in item.tipFrId" :key="i">{{ id }}</span>
</span>
</div>
<div v-if="item.otherContractList&&(qjGroupId == userInfo.RB_Group_id || F_ContractManagement)">
<span class="GO_Contract"
@click="goSingleContract(item)">{{item.otherContractList.length==0?"单项合同":"查看单项合同"}}</span>
</div>
<div v-if="
item.contractNum.length == 0 &&
(qjGroupId == userInfo.RB_Group_id || F_ContractManagement)
">
<span class="GO_Contract" @click="goContract(item, {})">出境合同</span>
<span class="GO_Contract" @click="goSingleContract(item)">单项合同</span>
</div>
<div v-else>
<template v-if="item.contractNum && item.contractNum.length > 0">
......
......@@ -2383,9 +2383,9 @@
@click="goContract(item,{})">
出境合同
</div>
<div v-if="item.contractNum && item.contractNum.length==0 &&item.isOwn==1" class="GO_Contract"
<div v-if="item.otherContractList &&item.isOwn==1" class="GO_Contract"
@click="goSingleContract(item)">
单项合同
{{item.otherContractList.length==0?"单项合同":"查看单项合同"}}
</div>
<div>
<template v-if="item.contractNum && item.contractNum.length > 0">
......@@ -5505,6 +5505,7 @@
"sellorder_post_GetTCNUMOrderList",
this.tuanMsg,
(res) => {
console.log("sellorder_post_GetTCNUMOrderList", res.data);
if (res.data.resultCode == 1) {
this.loading = false;
this.total = res.data.data.count;
......
......@@ -1687,14 +1687,15 @@
<span style="display: block">{{$t('salesModule.RoomInfo')}}:{{item.orderGuestHouseStr}}</span>
<span v-if="item.tipMoney" style="color:red">({{$t('fnc.xiaofei')}}:{{item.tipMoney}})</span>
<div v-if=" item.contractNum.length == 0">
<div v-if="item.otherContractList">
<span class="GO_Contract" style="color:blue;cursor:pointer;" @click="goSingleContract(item)">
{{item.otherContractList.length==0?"单项合同":"查看单项合同"}}
</span>
</div>
<div v-if="item.contractNum.length == 0">
<span class="GO_Contract" style="color:blue;cursor:pointer;" @click="goContract(item, {})">
出境合同
</span>
<span class="GO_Contract" style="color:blue;cursor:pointer;" @click="goSingleContract(item)">
单项合同
</span>
</div>
<div v-else>
<template v-if="item.contractNum && item.contractNum.length > 0">
......
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