Commit dbd782c8 authored by 耿迪迪's avatar 耿迪迪

申请变更审批培训资料添加 gengdidi

parent 6544146b
......@@ -84,6 +84,18 @@
<span>{{ parseTime(scope.row.enterTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="培训资料" align="center" prop="trainMaterial" width="150px">
<template slot-scope="scope">
<span
class="dbtn"
@click="checkFile(scope.row.trainMaterial)"
v-if="scope.row.trainMaterial != null && scope.row.trainMaterial!=''"
>
<i class="el-icon el-icon-view"></i>查看/下载
</span>
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
......@@ -590,6 +602,22 @@ export default {
this.queryParams.enterTimeBegin = picker[0];
this.queryParams.enterTimeEnd = picker[1];
},
checkFile(url) {
window.open(url,'_blank');
},
}
};
</script>
<style lang="scss">
.dbtn {
display: inline-block;
line-height: normal;
padding-left: 2px;
padding-right: 2px;
cursor: pointer;
border-radius: 3px;
border-style: solid;
border-width: 0;
color: rgb(48, 180, 107);
}
</style>
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