mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 10:56:44 +08:00
转审修改
This commit is contained in:
@@ -170,12 +170,12 @@
|
||||
</div>
|
||||
</div>
|
||||
<div style="border-top: 1px solid #eee; background-color: #eee; padding: 10px 20px;margin-top: 10px;">
|
||||
<div v-for="item in examin.audit" :key="item.id" style="line-height: 36px;">
|
||||
<div style="line-height: 36px;">
|
||||
<div style="display:flex;">
|
||||
<div style="flex:1;"><span class="audit-text">转审人:</span>{{item.sysCreateBy}}</div>
|
||||
<div style="flex:1;"><span class="audit-text">转审时间:</span>{{item.sysCreateTime}}</div>
|
||||
<div style="flex:1;"><span class="audit-text">转审人:</span>{{audit.sysCreateBy}}</div>
|
||||
<div style="flex:1;"><span class="audit-text">转审时间:</span>{{audit.sysCreateTime}}</div>
|
||||
</div>
|
||||
<p><span class="audit-text">转审说明:</span>{{item.auditRemark}}</p>
|
||||
<p><span class="audit-text">转审说明:</span>{{audit.auditRemark}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
@@ -221,11 +221,11 @@ export default {
|
||||
sysTypeListMap:[],
|
||||
resOwnerListMap:[],
|
||||
showDetails:false,
|
||||
audit:{},
|
||||
examin:{
|
||||
detailType: '',
|
||||
examineId: '',
|
||||
examineName: '',
|
||||
audit:[],
|
||||
},
|
||||
paperJson:{items:[]},
|
||||
courseType: courseType,
|
||||
@@ -423,7 +423,7 @@ export default {
|
||||
window.open(this.webBaseUrl+routeData.href, '_blank');
|
||||
},
|
||||
toExamine(row) {
|
||||
console.log(row,'row');
|
||||
this.audit = {};
|
||||
this.examin.detailType = row.type;
|
||||
this.examin.examineId = row.id;
|
||||
this.examin.examineName = row.name;
|
||||
@@ -431,7 +431,7 @@ export default {
|
||||
this.dialogVisible = true;
|
||||
apiCourse.getAuditInfo({courseId:row.id}).then(res=>{
|
||||
if(res.status == 200) {
|
||||
this.examin.audit = res.result;
|
||||
this.audit = res.result[0];
|
||||
} else {
|
||||
this.$message.error(res.message);
|
||||
}
|
||||
|
||||
@@ -192,16 +192,14 @@
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div style="padding: 0px 20px;height:60px;overflow-y: auto;margin-bottom: 20px;">
|
||||
<!-- <el-checkbox-group v-model="selectedTeacher">
|
||||
<el-checkbox v-for="(u,uidx) in teacherInfo.list" :key="uidx" :label="u.aid">{{u.name+'('+u.code+')'}}</el-checkbox>
|
||||
</el-checkbox-group> -->
|
||||
<el-radio-group v-model="selectedTeacher">
|
||||
<div style="padding: 0px 20px 0 100px;height:60px;overflow-y: auto;margin-bottom: 20px;">
|
||||
<el-radio-group v-model="selectedTeacher" v-if="teacherInfo.list.length > 0">
|
||||
<el-radio v-for="(u,uidx) in teacherInfo.list" :key="uidx" :label="u.aid">{{u.name+'('+u.code+')'}}</el-radio>
|
||||
</el-radio-group>
|
||||
<span v-else>请先搜索教师,再选择</span>
|
||||
</div>
|
||||
<div style="padding-left: 20px;display:flex;">
|
||||
<div style="width:100px;font-size: 14px;color: #606266;font-weight: 700;">说明</div>
|
||||
<div style="width:84px;font-size: 14px;color: #606266;font-weight: 700;text-align: right;margin-right: 12px;margin-top: 10px;">说明</div>
|
||||
<el-input type="textarea" :rows="2" placeholder="请输入内容" v-model="referralData.remark" maxlength="200" show-word-limit></el-input>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user