|
@@ -37,16 +37,16 @@
|
|
|
</el-form>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['gas:roadSectionInspection:add']"
|
|
|
- >新增</el-button>
|
|
|
- </el-col>
|
|
|
+<!-- <el-col :span="1.5">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- type="primary"-->
|
|
|
+<!-- plain-->
|
|
|
+<!-- icon="el-icon-plus"-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- @click="handleAdd"-->
|
|
|
+<!-- v-hasPermi="['gas:roadSectionInspection:add']"-->
|
|
|
+<!-- >新增</el-button>-->
|
|
|
+<!-- </el-col>-->
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="success"
|
|
@@ -102,7 +102,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="审核状态" align="center" prop="processStatus">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag :options="dict.type.process_status" :value="scope.row.processStatus" v-if="scope.row.processStatus != null"/>
|
|
|
+ <dict-tag :options="dict.type.process_status" :value="scope.row.processStatus" v-if="scope.row.processStatus != null && scope.row.processStatus != '-1' "/>
|
|
|
<span v-else>未审核</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -118,14 +118,14 @@
|
|
|
<!-- <el-table-column label="备注" align="center" prop="remark" />-->
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-view"
|
|
|
- @click="handleUpdate(scope.row,true)"
|
|
|
- v-hasPermi="['gas:regulatingBoxMaintenance:edit']"
|
|
|
- >查看
|
|
|
- </el-button>
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- type="text"-->
|
|
|
+<!-- icon="el-icon-view"-->
|
|
|
+<!-- @click="handleUpdate(scope.row,true)"-->
|
|
|
+<!-- v-hasPermi="['gas:regulatingBoxMaintenance:edit']"-->
|
|
|
+<!-- >查看-->
|
|
|
+<!-- </el-button>-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
@@ -136,7 +136,7 @@
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
- v-show="scope.row.processStatus == null"
|
|
|
+ v-show="scope.row.processStatus == null && scope.row.processStatus != '-1'"
|
|
|
icon="el-icon-edit"
|
|
|
@click="process(scope.row)"
|
|
|
v-hasPermi="['gas:regulatingBoxMaintenance:edit']"
|