256 lines
9.9 KiB
Vue
256 lines
9.9 KiB
Vue
<template>
|
||
<div>
|
||
<!--工具栏-->
|
||
<div class="head-container">
|
||
<div v-if="crud.props.searchToggle">
|
||
<!-- 搜索 -->
|
||
<el-form
|
||
:inline="true"
|
||
class="demo-form-inline"
|
||
label-position="right"
|
||
label-width="90px"
|
||
label-suffix=":"
|
||
>
|
||
<el-form-item label="起点点位编码" label-width="120px">
|
||
<el-input
|
||
v-model="query.start_point_code"
|
||
clearable
|
||
placeholder="输入起点点位编码"
|
||
style="width: 185px;"
|
||
class="filter-item"
|
||
@keyup.enter.native="crud.toQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="终点点位编码" label-width="120px">
|
||
<el-input
|
||
v-model="query.end_point_code"
|
||
clearable
|
||
placeholder="输入终点点位编码"
|
||
style="width: 185px;"
|
||
class="filter-item"
|
||
@keyup.enter.native="crud.toQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="批次号" label-width="120px">
|
||
<el-input
|
||
v-model="query.pcsn"
|
||
clearable
|
||
placeholder="输入批次"
|
||
style="width: 185px;"
|
||
class="filter-item"
|
||
@keyup.enter.native="crud.toQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="载具编码" label-width="120px">
|
||
<el-input
|
||
v-model="query.vehicle_code"
|
||
clearable
|
||
placeholder="输入载具"
|
||
style="width: 185px;"
|
||
class="filter-item"
|
||
@keyup.enter.native="crud.toQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="创建时间">
|
||
<el-date-picker
|
||
v-model="query.createTime"
|
||
type="daterange"
|
||
value-format="yyyy-MM-dd HH:mm:ss"
|
||
start-placeholder="开始日期"
|
||
end-placeholder="结束日期"
|
||
:default-time="['00:00:00', '23:59:59']"
|
||
@change="crud.toQuery"
|
||
/>
|
||
</el-form-item>
|
||
<rrOperation :crud="crud" />
|
||
</el-form>
|
||
</div>
|
||
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
||
<crudOperation :permission="permission" />
|
||
<!--表单组件-->
|
||
<el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0" :title="crud.status.title" width="520px">
|
||
<el-form ref="form" :model="form" :rules="rules" size="mini" label-width="100px">
|
||
<el-form-item label="点位编码" prop="point_code">
|
||
<el-input v-model="form.point_code" style="width: 370px;" :disabled="true"/>
|
||
</el-form-item>
|
||
<el-form-item label="生产区域">
|
||
<el-input v-model="form.product_area" style="width: 370px;" :disabled="true"/>
|
||
</el-form-item>
|
||
<el-form-item label="是否启用">
|
||
<el-switch v-model="form.is_used" active-value="1" inactive-value="0"/>
|
||
</el-form-item>
|
||
<el-form-item label="满轴位状态" prop="full_point_status">
|
||
<el-select
|
||
v-model="form.full_point_status"
|
||
size="mini"
|
||
placeholder="满轴位状态"
|
||
class="filter-item"
|
||
style="width: 370px;"
|
||
>
|
||
<el-option
|
||
v-for="item in dict.sch_full_point_status"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="母卷号">
|
||
<el-input v-model="form.container_name" style="width: 370px;"/>
|
||
</el-form-item>
|
||
<el-form-item label="空轴位状态" prop="empty_point_status">
|
||
<el-select
|
||
v-model="form.empty_point_status"
|
||
clearable
|
||
filterable
|
||
size="mini"
|
||
class="filter-item"
|
||
style="width: 370px;"
|
||
>
|
||
<el-option
|
||
v-for="item in dict.sch_empty_point_status"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="空轴编码">
|
||
<el-input v-model="form.empty_vehicle_code" style="width: 370px;"/>
|
||
</el-form-item>
|
||
<el-form-item label="库存状态" prop="cool_ivt_status">
|
||
<el-select
|
||
v-model="form.cool_ivt_status"
|
||
clearable
|
||
filterable
|
||
size="mini"
|
||
class="filter-item"
|
||
style="width: 370px;"
|
||
>
|
||
<el-option
|
||
v-for="item in dict.sch_cool_ivt_status"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-form>
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button type="text" @click="crud.cancelCU">取消</el-button>
|
||
<el-button :loading="crud.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
<!--表格渲染-->
|
||
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="mini" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
||
<el-table-column type="selection" width="55" />
|
||
<el-table-column show-overflow-tooltip prop="bill_code" label="单据编号" width="120px" />
|
||
<el-table-column prop="io_type" label="出入类型" >
|
||
<template slot-scope="scope">
|
||
{{ dict.label.io_type[scope.row.io_type] }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column show-overflow-tooltip prop="vehicle_code" label="载具编码" />
|
||
<el-table-column show-overflow-tooltip prop="qty" label="数量" />
|
||
<!-- <el-table-column prop="bill_status" label="单据状态" >
|
||
<template slot-scope="scope">
|
||
{{ dict.label.st_bill_status[scope.row.bill_status] }}
|
||
</template>
|
||
</el-table-column>-->
|
||
<!-- <el-table-column prop="is_used" label="是否启用" >
|
||
<template slot-scope="scope">
|
||
{{ dict.label.is_used[scope.row.is_used] }}
|
||
</template>
|
||
</el-table-column>-->
|
||
<el-table-column show-overflow-tooltip prop="pcsn" label="批次" width="120px" />
|
||
<el-table-column show-overflow-tooltip prop="start_point_code" label="起始点位" width="120px" />
|
||
<el-table-column show-overflow-tooltip prop="end_point_code" label="终点点位" width="120px" />
|
||
<el-table-column prop="create_mode" label="生成方式" >
|
||
<template slot-scope="scope">
|
||
{{ dict.label.ST_CREATE_MODE[scope.row.create_mode] }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="remark" label="备注" />
|
||
<el-table-column prop="create_name" label="创建人" />
|
||
<el-table-column prop="create_time" label="创建时间" min-width="150" show-overflow-tooltip />
|
||
<el-table-column prop="confirm_optname" label="确认人" />
|
||
<el-table-column prop="confirm_time" label="确认时间" min-width="150" show-overflow-tooltip />
|
||
<!-- <el-table-column v-permission="[]" label="操作" width="120px" align="center" fixed="right">
|
||
<template slot-scope="scope">
|
||
<udOperation
|
||
:data="scope.row"
|
||
:permission="permission"
|
||
:is-visiable-del="false"
|
||
/>
|
||
</template>
|
||
</el-table-column>-->
|
||
</el-table>
|
||
<!--分页组件-->
|
||
<pagination />
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import crudStIvtCoolpointivt from './coolpointivt'
|
||
import CRUD, { crud, form, header, presenter } from '@crud/crud'
|
||
import rrOperation from '@crud/RR.operation'
|
||
import crudOperation from '@crud/CRUD.operation'
|
||
import udOperation from '@crud/UD.operation'
|
||
import pagination from '@crud/Pagination'
|
||
|
||
const defaultForm = { iostorinv_id: null, bill_code: null, io_type: null, material_id: null, pcsn: null, vehicle_code: null, qty: null, qty_unit_id: null, bill_status: null, start_point_code: null, end_point_code: null, cust_id: null, create_mode: null, task_id: null, remark: null, create_id: null, create_name: null, create_time: null, update_optid: null, update_optname: null, update_time: null, confirm_optid: null, confirm_optname: null, confirm_time: null, is_delete: null }
|
||
export default {
|
||
name: 'CoolRegionIO',
|
||
dicts: ['sch_cool_ivt_status', 'ST_CREATE_MODE', 'point_location', 'product_area', 'st_bill_status', 'io_type'],
|
||
components: { pagination, crudOperation, rrOperation, udOperation },
|
||
mixins: [presenter(), header(), form(defaultForm), crud()],
|
||
cruds() {
|
||
return CRUD({
|
||
title: '冷却区出入',
|
||
url: 'api/stIvtCoolpointivt/coolRegionIOQueryAll',
|
||
idField: 'iostorinv_id',
|
||
sort: 'iostorinv_id,desc',
|
||
crudMethod: { ...crudStIvtCoolpointivt },
|
||
optShow: {
|
||
add: false,
|
||
edit: false,
|
||
del: false,
|
||
download: false,
|
||
reset: true
|
||
}
|
||
})
|
||
},
|
||
data() {
|
||
return {
|
||
permission: {
|
||
},
|
||
rules: {
|
||
full_point_status: [
|
||
{ required: true, message: '满轴位状态不能为空', trigger: 'blur' }
|
||
],
|
||
empty_point_status: [
|
||
{ required: true, message: '空轴位状态不能为空', trigger: 'blur' }
|
||
],
|
||
cool_ivt_status: [
|
||
{ required: true, message: '库存状态不能为空', trigger: 'blur' }
|
||
]
|
||
},
|
||
queryTypeOptions: [
|
||
{ key: 'point_code', display_name: '点位编码' }
|
||
]
|
||
}
|
||
},
|
||
methods: {
|
||
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
||
[CRUD.HOOK.beforeRefresh]() {
|
||
return true
|
||
},
|
||
hand(value) {
|
||
this.crud.toQuery()
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
|
||
</style>
|