Commit 45b6e8b3 authored by guoyou's avatar guoyou

车辆排班管理 租车不显示操作

parent 6dd02492
......@@ -253,13 +253,13 @@
@click="illegalInquiry(scope.row)"
>违章记录</el-button>
<el-button
v-if="bookRecord_btn_prove&&scope.row.status==1"
v-if="bookRecord_btn_prove&&scope.row.status==1&&scope.row.bookType !=1"
size="small"
class="el-button el-button--text el-button--small"
@click="handleProve(scope.row)"
>通过</el-button>
<el-button
v-if="bookRecord_btn_reject&&scope.row.status==1"
v-if="bookRecord_btn_reject&&scope.row.status==1&&scope.row.bookType !=1"
size="small"
class="el-button el-button--text el-button--small"
style="color: red;"
......@@ -267,7 +267,7 @@
>驳回</el-button>
<template v-if="scope.row.vehicleDepartureLogVo==undefined">
<el-button
v-if="bookRecord_btn_lift&&scope.row.liftStatus==1&&scope.row.status==2"
v-if="bookRecord_btn_lift&&scope.row.liftStatus==1&&scope.row.status==2&&scope.row.bookType !=1"
size="small"
class="el-button el-button--text el-button--small"
@click="handleLift(scope.row)"
......@@ -275,7 +275,7 @@
</template>
<template v-if="scope.row.vehicleDepartureLogVo!=undefined">
<el-button
v-if="bookRecord_btn_ret&&scope.row.vehicleDepartureLogVo.state==0&&scope.row.retStatus==1"
v-if="bookRecord_btn_ret&&scope.row.vehicleDepartureLogVo.state==0&&scope.row.retStatus==1&&scope.row.bookType !=1"
size="small"
class="el-button el-button--text el-button--small"
@click="handleRet(scope.row)"
......@@ -283,7 +283,7 @@
</template>
<template v-if="scope.row.vehicleDepartureLogVo==undefined">
<el-button
v-if="bookRecord_btn_unbook&&scope.row.status==2"
v-if="bookRecord_btn_unbook&&scope.row.status==2&&scope.row.bookType !=1"
size="small"
class="el-button el-button--text el-button--small"
style="color: red;"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment