[update] 收入合同详情存档记录、审核记录;收入合同来款状态查询修改
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
</a-col>
|
||||
<a-col :xl="7" :lg="8" :md="9" :sm="24">
|
||||
<a-form-item label="来款状态" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-checkbox-group v-model="queryParam.chargeStatus" :options="incomePaymentsStatus"/>
|
||||
<a-radio-group v-model="queryParam.chargeStatus" :options="incomePaymentsStatus" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xl="4" :lg="7" :md="8" :sm="24">
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
</a-row>
|
||||
</a-col>
|
||||
</template>
|
||||
<a-empty v-else></a-empty>
|
||||
</a-row>
|
||||
</div>
|
||||
<a-divider></a-divider>
|
||||
@@ -34,6 +35,7 @@
|
||||
</a-row>
|
||||
</a-col>
|
||||
</template>
|
||||
<a-empty v-else></a-empty>
|
||||
</a-row>
|
||||
</div>
|
||||
<a-divider></a-divider>
|
||||
@@ -53,6 +55,7 @@
|
||||
</a-row>
|
||||
</a-col>
|
||||
</template>
|
||||
<a-empty v-else></a-empty>
|
||||
</a-row>
|
||||
</div>
|
||||
<a-divider></a-divider>
|
||||
@@ -72,6 +75,7 @@
|
||||
</a-row>
|
||||
</a-col>
|
||||
</template>
|
||||
<a-empty v-else></a-empty>
|
||||
</a-row>
|
||||
</div>
|
||||
<a-divider></a-divider>
|
||||
@@ -130,6 +134,19 @@
|
||||
<div class="part-title">
|
||||
<div class="part-title-text">存档信息</div>
|
||||
</div>
|
||||
<div class="detail">
|
||||
<template v-if="detailData.listArchive && detailData.listArchive.length > 0">
|
||||
<div class="detail-item" v-for="(item, index) in detailData.listArchive"
|
||||
:key="index">
|
||||
<a-row>
|
||||
<a-col :sm="6" :xs="24">{{ item.createBy }}</a-col>
|
||||
<a-col :sm="6" :xs="24">{{ item.createTime }}</a-col>
|
||||
<a-col :sm="6" :xs="24">{{ item.contractStatus_dictText }}</a-col>
|
||||
</a-row>
|
||||
</div>
|
||||
</template>
|
||||
<a-empty v-else></a-empty>
|
||||
</div>
|
||||
</div>
|
||||
<a-divider></a-divider>
|
||||
|
||||
@@ -138,6 +155,20 @@
|
||||
<div class="part-title">
|
||||
<div class="part-title-text">审核记录</div>
|
||||
</div>
|
||||
<div class="detail">
|
||||
<template v-if="detailData.listAudit && detailData.listAudit.length > 0">
|
||||
<div class="detail-item" v-for="(item, index) in detailData.listAudit"
|
||||
:key="index">
|
||||
<a-row>
|
||||
<a-col :sm="6" :xs="24">{{ item.createBy }}</a-col>
|
||||
<a-col :sm="6" :xs="24">{{ item.createTime }}</a-col>
|
||||
<a-col :sm="6" :xs="24">{{ item.contractStatus_dictText }}</a-col>
|
||||
<a-col :sm="6" :xs="24">{{ item.explainRemarks }}</a-col>
|
||||
</a-row>
|
||||
</div>
|
||||
</template>
|
||||
<a-empty v-else></a-empty>
|
||||
</div>
|
||||
</div>
|
||||
</a-card>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user