mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-22 17:26:46 +08:00
讲师管理bug
This commit is contained in:
@@ -125,12 +125,12 @@
|
||||
<span class="line"></span>
|
||||
<span>讲师费用详情</span>
|
||||
<a-descriptions bordered :column="2" :contentStyle="rowCenter" :labelStyle="rowCenter">
|
||||
<a-descriptions-item label="审批编号">{{formParam?.teacherName}}</a-descriptions-item>
|
||||
<a-descriptions-item label="培训发生组织">{{formParam?.trainOrgName}}</a-descriptions-item>
|
||||
<a-descriptions-item v-if="activeKey==2" label="汇总周期" >{{formParam?.summaryDate}}</a-descriptions-item>
|
||||
<a-descriptions-item label="提交时间">{{formParam?.summaryTime}}</a-descriptions-item>
|
||||
<a-descriptions-item label="汇总金额">{{formParam?.summaryTotal}}</a-descriptions-item>
|
||||
<a-descriptions-item label="状态">{{{0:'待确认' ,1:'待提交' ,2:'审核中', 3:'审核通过', 4:'拒绝',5:'撤回'}[formParam?.status]}}</a-descriptions-item>
|
||||
<a-descriptions-item label="审批编号">{{formParam?.teacherName||'-'}}</a-descriptions-item>
|
||||
<a-descriptions-item label="培训发生组织">{{formParam?.trainOrgName||'-'}}</a-descriptions-item>
|
||||
<a-descriptions-item v-if="activeKey==2" label="汇总周期" >{{formParam?.summaryDate||'-'}}</a-descriptions-item>
|
||||
<a-descriptions-item label="提交时间">{{formParam?.summaryTime||'-'}}</a-descriptions-item>
|
||||
<a-descriptions-item label="汇总金额">{{formParam?.summaryTotal||'-'}}</a-descriptions-item>
|
||||
<a-descriptions-item label="状态">{{{0:'待确认' ,1:'待提交' ,2:'审核中', 3:'已完成', 4:'拒绝',5:'待提交'}[formParam?.status]}}</a-descriptions-item>
|
||||
</a-descriptions>
|
||||
<!-- <span>审批详情</span> -->
|
||||
<span class="line" style="margin-top:12px;"></span>
|
||||
@@ -464,7 +464,7 @@
|
||||
case 4:
|
||||
return "审核拒绝"
|
||||
case 5:
|
||||
return "撤回"
|
||||
return "待提交"
|
||||
default:
|
||||
return "-"
|
||||
}
|
||||
@@ -687,6 +687,7 @@
|
||||
}
|
||||
const tableDataExamine = ref([])
|
||||
const gettableDataExamine = () => {
|
||||
state.examinetableLoading = true
|
||||
queryExpnseByBillId({
|
||||
billId : state.id,
|
||||
pageNo: state.tableDataParams.pageNo,
|
||||
@@ -697,7 +698,11 @@
|
||||
}).then((res) => {
|
||||
tableDataExamine.value = res.data.data.records
|
||||
state.tableDataParams.total = Number(res.data.data.total);
|
||||
})
|
||||
state.examinetableLoading = false
|
||||
}).catch(err=>{
|
||||
state.examinetableLoading = false
|
||||
message.error(err.data.msg)
|
||||
})
|
||||
};
|
||||
const pagination = computed(() => ({
|
||||
total: state.tableDataParams.total,
|
||||
|
||||
Reference in New Issue
Block a user