This commit is contained in:
BianLzhaoMin 2024-05-07 17:37:03 +08:00
parent f6c1bdb1c7
commit d0d700208f
2 changed files with 33 additions and 38 deletions

View File

@ -249,23 +249,18 @@
<span>{{ scope.row.leaseApplyInfoList[0].remark }}</span>
</template>
</el-table-column>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
width="250"
fixed="right"
>
<el-table-column label="操作" align="center" width="160">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-zoom-in"
@click="handleView(scope.row)"
>查看</el-button
>
<el-button
size="mini"
type="primary"
type="text"
icon="el-icon-edit"
v-if="scope.row.taskStatus == 30"
@click="handleUpdate(scope.row)"
@ -273,7 +268,7 @@
>
<el-button
size="mini"
type="info"
type="text"
v-if="
scope.row.taskStatus == 98 ||
scope.row.taskStatus == 99 ||
@ -284,7 +279,7 @@
>
<el-button
size="mini"
type="danger"
type="text"
icon="el-icon-delete"
v-if="scope.row.taskStatus == 30"
@click="handleDelete(scope.row)"

View File

@ -1,17 +1,12 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="关键字" prop="keyWord">
<el-input v-model="queryParams.keyWord" placeholder="请输入关键字" clearable style="width: 240px" />
</el-form-item>
<el-form-item label="退料单位" prop="unitId">
<el-select
v-model="queryParams.unitId"
clearable
filterable
@change="getAgreementByUnit"
style="width: 240px"
placeholder="请选择"
<el-form
:model="queryParams"
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="100px"
>
<el-form-item label="关键字" prop="keyWord">
<el-input
@ -98,13 +93,23 @@
start-placeholder="开始日期"
end-placeholder="结束日期"
value-format="yyyy-MM-dd"
style="width: 240px"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>查询</el-button
>
<el-button
icon="el-icon-refresh"
size="mini"
@click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
@ -251,11 +256,6 @@
:rowObj="rowObj"
:priKey="priKey"
></dialogForm>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</div>
</template>