|
@@ -17,7 +17,7 @@
|
|
|
<descriptions-item label="申请时间:">
|
|
|
{{ baseInfo.createTime | formatTimer }}</descriptions-item
|
|
|
>
|
|
|
- <descriptions-item label="开团时间:">
|
|
|
+ <descriptions-item label="开团时间:">
|
|
|
{{ baseInfo.billStartDate | formatTimer }}</descriptions-item
|
|
|
>
|
|
|
<descriptions-item label="收费模式:">
|
|
@@ -33,7 +33,9 @@
|
|
|
>{{ baseInfo.schoolName }}
|
|
|
</descriptions-item>
|
|
|
<descriptions-item label="衔接老师:">
|
|
|
- {{ baseInfo.transactionTeacherName }}/{{baseInfo.transactionTeacherPhone}}</descriptions-item
|
|
|
+ {{ baseInfo.transactionTeacherName }}/{{
|
|
|
+ baseInfo.transactionTeacherPhone
|
|
|
+ }}</descriptions-item
|
|
|
>
|
|
|
<descriptions-item label="乐队指导:"
|
|
|
>{{ baseInfo.directorUserName }}
|
|
@@ -49,19 +51,25 @@
|
|
|
</div>
|
|
|
</el-alert>
|
|
|
|
|
|
- <descriptions :column="3">
|
|
|
- <template
|
|
|
- v-for="(item, index) in baseInfo.cooperationOrganLinkmanList"
|
|
|
- >
|
|
|
+ <descriptions
|
|
|
+ :column="3"
|
|
|
+ v-if="baseInfo.cooperationOrganLinkmanList.length > 0"
|
|
|
+ >
|
|
|
+ <template v-for="(item, index) in baseInfo.cooperationOrganLinkmanList">
|
|
|
<descriptions-item label="联系人:" :key="index">
|
|
|
{{ item.linkman }}</descriptions-item
|
|
|
>
|
|
|
- <descriptions-item label="职位:" :key="index"> {{ item.job }}</descriptions-item>
|
|
|
+ <descriptions-item label="职位:" :key="index">
|
|
|
+ {{ item.job }}</descriptions-item
|
|
|
+ >
|
|
|
<descriptions-item label="手机号:" :key="index">
|
|
|
{{ item.mobileNo }}</descriptions-item
|
|
|
>
|
|
|
</template>
|
|
|
</descriptions>
|
|
|
+ <div v-else>
|
|
|
+ <empty desc="暂无联系人" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -77,7 +85,7 @@ export default {
|
|
|
chargeTypeName: "",
|
|
|
cooperationOrganName: "",
|
|
|
transactionTeacherName: "",
|
|
|
- transactionTeacherPhone:"",
|
|
|
+ transactionTeacherPhone: "",
|
|
|
directorUserName: "",
|
|
|
educationalTeacherName: "",
|
|
|
cooperationOrganLinkmanList: [],
|