2024-05-30 13:52:06 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<!--工具栏-->
|
|
|
|
|
|
<div class="head-container">
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<div v-if="crud.props.searchToggle">
|
|
|
|
|
|
<!-- 搜索 -->
|
2024-06-21 15:20:54 +08:00
|
|
|
|
<label class="el-form-item-label">成品编码</label>
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<el-input v-model="query.bigItemCode" clearable style="width: 185px;" class="filter-item"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"/>
|
|
|
|
|
|
|
2024-06-21 15:20:54 +08:00
|
|
|
|
<label class="el-form-item-label">单品编码</label>
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<el-input v-model="query.itemCode" clearable style="width: 185px;" class="filter-item"
|
|
|
|
|
|
@keyup.enter.native="crud.toQuery"/>
|
|
|
|
|
|
|
|
|
|
|
|
<rrOperation :crud="crud"/>
|
|
|
|
|
|
</div>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
|
|
|
|
|
<crudOperation :permission="permission" :tableKey="this.$options.name"/>
|
|
|
|
|
|
<!--表单组件-->
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0"
|
|
|
|
|
|
:title="crud.status.title" width="500px">
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="80px">
|
2024-06-21 15:20:54 +08:00
|
|
|
|
<el-form-item label="成品" prop="bigItem">
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<el-select v-model="form.bigItem" value-key="id" filterable placeholder="请选择" style="width: 370px;">
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in bigItemList"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.code"
|
2024-06-13 14:53:04 +08:00
|
|
|
|
:value="item">
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<span style="float: left">{{ item.code }}</span>
|
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.name }}</span>
|
|
|
|
|
|
</el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
2024-06-21 15:20:54 +08:00
|
|
|
|
<el-form-item label="单品" prop="item">
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<el-select v-model="form.item" value-key="id" filterable placeholder="请选择" style="width: 370px;">
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in itemList"
|
|
|
|
|
|
:key="item.id"
|
|
|
|
|
|
:label="item.code"
|
2024-06-13 14:53:04 +08:00
|
|
|
|
:value="item">
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<span style="float: left">{{ item.code }}</span>
|
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.name }}</span>
|
|
|
|
|
|
</el-option>
|
|
|
|
|
|
</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.status.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
<!--表格渲染-->
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="small" style="width: 100%;"
|
|
|
|
|
|
@selection-change="crud.selectionChangeHandler">
|
|
|
|
|
|
<el-table-column type="selection" width="55"/>
|
2024-06-21 15:20:54 +08:00
|
|
|
|
<el-table-column prop="bigItem.code" label="成品编码"/>
|
|
|
|
|
|
<el-table-column prop="item.code" label="单品编码"/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
<el-table-column v-if="checkPer(['admin','bigBom:edit','bigBom:del'])" label="操作" align="center">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<udOperation
|
|
|
|
|
|
:data="scope.row"
|
|
|
|
|
|
:permission="permission"
|
|
|
|
|
|
:show-dle="false"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
<!--分页组件-->
|
2024-06-13 14:53:04 +08:00
|
|
|
|
<pagination/>
|
2024-05-30 13:52:06 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import crudBigBom from '@/api/bigBom'
|
2024-06-13 14:53:04 +08:00
|
|
|
|
import CRUD, {presenter, header, form, crud} from '@crud/crud'
|
2024-05-30 13:52:06 +08:00
|
|
|
|
import rrOperation from '@crud/RR.operation'
|
|
|
|
|
|
import crudOperation from '@crud/CRUD.operation'
|
|
|
|
|
|
import udOperation from '@crud/UD.operation'
|
|
|
|
|
|
import pagination from '@crud/Pagination'
|
|
|
|
|
|
import {getAllBigItem} from '@/api/bigItem'
|
|
|
|
|
|
import {getItemsList} from '@/api/item'
|
2024-06-13 14:53:04 +08:00
|
|
|
|
|
|
|
|
|
|
const defaultForm = {
|
|
|
|
|
|
id: null,
|
|
|
|
|
|
bigItem: null,
|
|
|
|
|
|
item: null,
|
|
|
|
|
|
quantity: null,
|
|
|
|
|
|
deptId: null,
|
|
|
|
|
|
createBy: null,
|
|
|
|
|
|
updateBy: null,
|
|
|
|
|
|
createTime: null,
|
|
|
|
|
|
updateTime: null
|
|
|
|
|
|
}
|
2024-05-30 13:52:06 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: 'BigBom',
|
2024-06-13 14:53:04 +08:00
|
|
|
|
components: {pagination, crudOperation, rrOperation, udOperation},
|
2024-05-30 13:52:06 +08:00
|
|
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
|
|
|
|
|
cruds() {
|
2024-06-13 14:53:04 +08:00
|
|
|
|
return CRUD({
|
|
|
|
|
|
title: 'Bom管理',
|
|
|
|
|
|
url: 'api/bigBom',
|
|
|
|
|
|
idField: 'id',
|
|
|
|
|
|
sort: 'id,desc',
|
|
|
|
|
|
crudMethod: {...crudBigBom},
|
|
|
|
|
|
optShow: {
|
|
|
|
|
|
add: true,
|
|
|
|
|
|
edit: false,
|
|
|
|
|
|
del: false,
|
|
|
|
|
|
reset: true,
|
|
|
|
|
|
download: true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-05-30 13:52:06 +08:00
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
bigItemList: [],
|
|
|
|
|
|
itemList: [],
|
|
|
|
|
|
permission: {
|
|
|
|
|
|
add: ['admin', 'bigBom:add'],
|
|
|
|
|
|
edit: ['admin', 'bigBom:edit'],
|
|
|
|
|
|
del: ['admin', 'bigBom:del']
|
|
|
|
|
|
},
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
bigItem: [
|
2024-06-13 14:53:04 +08:00
|
|
|
|
{required: true, message: '请选择bigItem', trigger: 'blur'}
|
2024-05-30 13:52:06 +08:00
|
|
|
|
],
|
|
|
|
|
|
item: [
|
2024-06-13 14:53:04 +08:00
|
|
|
|
{required: true, message: '请选择item', trigger: 'blur'}
|
2024-05-30 13:52:06 +08:00
|
|
|
|
],
|
|
|
|
|
|
quantity: [
|
|
|
|
|
|
{required: true, message: '数量不能为空', trigger: 'blur'}
|
|
|
|
|
|
]
|
2024-06-13 14:53:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-05-30 13:52:06 +08:00
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.getBigItem();
|
|
|
|
|
|
this.getItem();
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|
|
|
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|
|
|
|
|
return true
|
|
|
|
|
|
},
|
2024-06-13 14:53:04 +08:00
|
|
|
|
getBigItem() {
|
|
|
|
|
|
getAllBigItem({}).then(res => {
|
2024-05-30 13:52:06 +08:00
|
|
|
|
this.bigItemList = res
|
2024-06-13 14:53:04 +08:00
|
|
|
|
})
|
2024-05-30 13:52:06 +08:00
|
|
|
|
},
|
2024-06-13 14:53:04 +08:00
|
|
|
|
getItem() {
|
|
|
|
|
|
getItemsList({}).then(res => {
|
2024-05-30 13:52:06 +08:00
|
|
|
|
this.itemList = res
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|