Commit 1cddc70f by lizhi

bugfix

parent 0a2f2ae2
...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,7 @@
v-model="goOnForm.userCourseList[index].csoCourseCode" v-model="goOnForm.userCourseList[index].csoCourseCode"
clearable clearable
:disabled=" :disabled="
goOnForm.userCourseList[index].courseCode || goOnForm.userCourseList[index].ownCourseCode ||
goOnForm.userCourseList[index].auditCourseCode goOnForm.userCourseList[index].auditCourseCode
? true ? true
: false : false
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
<el-input <el-input
v-model="goOnForm.userCourseList[index].csoName" v-model="goOnForm.userCourseList[index].csoName"
:disabled=" :disabled="
goOnForm.userCourseList[index].courseCode || goOnForm.userCourseList[index].ownCourseCode ||
goOnForm.userCourseList[index].auditCourseCode goOnForm.userCourseList[index].auditCourseCode
? true ? true
: false : false
...@@ -198,7 +198,7 @@ ...@@ -198,7 +198,7 @@
<el-col :span="8"> <el-col :span="8">
<el-form-item label="所在学校课程代码" label-width="150px"> <el-form-item label="所在学校课程代码" label-width="150px">
<el-input <el-input
v-model="goOnForm.userCourseList[index].courseCode" v-model="goOnForm.userCourseList[index].ownCourseCode"
:disabled=" :disabled="
goOnForm.userCourseList[index].csoCourseCode || goOnForm.userCourseList[index].csoCourseCode ||
goOnForm.userCourseList[index].auditCourseCode goOnForm.userCourseList[index].auditCourseCode
...@@ -248,8 +248,8 @@ ...@@ -248,8 +248,8 @@
<el-input <el-input
v-model="goOnForm.userCourseList[index].auditCourseCode" v-model="goOnForm.userCourseList[index].auditCourseCode"
:disabled=" :disabled="
goOnForm.userCourseList[index].courseCode || goOnForm.userCourseList[index].csoCourseCode ||
goOnForm.userCourseList[index].csoCourseCode goOnForm.userCourseList[index].ownCourseCode
? true ? true
: false : false
" "
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
v-model="goOnForm.userCourseList[index].auditCourseName" v-model="goOnForm.userCourseList[index].auditCourseName"
:disabled=" :disabled="
goOnForm.userCourseList[index].csoCourseCode || goOnForm.userCourseList[index].csoCourseCode ||
goOnForm.userCourseList[index].courseCode goOnForm.userCourseList[index].ownCourseCode
? true ? true
: false : false
" "
...@@ -509,7 +509,7 @@ ...@@ -509,7 +509,7 @@
<el-select <el-select
v-model="list.userCourseList[index].csoCourseCode" v-model="list.userCourseList[index].csoCourseCode"
:disabled=" :disabled="
list.userCourseList[index].courseCode || list.userCourseList[index].ownCourseCode ||
list.userCourseList[index].auditCourseCode list.userCourseList[index].auditCourseCode
? true ? true
: false : false
...@@ -540,7 +540,7 @@ ...@@ -540,7 +540,7 @@
<el-input <el-input
v-model="list.userCourseList[index].csoName" v-model="list.userCourseList[index].csoName"
:disabled=" :disabled="
list.userCourseList[index].courseCode || list.userCourseList[index].ownCourseCode ||
list.userCourseList[index].auditCourseCode list.userCourseList[index].auditCourseCode
? true ? true
: false : false
...@@ -596,7 +596,7 @@ ...@@ -596,7 +596,7 @@
</el-form-item> --> </el-form-item> -->
<el-form-item label="所在学校课程代码" label-width="150px"> <el-form-item label="所在学校课程代码" label-width="150px">
<el-input <el-input
v-model="list.userCourseList[index].courseCode" v-model="list.userCourseList[index].ownCourseCode"
:disabled=" :disabled="
list.userCourseList[index].csoCourseCode || list.userCourseList[index].csoCourseCode ||
list.userCourseList[index].auditCourseCode list.userCourseList[index].auditCourseCode
...@@ -646,7 +646,7 @@ ...@@ -646,7 +646,7 @@
v-model="list.userCourseList[index].auditCourseCode" v-model="list.userCourseList[index].auditCourseCode"
:disabled=" :disabled="
list.userCourseList[index].csoCourseCode || list.userCourseList[index].csoCourseCode ||
list.userCourseList[index].courseCode list.userCourseList[index].ownCourseCode
? true ? true
: false : false
" "
...@@ -661,7 +661,7 @@ ...@@ -661,7 +661,7 @@
v-model="list.userCourseList[index].auditCourseName" v-model="list.userCourseList[index].auditCourseName"
:disabled=" :disabled="
list.userCourseList[index].csoCourseCode || list.userCourseList[index].csoCourseCode ||
list.userCourseList[index].courseCode list.userCourseList[index].ownCourseCode
? true ? true
: false : false
" "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment