Byd_Dg_Web/src/views/base-data/bigBom/index.vue

135 lines
5.0 KiB
Vue
Raw Normal View History

2024-05-30 13:52:06 +08:00
<template>
<div class="app-container">
<!--工具栏-->
<div class="head-container">
<!--如果想在工具栏加入更多按钮可以使用插槽方式 slot = 'left' or 'right'-->
<crudOperation :permission="permission" :tableKey="this.$options.name"/>
<!--表单组件-->
<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="small" label-width="80px">
<el-form-item label="bigItem" prop="bigItem">
<el-select v-model="form.bigItem" value-key="id" filterable placeholder="请选择" style="width: 370px;">
<el-option
v-for="item in bigItemList"
:key="item.id"
:label="item.code"
:value="item" >
<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-item label="item" prop="item">
<el-select v-model="form.item" value-key="id" filterable placeholder="请选择" style="width: 370px;">
<el-option
v-for="item in itemList"
:key="item.id"
:label="item.code"
:value="item" >
<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-item label="数量" prop="quantity">
<el-input v-model="form.quantity" style="width: 370px;" />
</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>
<!--表格渲染-->
<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" />
<el-table-column prop="id" label="id" />
<el-table-column prop="bigItem.code" label="bigitem" />
<el-table-column prop="item.code" label="item" />
<el-table-column prop="quantity" label="数量" />
<el-table-column prop="createBy" label="创建人" />
<el-table-column prop="updateBy" label="修改人" />
<el-table-column prop="createTime" label="创建时间" />
<el-table-column prop="updateTime" label="修改时间" />
<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>
<!--分页组件-->
<pagination />
</div>
</div>
</template>
<script>
import crudBigBom from '@/api/bigBom'
import CRUD, { presenter, header, form, crud } 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'
import {getAllBigItem} from '@/api/bigItem'
import {getItemsList} from '@/api/item'
const defaultForm = { id: null, bigItem: null, item: null, quantity: null, deptId: null, createBy: null, updateBy: null, createTime: null, updateTime: null }
export default {
name: 'BigBom',
components: { pagination, crudOperation, rrOperation, udOperation },
mixins: [presenter(), header(), form(defaultForm), crud()],
cruds() {
return CRUD({ title: 'Bom管理', url: 'api/bigBom', idField: 'id', sort: 'id,desc', crudMethod: { ...crudBigBom }})
},
data() {
return {
bigItemList: [],
itemList: [],
permission: {
add: ['admin', 'bigBom:add'],
edit: ['admin', 'bigBom:edit'],
del: ['admin', 'bigBom:del']
},
rules: {
bigItem: [
{ required: true, message: '请选择bigItem', trigger: 'blur'}
],
item: [
{ required: true, message: '请选择item', trigger: 'blur'}
],
quantity: [
{required: true, message: '数量不能为空', trigger: 'blur'}
]
} }
},
mounted() {
this.getBigItem();
this.getItem();
},
methods: {
// 钩子在获取表格数据之前执行false 则代表不获取数据
[CRUD.HOOK.beforeRefresh]() {
return true
},
getBigItem(){
getAllBigItem({}).then(res=>{
this.bigItemList = res
})
},
getItem(){
getItemsList({}).then(res=>{
this.itemList = res
})
},
}
}
</script>
<style scoped>
</style>