|
|
@@ -8,30 +8,30 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
<el-table :data="auditbusList" border height="calc(100vh - 435px)" size="mini">
|
|
|
- <el-table-column label="操作" width="90" align="center" fixed v-if="Visiblebtn != '10'">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-popover trigger="hover" width="700" placement="right" @show="getopinonList(scope.row)">
|
|
|
- <el-table :data="opinionList">
|
|
|
- <el-table-column width="80" property="AuditStatus" label="状态">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ transferStr(scope.row.AuditStatus+'') }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column width="90" property="AuditorName" label="审批人"></el-table-column>
|
|
|
- <el-table-column min-width="100" property="Opinion" label="审批意见"></el-table-column>
|
|
|
- <el-table-column width="150" property="CreateOn" label="审批时间">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ jstimehandle(scope.row.CreateOn+'') }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column width="120" property="Remark" label="备注信息"></el-table-column>
|
|
|
- </el-table>
|
|
|
- <div slot="reference" class="name-wrapper">
|
|
|
- <el-button type="primary" plain size="mini" title="意见" @click="openDialog(scope.row)">意见</el-button>
|
|
|
- </div>
|
|
|
- </el-popover>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+ <!--<el-table-column label="操作" width="90" align="center" fixed v-if="Visiblebtn != '10'">-->
|
|
|
+ <!--<template slot-scope="scope">-->
|
|
|
+ <!--<el-popover trigger="hover" width="700" placement="right" @show="getopinonList(scope.row)">-->
|
|
|
+ <!--<el-table :data="opinionList">-->
|
|
|
+ <!--<el-table-column width="80" property="AuditStatus" label="状态">-->
|
|
|
+ <!--<template slot-scope="scope">-->
|
|
|
+ <!--{{ transferStr(scope.row.AuditStatus+'') }}-->
|
|
|
+ <!--</template>-->
|
|
|
+ <!--</el-table-column>-->
|
|
|
+ <!--<el-table-column width="90" property="AuditorName" label="审批人"></el-table-column>-->
|
|
|
+ <!--<el-table-column min-width="100" property="Opinion" label="审批意见"></el-table-column>-->
|
|
|
+ <!--<el-table-column width="150" property="CreateOn" label="审批时间">-->
|
|
|
+ <!--<template slot-scope="scope">-->
|
|
|
+ <!--{{ jstimehandle(scope.row.CreateOn+'') }}-->
|
|
|
+ <!--</template>-->
|
|
|
+ <!--</el-table-column>-->
|
|
|
+ <!--<el-table-column width="120" property="Remark" label="备注信息"></el-table-column>-->
|
|
|
+ <!--</el-table>-->
|
|
|
+ <!--<div slot="reference" class="name-wrapper">-->
|
|
|
+ <!--<el-button type="primary" plain size="mini" title="意见" @click="openDialog(scope.row)">意见</el-button>-->
|
|
|
+ <!--</div>-->
|
|
|
+ <!--</el-popover>-->
|
|
|
+ <!--</template>-->
|
|
|
+ <!--</el-table-column>-->
|
|
|
<el-table-column prop="Code" label="分类编码" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column prop="Name" label="分类名称" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column prop="CertSubStatus" label="状态" show-overflow-tooltip>
|
|
|
@@ -328,9 +328,9 @@
|
|
|
},
|
|
|
transferStr (val) {
|
|
|
if (val === '1') {
|
|
|
- return '合格'
|
|
|
+ return '同意'
|
|
|
} else if (val === '2') {
|
|
|
- return '不合格'
|
|
|
+ return '不同意'
|
|
|
} else {
|
|
|
return '----'
|
|
|
}
|