This commit is contained in:
parent
8b31a0f768
commit
ad15d82d44
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
|
|
@ -83,7 +83,7 @@
|
|||
<el-table-column align="center" show-overflow-tooltip prop="createTime" label="申请时间" />
|
||||
<el-table-column align="center" show-overflow-tooltip label="操作">
|
||||
<template slot-scope="scope">
|
||||
<el-button size="mini" type="text" icon="el-icon-zoom-in" @click="onHandleView(scope.row)">查看</el-button>
|
||||
<el-button v-if="scope.row.reviewStatus != 0" size="mini" type="text" icon="el-icon-zoom-in" @click="onHandleView(scope.row)">查看</el-button>
|
||||
<el-button v-if="scope.row.reviewStatus == 0" size="mini" type="text" icon="el-icon-edit" @click="onHandleAudit(scope.row)">审核</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
|
|||
|
|
@ -187,7 +187,9 @@
|
|||
style="min-height: 80px"
|
||||
>
|
||||
<img v-if="goods.url" :src="goods.url" style="width: 110px; height: 70px" alt="" />
|
||||
<div v-else style="width: 110px; height: 70px; display: flex;align-items: center;justify-content: center;">暂无图片</div>
|
||||
<div v-else style="width: 110px; height: 70px; display: flex;align-items: center;justify-content: center;">
|
||||
<img src="@/assets/images/no-img.png" style="width: 110px; height: 100px" alt="" />
|
||||
</div>
|
||||
<div
|
||||
style="
|
||||
min-height: 80px;
|
||||
|
|
@ -292,8 +294,8 @@
|
|||
</div>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="4">
|
||||
<div class="handle-btn">
|
||||
<el-col :span="4" style="display: flex; align-items: center;">
|
||||
<div class="handle-btn-4">
|
||||
<!-- <el-button @click="handleViewOrder(item)" type="primary" size="small">
|
||||
订单详情
|
||||
</el-button> -->
|
||||
|
|
@ -1032,13 +1034,14 @@ export default {
|
|||
|
||||
.handle-btn-4 {
|
||||
width: 100%;
|
||||
height: 96px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.el-button {
|
||||
width: calc((100% - 20px) / 2);
|
||||
/* width: calc((100% - 20px) / 2); */
|
||||
margin-left: 10px !important;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -154,7 +154,9 @@
|
|||
style="min-height: 80px"
|
||||
>
|
||||
<img v-if="goods.url" :src="goods.url" style="width: 110px; height: 70px" alt="" />
|
||||
<div v-else style="width: 110px; height: 70px; display: flex;align-items: center;justify-content: center;">暂无图片</div>
|
||||
<div v-else style="width: 110px; height: 70px; display: flex;align-items: center;justify-content: center;">
|
||||
<img src="@/assets/images/no-img.png" style="width: 110px; height: 100px" alt="" />
|
||||
</div>
|
||||
<div
|
||||
style="
|
||||
min-height: 80px;
|
||||
|
|
@ -264,7 +266,7 @@
|
|||
|
||||
<!-- 操作按钮 -->
|
||||
<el-col :span="2" style="display: flex;align-items: center;justify-content: center">
|
||||
<div>
|
||||
<div class="handle-btn">
|
||||
<!-- <el-button @click="handleViewOrder(item)" type="primary" size="small">
|
||||
订单详情
|
||||
</el-button> -->
|
||||
|
|
@ -735,12 +737,14 @@ export default {
|
|||
|
||||
.handle-btn {
|
||||
width: 100%;
|
||||
height: 96px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
|
||||
.el-button {
|
||||
width: calc((100% - 50px) / 4);
|
||||
/* width: calc((100% - 50px) / 4); */
|
||||
margin-bottom: 10px;
|
||||
margin-left: 10px !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@
|
|||
<el-table-column label="申请时间" align="center" prop="createTime" width="160px"/>
|
||||
<el-table-column label="操作" align="center">
|
||||
<template slot-scope="{ row }">
|
||||
<el-button size="mini" type="text" icon="el-icon-zoom-in" @click="handleView(row)">查看</el-button>
|
||||
<el-button v-if="row.taskStatus != 0" size="mini" type="text" icon="el-icon-zoom-in" @click="handleView(row)">查看</el-button>
|
||||
<el-button v-if="row.taskStatus == 0" size="mini" type="text" icon="el-icon-edit" @click="handleEdit(row)">审核</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@
|
|||
<el-table-column label="申请时间" align="center" prop="createTime" width="160px"/>
|
||||
<el-table-column label="操作" align="center">
|
||||
<template slot-scope="{ row }">
|
||||
<el-button size="mini" type="text" icon="el-icon-zoom-in" @click="handleView(row)">查看</el-button>
|
||||
<el-button v-if="row.taskStatus != 0" size="mini" type="text" icon="el-icon-zoom-in" @click="handleView(row)">查看</el-button>
|
||||
<el-button v-if="row.taskStatus == 0" size="mini" type="text" icon="el-icon-edit" @click="handleEdit(row)">
|
||||
审核
|
||||
</el-button>
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="操作" align="center">
|
||||
<template slot-scope="{ row }">
|
||||
<el-button size="mini" type="text" icon="el-icon-zoom-in" @click="handleView(row)">查看</el-button>
|
||||
<el-button v-if="row.status != '0'" size="mini" type="text" icon="el-icon-zoom-in" @click="handleView(row)">查看</el-button>
|
||||
<el-button v-if="row.status == '0'" size="mini" type="text" icon="el-icon-edit" @click="handleEdit(row)">审核</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
|
|||
Loading…
Reference in New Issue