【bug】 会议上传凭证修改
This commit is contained in:
@@ -253,8 +253,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<span slot="action" slot-scope="text, record" class="action-span-cell">
|
<span slot="action" slot-scope="text, record" class="action-span-cell">
|
||||||
<!-- 只有缴费方式为汇款并且上传了汇款凭证的的才会有审核按钮-->
|
<!-- 只有缴费方式为汇款并且上传了汇款凭证的的才会有审核按钮 审核通过后不显示 审核凭证按钮 -->
|
||||||
<a @click="handleAudit(record)" v-if="(record.payMode === 1 || record.payMode === 2 ) && record.paymentRecord"
|
<a @click="handleAudit(record)" v-if="(record.payMode === 1 || record.payMode === 2 ) && record.paymentRecord && record.checkResult !== 1"
|
||||||
v-has:[authorCode.auditRecord]="'attendance:auditCredentials'">审核凭证</a>
|
v-has:[authorCode.auditRecord]="'attendance:auditCredentials'">审核凭证</a>
|
||||||
<!-- 只有工作组会议与分标委会议才有审核报名信息-->
|
<!-- 只有工作组会议与分标委会议才有审核报名信息-->
|
||||||
<a @click="handleAuditSignUp(record)"
|
<a @click="handleAuditSignUp(record)"
|
||||||
|
|||||||
@@ -49,15 +49,18 @@
|
|||||||
<label>需要发票:</label>
|
<label>需要发票:</label>
|
||||||
<span>{{model.needInvoice_dictText}}</span></a-col>
|
<span>{{model.needInvoice_dictText}}</span></a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24" style="margin-top: 10px">
|
||||||
<a-col :span="3">
|
<a-col :span="3">
|
||||||
<label>缴费凭证:</label>
|
<label class="color-999">缴费凭证:</label>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="10">
|
<a-col :span="9">
|
||||||
<j-image-upload disabled :return-id="true" v-model="model.paymentRecord"></j-image-upload>
|
<j-image-upload disabled :return-id="true" v-model="model.paymentRecord"></j-image-upload>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
<!-- 缴费上方式为线上的 显示 -->
|
||||||
|
<a-col :span="12" v-if="model.payMode === 2 ">
|
||||||
|
<label class="color-999">订单后四位:</label>
|
||||||
|
<span class="color-black">{{model.orderCode}}</span></a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
|
||||||
<h3>审核</h3>
|
<h3>审核</h3>
|
||||||
@@ -309,4 +312,11 @@ export default {
|
|||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.color-999 {
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
.color-black {
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user