页面优化

This commit is contained in:
13218645326 2023-12-08 17:37:49 +08:00
parent c00958a1f8
commit 61a041c474
1 changed files with 3 additions and 3 deletions

View File

@ -118,12 +118,12 @@
</el-table-column>
<el-table-column align="center" prop="name" label="操作" width="320px">
<template #default="scope">
<el-button size="small" type="primary" @click="clickPreviewDetails">查看</el-button>
<el-button size="small" type="danger" @click="clickRentingTermination(scope.row)" v-if="scope.row.orderStatus == 36">
<el-button size="small" type="primary" @click="clickPreviewDetails(scope.row)">查看</el-button>
<el-button size="small" type="danger" @click="clickRentingTermination" v-if="scope.row.orderStatus == 36">
退租
</el-button>
<el-button size="small" type="warning" @click="clickRenewalOfLease" v-if="scope.row.orderStatus == 36">续租</el-button>
<el-button size="small" type="success" @click="clickConfirmReceipt" v-if="scope.row.orderStatus == 35">
<el-button size="small" type="success" @click="clickConfirmReceipt(scope.row)" v-if="scope.row.orderStatus == 35">
确认收货
</el-button>
</template>