2024-10-08 报修单号 按钮移除,在后面添加查看按钮

master
元气满满(jgy) 10 months ago
parent 49d3214d59
commit 3db9ec02bd

@ -223,20 +223,11 @@
label="报修单号" label="报修单号"
align="center" align="center"
prop="orderCode" prop="orderCode"
width="220" width="250"
:show-overflow-tooltip="true" :show-overflow-tooltip="true"
fixed fixed
> >
<template slot-scope="scope">
<el-button
type="text"
@click="handleView(scope.row)"
v-hasPermi="['device:faultReport:query']"
>{{ scope.row.orderCode }}</el-button
>
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="审核状态" label="审核状态"
align="center" align="center"
@ -331,7 +322,7 @@
label="操作" label="操作"
align="center" align="center"
class-name="small-padding fixed-width" class-name="small-padding fixed-width"
width="180" width="220"
fixed="right" fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
@ -359,6 +350,14 @@
v-hasPermi="['device:faultReport:check']" v-hasPermi="['device:faultReport:check']"
>审核</el-button >审核</el-button
> >
<el-button
size="mini"
type="text"
icon="el-icon-view"
@click="handleView(scope.row)"
v-hasPermi="['device:faultReport:query']"
>查看</el-button
>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>

Loading…
Cancel
Save