按钮调整

This commit is contained in:
shijing 2022-07-22 14:12:44 +08:00
parent 243e29568e
commit 03842ca8e9
6 changed files with 10 additions and 9 deletions

View File

@ -97,7 +97,7 @@
prop="create_time"
width="180"
></el-table-column>
<el-table-column label="操作" fixed="right" align="left" width="170">
<el-table-column label="操作" fixed="right" align="center" width="170">
<template #default="scope">
<el-button-group>
<el-button

View File

@ -33,7 +33,7 @@
</template>
</el-table-column>
<el-table-column label="创建时间" prop="create_time"></el-table-column>
<el-table-column label="操作" fixed="right" align="right" width="120">
<el-table-column label="操作" fixed="right" align="center" width="120">
<template #default="scope">
<el-button type="text" size="small" @click="handleShow(scope.row)">查看详情</el-button>
<!--多人且主动接单-->

View File

@ -33,9 +33,9 @@
</template>
</el-table-column>
<el-table-column label="创建时间" prop="create_time"></el-table-column>
<el-table-column label="操作" fixed="right" align="right" width="120">
<el-table-column label="操作" fixed="right" align="center" width="100">
<template #default="scope">
<el-button link size="small" @click="handleShow(scope.row)">查看详情</el-button>
<el-button text size="small" type="primary" @click="handleShow(scope.row)">查看详情</el-button>
</template>
</el-table-column>
</scTable>

View File

@ -35,13 +35,14 @@
<el-table-column label="创建时间" prop="create_time"></el-table-column>
<el-table-column label="操作" align="center">
<template #default="scope">
<el-link
<el-button
text
v-if="(scope.row.act_state===1||scope.row.act_state===3)&&scope.row.state_.type===0"
type="primary"
@click="handleDetail(scope.row)"
>
处理
</el-link>
</el-button>
<el-button v-if="scope.row.state_.distribute_type===1&&scope.row.participant_type===2"
type="text" size="small" @click="handleAccept(scope.row)">
接单

View File

@ -35,7 +35,7 @@
<el-table-column label="创建时间" prop="create_time"></el-table-column>
<el-table-column label="操作" fixed="right" align="center" width="160">
<template #default="scope">
<el-button link size="small" @click="handleShow(scope.row)">查看详情</el-button>
<el-button text size="small" type="primary" @click="handleShow(scope.row)">查看详情</el-button>
<!--创建人在初始状态-->
<el-link
v-if="scope.row.state_.type===1&&userId===scope.row.create_by"

View File

@ -33,9 +33,9 @@
</template>
</el-table-column>
<el-table-column label="创建时间" prop="create_time"></el-table-column>
<el-table-column label="操作" fixed="right" align="right" width="120">
<el-table-column label="操作" fixed="right" align="center" width="100">
<template #default="scope">
<el-button link size="small" @click="handleShow(scope.row)">查看详情</el-button>
<el-button text size="small" type="primary" @click="handleShow(scope.row)">查看详情</el-button>
</template>
</el-table-column>
</scTable>