改转审文字

This commit is contained in:
zhaofang
2022-06-10 19:17:32 +08:00
parent afa04f6b72
commit 03fbd58434
2 changed files with 20 additions and 7 deletions

View File

@@ -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();

View File

@@ -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>