|
@@ -31,12 +31,6 @@
|
|
|
<template slot-scope="scope" slot="menu">
|
|
|
<el-button
|
|
|
type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
- size="small"
|
|
|
- @click.stop="beforeOpenPage(scope.row, scope.index)"
|
|
|
- >查看</el-button>
|
|
|
- <el-button
|
|
|
- type="text"
|
|
|
icon="el-icon-delete"
|
|
|
size="small"
|
|
|
@click.stop="rowDel(scope.row, scope.index)"
|
|
@@ -59,6 +53,9 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</template>
|
|
|
+ <template slot="sysNo" slot-scope="scope">
|
|
|
+ <span style="color: #409EFF;cursor: pointer" @click.stop="beforeOpenPage(scope.row,scope.index)">{{ scope.row.sysNo }}</span>
|
|
|
+ </template>
|
|
|
</avue-crud>
|
|
|
</basic-container>
|
|
|
<detail-page
|