This commit is contained in:
hedekun
2020-02-10 15:00:03 +08:00
parent 8331401261
commit e796a69dc9
16 changed files with 119 additions and 88 deletions

View File

@@ -132,8 +132,8 @@
size="small"
type="datetime"
placeholder="结束日期"/>
<el-button type="success" icon="el-icon-menu" size="mini" style="margin-left: 74px" @click="search">查询</el-button>
<el-button type="warning" icon="el-icon-delete" size="mini" @click="clearSearch">清空</el-button>
<el-button type="primary" plain icon="el-icon-search" size="mini" style="margin-left: 74px" @click="search">查询</el-button>
<el-button class="button111" icon="el-icon-delete" size="mini" @click="clearSearch">清空</el-button>
</el-row>
</div>
<el-divider/>
@@ -144,12 +144,13 @@
style="width: 100%"
height="500"
border
stripe
size="mini"
@row-click="openDialogFormVisible">
<el-table-column align="center" label="状态" min-width="80">
<template slot-scope="scope">
<el-tag v-if="scope.row.是否发出.toString() === '1'" type="success" size="small">已发出</el-tag>
<el-tag v-else type="danger" size="small">未发出</el-tag>
<span v-if="scope.row.是否发出.toString() === '1'" type="success" size="small">已发出</span>
<span v-else type="danger" size="small">未发出</span>
<!--{{ scope.row.是否发出.toString() === '1' ? '已发出' : '未发出' }}-->
</template>
</el-table-column>
@@ -168,7 +169,7 @@
{{ scope.row.收货单位 }}
</template>
</el-table-column>
<el-table-column align="center" label="收货地址" min-width="250">
<el-table-column align="center" label="收货地址" min-width="250" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.收货地址 }}
</template>
@@ -183,7 +184,7 @@
{{ scope.row.联系电话 }}
</template>
</el-table-column>
<el-table-column align="center" label="车辆牌号" min-width="110">
<el-table-column align="center" label="车辆牌号" min-width="110" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.车辆牌号 }}
</template>
@@ -198,12 +199,12 @@
{{ scope.row.司机电话 }}
</template>
</el-table-column>
<el-table-column align="center" label="制单人" min-width="80">
<el-table-column align="center" label="制单人" min-width="80" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.制单人 }}
</template>
</el-table-column>
<el-table-column align="center" label="审核人" min-width="80">
<el-table-column align="center" label="审核人" min-width="80" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.审核人 }}
</template>