mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 19:06:43 +08:00
改转审文字
This commit is contained in:
@@ -73,7 +73,11 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="创建人" prop="sysCreateBy"></el-table-column>
|
||||
<el-table-column label="创建时间" prop="sysCreateTime" width="200px" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="备注" prop="auditInfo" width="250px" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="邀请人" prop="auditInfo" width="150px">
|
||||
<template slot-scope="scope">
|
||||
{{remarksInterception(scope.row.auditInfo)}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="100px" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button @click="toExamine(scope.row)" type="text" >审核</el-button>
|
||||
@@ -172,10 +176,10 @@
|
||||
<div style="border-top: 1px solid #eee; background-color: #eee; padding: 10px 20px;margin-top: 10px;">
|
||||
<div style="line-height: 36px;">
|
||||
<div style="display:flex;">
|
||||
<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 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>{{audit.auditRemark}}</p>
|
||||
<p><span class="audit-text">邀请说明:</span>{{audit.auditRemark}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
@@ -300,6 +304,15 @@ export default {
|
||||
this.loadSysTypes();
|
||||
},
|
||||
methods: {
|
||||
remarksInterception(info){
|
||||
let name = '';
|
||||
if(info == '' || info == null || info == undefined) {
|
||||
name = '--';
|
||||
} else {
|
||||
name = info.split('请')[0];
|
||||
}
|
||||
return name;
|
||||
},
|
||||
getseatch(){
|
||||
this.params.pageIndex= 1;
|
||||
this.searchData();
|
||||
|
||||
@@ -75,10 +75,10 @@
|
||||
</el-table-column>
|
||||
<el-table-column label="创建人" prop="sysCreateBy"></el-table-column>
|
||||
<el-table-column label="创建时间" prop="sysCreateTime" width="200px" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="操作" width="150px" fixed="right">
|
||||
<el-table-column label="操作" width="180px" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button @click="toExamine(scope.row)" type="text">审核</el-button>
|
||||
<el-button @click="toReferral(scope.row)" type="text">转审</el-button>
|
||||
<el-button @click="toReferral(scope.row)" type="text">邀请审核</el-button>
|
||||
<el-button @click="toPreview(scope.row)" type="text">预览</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
@@ -199,7 +199,7 @@
|
||||
<span v-else>请先搜索教师,再选择</span>
|
||||
</div>
|
||||
<div style="padding-left: 20px;display:flex;">
|
||||
<div style="width:84px;font-size: 14px;color: #606266;font-weight: 700;text-align: right;margin-right: 12px;margin-top: 10px;">说明</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