技术中心

This commit is contained in:
bryan sun
2019-11-15 17:12:09 +08:00
parent a299d966f1
commit 0b2103e6ad
10 changed files with 203 additions and 193 deletions

View File

@@ -1,17 +1,28 @@
<template>
<div>
<div class="app-container">
<el-card>
<el-input v-model="invoiceNumber" placeholder="请输入发货单号" clearable style="width: 150px;margin-right: 10px" size="mini"/>
<el-input v-model="receivingUnit" placeholder="请输入收货单位" clearable style="width: 150px;margin-right: 10px" size="mini"/>
<el-button type="success" icon="el-icon-menu" size="mini" style="margin-left: 10px" @click="openSearch">查询</el-button>
</el-card>
<el-card>
<el-table
:data="tableDataSearchList"
highlight-current-row
style="width: 100%; max-height: 500px"
height="650"
border
stripe
size="mini"
highlight-current-row
@row-click="searchListItem">
<el-table-column align="center" label="状态" width="60">
<!-- <el-table-->
<!-- :data="tableDataSearchList"-->
<!-- highlight-current-row-->
<!-- style="width: 100%; max-height: 500px"-->
<!-- border-->
<!-- size="mini"-->
<!-- @row-click="searchListItem">-->
<el-table-column align="center" label="状态" width="60px">
<template slot-scope="scope">
{{ scope.row.是否发出.toString() === '1' ? '已发出' : '未发出' }}
</template>
@@ -36,7 +47,7 @@
{{ scope.row.收货地址 }}
</template>
</el-table-column>
<el-table-column align="center" label="收货人员" width="80">
<el-table-column align="center" label="收货人员" width="80px">
<template slot-scope="scope">
{{ scope.row.收货人员 }}
</template>
@@ -51,7 +62,7 @@
{{ scope.row.车辆牌号 }}
</template>
</el-table-column>
<el-table-column align="center" label="司机姓名" width="80">
<el-table-column align="center" label="司机姓名" width="80px">
<template slot-scope="scope">
{{ scope.row.司机姓名 }}
</template>