|
@@ -81,19 +81,21 @@
|
|
style="margin-left:5px;"
|
|
style="margin-left:5px;"
|
|
>
|
|
>
|
|
<el-button
|
|
<el-button
|
|
- type="primary"
|
|
+ type="success"
|
|
size="small"
|
|
size="small"
|
|
:disabled="batchAuditBtnDisabled"
|
|
:disabled="batchAuditBtnDisabled"
|
|
@click="batchAudit('pass')"
|
|
@click="batchAudit('pass')"
|
|
- >通过</el-button
|
|
+ icon="el-icon-success"
|
|
- >
|
|
+ >通 过
|
|
|
|
+ </el-button>
|
|
<el-button
|
|
<el-button
|
|
- type="primary"
|
|
+ type="danger"
|
|
size="small"
|
|
size="small"
|
|
:disabled="batchAuditBtnDisabled"
|
|
:disabled="batchAuditBtnDisabled"
|
|
@click="batchAudit('nopass')"
|
|
@click="batchAudit('nopass')"
|
|
- >不通过</el-button
|
|
+ icon="el-icon-error"
|
|
- >
|
|
+ >不通过
|
|
|
|
+ </el-button>
|
|
</el-button-group>
|
|
</el-button-group>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -188,25 +190,33 @@
|
|
label="操作"
|
|
label="操作"
|
|
v-if="currentPagePrivileges.PENDING_OPERATE"
|
|
v-if="currentPagePrivileges.PENDING_OPERATE"
|
|
fixed="right"
|
|
fixed="right"
|
|
- width="200"
|
|
+ width="120"
|
|
>
|
|
>
|
|
<div slot-scope="scope">
|
|
<div slot-scope="scope">
|
|
- <el-button
|
|
+ <el-row class="operateRow">
|
|
- v-if="scope.row.isWarn"
|
|
+ <el-col :span="24">
|
|
- size="mini"
|
|
+ <el-button
|
|
- type="success"
|
|
+ v-if="scope.row.isWarn"
|
|
- icon="el-icon-success"
|
|
+ size="mini"
|
|
- @click="auditPass(scope.row.dataId)"
|
|
+ type="success"
|
|
- >通过
|
|
+ icon="el-icon-success"
|
|
- </el-button>
|
|
+ @click="auditPass(scope.row.dataId)"
|
|
- <el-button
|
|
+ >通 过
|
|
- v-if="scope.row.isWarn"
|
|
+ </el-button>
|
|
- size="mini"
|
|
+ </el-col>
|
|
- type="danger"
|
|
+ </el-row>
|
|
- icon="el-icon-error"
|
|
+ <el-row class="operateRow">
|
|
- @click="openAuditDialog(scope.row.dataId)"
|
|
+ <el-col :span="24">
|
|
- >不通过
|
|
+ <el-button
|
|
- </el-button>
|
|
+ v-if="scope.row.isWarn"
|
|
|
|
+ size="mini"
|
|
|
|
+ type="danger"
|
|
|
|
+ icon="el-icon-error"
|
|
|
|
+ @click="openAuditDialog(scope.row.dataId)"
|
|
|
|
+ >不通过
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
</div>
|
|
</div>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -457,4 +467,7 @@ export default {
|
|
.margin-top-10 {
|
|
.margin-top-10 {
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
+.operateRow {
|
|
|
|
+ margin-top: 2px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|