This commit is contained in:
2022-12-10 17:22:38 +08:00
parent 9be4fb02c4
commit 932dbc7f38
3 changed files with 5 additions and 3 deletions

View File

@@ -52,6 +52,7 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="状态"> <el-form-item label="状态">
<label slot="label">&nbsp;&nbsp;&nbsp;&nbsp;:</label>
<el-select <el-select
v-model="query.status" v-model="query.status"
clearable clearable
@@ -102,7 +103,7 @@
v-model="query.container_name" v-model="query.container_name"
clearable clearable
size="mini" size="mini"
placeholder="卷号" placeholder="卷号"
style="width: 250px" style="width: 250px"
@keyup.enter.native="crud.toQuery" @keyup.enter.native="crud.toQuery"
/> />
@@ -111,6 +112,7 @@
</el-row> </el-row>
<el-row> <el-row>
<el-form-item label="日期"> <el-form-item label="日期">
<label slot="label">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;:</label>
<el-date-picker <el-date-picker
v-model="query.createTime" v-model="query.createTime"
type="daterange" type="daterange"

View File

@@ -201,7 +201,7 @@
/> />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column show-overflow-tooltip prop="bill_code" width="130" label="单据编码"> <el-table-column show-overflow-tooltip prop="bill_code" width="130" label="单据">
<template slot-scope="scope"> <template slot-scope="scope">
<el-link type="warning" @click="toView(scope.$index, scope.row)">{{ scope.row.bill_code }}</el-link> <el-link type="warning" @click="toView(scope.$index, scope.row)">{{ scope.row.bill_code }}</el-link>
</template> </template>

View File

@@ -221,7 +221,7 @@
> >
<el-table-column type="selection" width="55" /> <el-table-column type="selection" width="55" />
<el-table-column type="index" label="序号" width="50" align="center" /> <el-table-column type="index" label="序号" width="50" align="center" />
<el-table-column show-overflow-tooltip prop="bill_code" width="130" label="订单编码" /> <el-table-column show-overflow-tooltip prop="bill_code" width="130" label="单据号" />
<el-table-column show-overflow-tooltip :formatter="stateFormat" width="100" prop="bill_status" label="单据状态" /> <el-table-column show-overflow-tooltip :formatter="stateFormat" width="100" prop="bill_status" label="单据状态" />
<el-table-column prop="stor_name" label="仓库" width="100" /> <el-table-column prop="stor_name" label="仓库" width="100" />
<el-table-column prop="io_type" label="出入库类型" :formatter="ioFormat" min-width="100" show-overflow-tooltip /> <el-table-column prop="io_type" label="出入库类型" :formatter="ioFormat" min-width="100" show-overflow-tooltip />