界面调整
This commit is contained in:
parent
bdb1c3a014
commit
3a79888312
|
@ -76,7 +76,14 @@
|
|||
label="名称"
|
||||
prop="name"
|
||||
fixed="left"
|
||||
width="180"
|
||||
width="200"
|
||||
:show-overflow-tooltip="true"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="相关方"
|
||||
prop="rparty_name"
|
||||
width="200"
|
||||
:show-overflow-tooltip="true"
|
||||
></el-table-column>
|
||||
<el-table-column label="项目类型" prop="type" width="180">
|
||||
<template #default="scope">{{ type_[scope.row.type] }} </template>
|
||||
|
@ -133,11 +140,6 @@
|
|||
prop="belong_dept_name"
|
||||
width="180"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="相关方"
|
||||
prop="rparty_name"
|
||||
width="180"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="创建人"
|
||||
prop="create_by_name"
|
||||
|
@ -175,7 +177,7 @@
|
|||
>编辑
|
||||
</el-button>-->
|
||||
<el-popconfirm
|
||||
v-if="scope.row.state == 10"
|
||||
v-if="scope.row.state != 30"
|
||||
title="确定删除吗?"
|
||||
@confirm="table_del(scope.row, scope.$index)"
|
||||
>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
type="primary"
|
||||
icon="el-icon-plus"
|
||||
@click="add"
|
||||
></el-button>
|
||||
>新建项目</el-button>
|
||||
<el-select
|
||||
v-model="query.purpose"
|
||||
placeholder="来访事由"
|
||||
|
@ -65,7 +65,7 @@
|
|||
width="50"
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column label="来访事由" prop="state" width="180" fixed="left">
|
||||
<el-table-column label="来访事由" prop="state" width="100" fixed="left">
|
||||
<template #default="scope">{{
|
||||
purpose_[scope.row.purpose]
|
||||
}}</template>
|
||||
|
@ -170,7 +170,7 @@
|
|||
>查看
|
||||
</el-button>
|
||||
<el-button
|
||||
v-if="scope.row.state == 10"
|
||||
v-if="scope.row.state != 30"
|
||||
link
|
||||
type="danger"
|
||||
size="small"
|
||||
|
|
Loading…
Reference in New Issue