|
@@ -147,6 +147,21 @@
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="handleHistory(scope.row,'check')"
|
|
|
+ v-hasPermi="['zdsz:touchOperationEngineering:edit']"
|
|
|
+ >审核
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="download(scope.row.enginName)"
|
|
|
+ >下载图片
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['zdsz:touchOperationEngineering:remove']"
|
|
@@ -317,6 +332,9 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ download(name) {
|
|
|
+ this.$download.zip(`/zdsz/engineeringPipeJacking/downloadZip/${'碰口工程'}/${name}`, name);
|
|
|
+ },
|
|
|
// 节点审核
|
|
|
checkWorking(checkingInfo) {
|
|
|
let params = checkingInfo
|