|
@@ -32,7 +32,7 @@
|
|
|
</div>
|
|
|
<!-- <div class="title">上传证书</div> -->
|
|
|
<!-- <van-field readonly clickable name="nation" label="上次考级级别" placeholder="请选择级别" is-link /> -->
|
|
|
- <van-field readonly clearable name="code" label="上次专业证书" >
|
|
|
+ <van-field readonly clearable name="code" label="上传专业证书" >
|
|
|
<template #input>
|
|
|
<van-uploader
|
|
|
name="certificate"
|
|
@@ -47,7 +47,7 @@
|
|
|
<div class="title">乐理知识</div>
|
|
|
<van-field required @click="onGetSheetList('examMusicTheory')" readonly clickable name="nation" label="专业级别" v-model="formText.examMusicTheoryName" placeholder="请选择专业级别" is-link />
|
|
|
<!-- <van-field readonly clickable name="nation" label="上次考级级别" placeholder="请选择" is-link /> -->
|
|
|
- <van-field readonly :required="form.examMusicTheoryId == 999 ? true : false" clearable name="code" label="上次乐理证书" >
|
|
|
+ <van-field readonly :required="form.examMusicTheoryId == 999 ? true : false" clearable name="code" label="上传乐理证书" >
|
|
|
<template #input>
|
|
|
<van-uploader
|
|
|
name="certificate2"
|
|
@@ -699,7 +699,7 @@ export default {
|
|
|
}
|
|
|
const nameAuthor = songUpload.name + (songUpload.author ? "-" + songUpload.author : "")
|
|
|
if(songUpload.indexName == "practiceNum") {
|
|
|
- if(this.practiceUpload[songUpload.index] && this.practiceUpload[songUpload.index].url) {
|
|
|
+ if(this.practiceUpload[songUpload.index] && this.practiceUpload[songUpload.index][0].url) {
|
|
|
this.practiceSelect[songUpload.index] = nameAuthor
|
|
|
this.practiceSelectUploadList[songUpload.index] = JSON.parse(JSON.stringify(songUpload))
|
|
|
} else {
|
|
@@ -707,7 +707,7 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
} else if(songUpload.indexName == "performNum") {
|
|
|
- if(this.performNumUpload[songUpload.index] && this.performNumUpload[songUpload.index].url) {
|
|
|
+ if(this.performNumUpload[songUpload.index] && this.performNumUpload[songUpload.index][0].url) {
|
|
|
this.performNumSelect[songUpload.index] = nameAuthor
|
|
|
this.performNumSelectUploadList[songUpload.index] = JSON.parse(JSON.stringify(songUpload))
|
|
|
} else {
|