288 lines
8.9 KiB
Vue
288 lines
8.9 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<!--工具栏-->
|
||
<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="点位编码">
|
||
<el-input
|
||
v-model="query.point_code"
|
||
clearable
|
||
placeholder="输入点位编码"
|
||
style="width: 185px;"
|
||
class="filter-item"
|
||
@keyup.enter.native="crud.toQuery"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="生产区域">
|
||
<el-select
|
||
v-model="query.product_area"
|
||
clearable
|
||
filterable
|
||
size="mini"
|
||
class="filter-item"
|
||
style="width: 185px;"
|
||
@change="hand"
|
||
>
|
||
<el-option
|
||
v-for="item in dict.product_area"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="点位类型">
|
||
<el-select
|
||
v-model="query.point_type"
|
||
clearable
|
||
filterable
|
||
size="mini"
|
||
class="filter-item"
|
||
style="width: 185px;"
|
||
@change="hand"
|
||
>
|
||
<el-option
|
||
v-for="item in dict.PACKAGE_POINT_TYPE"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="是否启用">
|
||
<el-switch
|
||
v-model="query.is_used"
|
||
active-value="0"
|
||
inactive-value="1"
|
||
active-color="#C0CCDA"
|
||
inactive-color="#409EFF"
|
||
@change="hand"
|
||
/>
|
||
</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="500px"
|
||
>
|
||
<el-form ref="form" :model="form" :rules="rules" size="mini" label-width="80px">
|
||
<el-form-item label="点位编码" prop="point_code">
|
||
<el-input v-model="form.point_code" style="width: 370px;" disabled/>
|
||
</el-form-item>
|
||
<el-form-item label="生产区域">
|
||
<el-select
|
||
v-model="form.product_area"
|
||
size="mini"
|
||
placeholder="生产区域"
|
||
class="filter-item"
|
||
style="width: 370px;"
|
||
disabled
|
||
>
|
||
<el-option
|
||
v-for="item in dict.product_area"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="轴数量">
|
||
<el-input v-model="form.have_qzz" style="width: 370px;" />
|
||
</el-form-item>
|
||
<el-form-item label="代数">
|
||
<el-select
|
||
v-model="form.qzz_generation"
|
||
size="mini"
|
||
class="filter-item"
|
||
style="width: 370px;"
|
||
>
|
||
<el-option
|
||
v-for="item in generation_list"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="尺寸">
|
||
<el-select
|
||
v-model="form.qzz_size"
|
||
size="mini"
|
||
class="filter-item"
|
||
style="width: 370px;"
|
||
>
|
||
<el-option
|
||
v-for="item in size_list"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="子卷号1">
|
||
<el-input v-model="form.container_name1" style="width: 370px;" />
|
||
</el-form-item>
|
||
<el-form-item label="子卷号2">
|
||
<el-input v-model="form.container_name2" style="width: 370px;" />
|
||
</el-form-item>
|
||
<el-form-item label="顺序号" prop="sort_seq">
|
||
<el-input v-model="form.sort_seq" style="width: 370px;" disabled/>
|
||
</el-form-item>
|
||
<el-form-item label="是否启用" prop="is_used">
|
||
<el-switch v-model="form.is_used" active-value="1" inactive-value="0" />
|
||
</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 prop="point_code" label="点位编码" width="100px" />
|
||
<el-table-column prop="label" label="点位类型" width="100px" />
|
||
<el-table-column prop="product_area" label="生产区域">
|
||
<template slot-scope="scope">
|
||
{{ dict.label.product_area[scope.row.product_area] }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="have_qzz" label="轴数量" />
|
||
<el-table-column prop="qzz_generation" label="代数" />
|
||
<el-table-column prop="qzz_size" label="尺寸" />
|
||
<el-table-column prop="container_name1" label="子卷号1" />
|
||
<el-table-column prop="container_name2" label="子卷号2" />
|
||
<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 prop="update_time" label="修改时间" show-overflow-tooltip width="150px;"/>
|
||
<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 crudPackagepointivt from '@/views/wms/pdm/ivt/package/package'
|
||
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 = {
|
||
ivt_id: null,
|
||
point_code: null,
|
||
product_area: null,
|
||
have_qzz: null,
|
||
qzz_generation: null,
|
||
qzz_size: null,
|
||
container_name1: null,
|
||
container_name2: null,
|
||
point_location: null,
|
||
sort_seq: null,
|
||
is_used: null,
|
||
remark: null,
|
||
create_id: null,
|
||
create_name: null,
|
||
create_time: null,
|
||
update_optid: null,
|
||
update_optname: null,
|
||
update_time: null
|
||
}
|
||
export default {
|
||
name: 'DeliveryPointIvt',
|
||
components: { pagination, crudOperation, rrOperation, udOperation },
|
||
dicts: ['PACKAGE_POINT_TYPE', 'product_area', 'is_used', 'point_location'],
|
||
mixins: [presenter(), header(), form(defaultForm), crud()],
|
||
cruds() {
|
||
return CRUD({
|
||
title: '内包间',
|
||
url: 'api/packagepointivt',
|
||
idField: 'ivt_id',
|
||
sort: 'ivt_id,desc',
|
||
crudMethod: { ...crudPackagepointivt },
|
||
optShow: {
|
||
add: false,
|
||
edit: false,
|
||
del: false,
|
||
download: false,
|
||
reset: true
|
||
}
|
||
})
|
||
},
|
||
data() {
|
||
return {
|
||
permission: {},
|
||
rules: {
|
||
point_code: [
|
||
{ required: true, message: '点位编码不能为空', trigger: 'blur' }
|
||
],
|
||
is_used: [
|
||
{ required: true, message: '是否启用不能为空', trigger: 'blur' }
|
||
]
|
||
},
|
||
generation_list: [{
|
||
'value': '4',
|
||
'label': '4代'
|
||
}, {
|
||
'value': '5',
|
||
'label': '5代'
|
||
}, {
|
||
'value': '6',
|
||
'label': '6代'
|
||
}],
|
||
size_list: [{
|
||
'value': '3',
|
||
'label': '3寸'
|
||
}, {
|
||
'value': '6',
|
||
'label': '6寸'
|
||
}]
|
||
}
|
||
},
|
||
methods: {
|
||
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
||
[CRUD.HOOK.beforeRefresh]() {
|
||
return true
|
||
},
|
||
hand(value) {
|
||
this.crud.toQuery()
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
|
||
</style>
|