| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- <template>
- <div>
- <headerTitle title="Bom审批"></headerTitle>
- <div class="title">
- <div>
- 类型:{{
- this.form.bomType == 1
- ? 'PBOM'
- : this.form.bomType == 2
- ? 'MBOM'
- : this.form.bomType == 3
- ? 'ABOM'
- : 'EBOM'
- }}
- </div>
- <div> BOM编码:{{ this.form.code }} </div>
- <div> 名称:{{ this.form.name }} </div>
- <div> 编码:{{ this.form.categoryCode }} </div>
- <div> 版本:V{{ this.form.versions }}.0 </div>
- </div>
- <!-- <BOMSearch @search="reload" :statusOpt="statusOpt" /> -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :need-page="false"
- height="calc(80vh - 350px)"
- :datasource="datasource"
- class="dict-table"
- tool-class="ele-toolbar-actions"
- >
- <template v-slot:toolbar>
- <div class="toolbar_box">
- <div>
- <div v-if="taskDefinitionKey == 'Activity_0uypakw'">
- <el-input
- size="mini"
- v-model="materielDesignationPL"
- placeholder="请输入物料代号"
- style="width: 220px"
- ></el-input>
- <el-button
- size="mini"
- type="primary"
- style="margin-left: 20px"
- @click="handMaterPL"
- >批量</el-button
- >
- </div>
- <div
- v-if="
- taskDefinitionKey == 'Activity_021lrxj' ||
- taskDefinitionKey == 'Activity_1q7btlc'
- "
- >
- <el-select
- v-model="supplierIdPL"
- size="mini"
- clearable
- style="width: 200px"
- filterable
- placeholder="请选择供应商"
- >
- <el-option
- v-for="item in gysList"
- :key="item.id"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- <el-button
- size="mini"
- type="primary"
- style="margin-left: 20px"
- @click="handMaterPL2"
- >批量</el-button
- >
- </div>
- </div>
- <div
- ><span>基本数量</span>
- <el-input placeholder="请输入" v-model.number="baseCount" disabled>
- </el-input>
- <DictSelection dictName="计量单位" v-model="unit" disabled
- /></div>
- </div>
- </template>
- <template v-slot:supplierName="{ row }">
- <el-select
- v-model="row.supplierId"
- size="mini"
- clearable
- style="width: 100%"
- filterable
- placeholder="请选择供应商"
- :disabled="
- taskDefinitionKey != 'Activity_021lrxj' &&
- taskDefinitionKey != 'Activity_1q7btlc'
- "
- >
- <el-option
- v-for="(item, index) in gysList"
- :key="item.id + index"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </template>
- <template v-slot:versions="{ row }">
- <span>V{{ row.versions }}.0</span>
- </template>
- <template v-slot:materielDesignation="{ row }">
- <el-input
- size="mini"
- v-model="row.materielDesignation"
- placeholder="请输入物料代号"
- :disabled="taskDefinitionKey != 'Activity_0uypakw'"
- ></el-input>
- </template>
- </ele-pro-table>
- </div>
- </template>
- <script>
- import BOMSearch from './BOM-search.vue';
- import {
- getBomPageCategoryId,
- contactList,
- getBomGetById
- } from '@/api/bpm/components/bomApprover';
- export default {
- components: {
- BOMSearch
- },
- props: {
- businessId: {
- default: ''
- },
- taskDefinitionKey: {
- default: ''
- }
- },
- mixins: [],
- data() {
- return {
- visible: false,
- title: '',
- gysList: [],
- form: {},
- materielDesignationPL: null,
- supplierIdPL: null,
- baseCount: null,
- unit: null,
- columns: [
- {
- label: '序号',
- columnKey: 'index',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'categoryCode',
- label: '编码',
- showOverflowTooltip: true
- },
- {
- prop: 'categoryName',
- label: '名称',
- showOverflowTooltip: true
- },
- {
- prop: 'brandNum',
- label: '牌号'
- },
- {
- prop: 'modelType',
- label: '型号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'dosage',
- label: '用量',
- showOverflowTooltip: true
- },
- {
- prop: 'measuringUnit',
- label: '计量单位',
- showOverflowTooltip: true
- },
- {
- prop: 'versions',
- slot: 'versions',
- label: '版本'
- },
- {
- prop: 'materielDesignation',
- slot: 'materielDesignation',
- minWidth: 180,
- label: '物料代号'
- },
- {
- prop: 'supplierName',
- slot: 'supplierName',
- minWidth: 180,
- label: '供应商'
- },
- {
- prop: 'status ',
- label: '状态',
- formatter: (row) => {
- return this.statusOpt[+row.status];
- }
- },
- {
- prop: 'createName',
- label: '创建人',
- showOverflowTooltip: true
- },
- {
- prop: 'createTime',
- label: '创建日期',
- showOverflowTooltip: true
- }
- ],
- statusOpt: {
- '': '全部',
- 0: '草稿',
- 1: '已发布'
- }
- };
- },
- created() {
- this.getContactList();
- this.handBomDetails(this.businessId);
- },
- methods: {
- /* 表格数据源 */
- datasource({ where, page, limit }) {
- return getBomPageCategoryId({
- ...where,
- pageNum: page,
- size: -1,
- id: this.businessId,
- isResourceBom: 1
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ where });
- },
- handBomDetails(id) {
- if (id) {
- getBomGetById(id).then((res) => {
- console.log(res, '返回的数据12');
- if (Object.keys(res).length != 0) {
- this.form = res;
- this.baseCount = res.baseCount;
- this.unit = res.category.measuringUnit;
- }
- // this.form = res;
- // this.baseCount = res.baseCount;
- // this.unit = res.category.measuringUnit;
- });
- }
- },
- getContactList() {
- let param = {
- pageNum: 1,
- type: 2,
- size: -1,
- status: 1
- };
- contactList(param).then((res) => {
- this.gysList = res.list;
- });
- },
- handMaterPL() {
- let _arr = this.$refs.table.getData() || [];
- _arr.forEach((f) => {
- this.$set(f, 'materielDesignation', this.materielDesignationPL);
- });
- this.$refs.table.setData(_arr || []);
- },
- handMaterPL2() {
- let _arr = this.$refs.table.getData() || [];
- _arr.forEach((f) => {
- this.$set(f, 'supplierId', this.supplierIdPL);
- });
- this.$refs.table.setData(_arr || []);
- },
- getTableValue() {
- return this.$refs.table.getData() || [];
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .title {
- display: flex;
- > div {
- flex: 1;
- }
- margin-bottom: 15px;
- font-weight: 800;
- font-size: 16px;
- }
- :deep(.el-table__expanded-cell) {
- padding-bottom: 30px !important;
- border-bottom: 12px solid #ccffcc !important;
- }
- .toolbar_box {
- display: flex;
- justify-content: space-between;
- margin-right: 10px;
- > div {
- display: flex;
- align-items: center;
- justify-content: center;
- > span {
- width: 150px;
- }
- > div {
- margin-left: 10px;
- }
- }
- }
- </style>
|