|
@@ -19,18 +19,19 @@
|
|
|
</router-link>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <span style="font-weight: bold;">团队名称:</span>
|
|
|
- {{ delegationInfo.teamName }}
|
|
|
- <span style="font-weight: bold;">客户:</span>
|
|
|
- {{ delegationInfo.clientName }}
|
|
|
- <span style="font-weight: bold;">出访国家:</span>
|
|
|
- {{ delegationInfo.visitCountry }}
|
|
|
- <span style="font-weight: bold;">起止日期:</span>
|
|
|
- {{ delegationInfo.visitStartDate }}—{{ delegationInfo.visitEndDate }}
|
|
|
- <span style="font-weight: bold;">天数/人数:</span>
|
|
|
- {{ delegationInfo.visitDays }}天/{{ delegationInfo.visitPNumber }}人
|
|
|
+ <div class="communal-box-title">
|
|
|
+ <span style="font-weight: bold;">团队名称:</span>
|
|
|
+ {{ delegationInfo.teamName }}
|
|
|
+ <span style="font-weight: bold;">客户:</span>
|
|
|
+ {{ delegationInfo.clientName }}
|
|
|
+ <span style="font-weight: bold;">出访国家:</span>
|
|
|
+ {{ delegationInfo.visitCountry }}
|
|
|
+ <span style="font-weight: bold;">起止日期:</span>
|
|
|
+ {{ delegationInfo.visitStartDate }}—{{ delegationInfo.visitEndDate }}
|
|
|
+ <span style="font-weight: bold;">天数/人数:</span>
|
|
|
+ {{ delegationInfo.visitDays }}天/{{ delegationInfo.visitPNumber }}人
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <hr style='background-color:#5555; height:1px; border:none;' />
|
|
|
<template>
|
|
|
<el-table :data="tableDatas.slice((currentPage - 1) * pageSize, currentPage * pageSize)" border
|
|
|
style="width: 100%" v-loading="loading" element-loading-text="拼命加载中...">
|
|
@@ -235,6 +236,7 @@ export default {
|
|
|
padding: 10px;
|
|
|
box-shadow: 0 0 5px #0005;
|
|
|
border-radius: 10px;
|
|
|
+ min-height: 830px;
|
|
|
}
|
|
|
|
|
|
.communal-title {
|
|
@@ -256,4 +258,12 @@ export default {
|
|
|
margin-left: 10px;
|
|
|
padding: 8px 20px;
|
|
|
}
|
|
|
+.communal-box-title{
|
|
|
+ margin: 10px 0;
|
|
|
+}
|
|
|
+.communal-box-title span{
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #555;
|
|
|
+}
|
|
|
</style>
|