| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <template>
- <div>
- <headerTitle title="委外单"></headerTitle>
- <ele-pro-table ref="table" :needPage="false" :columns="columns" :toolkit="[]" :datasource="list"
- row-key="id">
- <template v-slot:type="{ row }">
- <div v-if="row.type == 1">采购委外</div>
- <div v-if="row.type == 2">直接发货委外</div>
- <div v-if="row.type == 3">无采购委外</div>
- </template>
- <template v-slot:status="{ row }">
- <el-tag>{{ row.status == 1 ? '已发布' : '未发布' }}</el-tag>
- </template>
- <template v-slot:technicalDrawings="{ row }">
- <div v-if="row.technicalDrawings && row.technicalDrawings?.length">
- <el-link v-for="link in row.technicalDrawings" :key="link.id" type="primary" :underline="false"
- @click="downloadFile(link)">
- {{ link.name }}</el-link>
- </div>
- </template>
- <template v-slot:files="{ row }">
- <div v-if="row.files && row.files?.length">
- <el-link v-for="link in row.files" :key="link.id" type="primary" :underline="false" @click="downloadFile(link)">
- {{ link.name }}</el-link>
- </div>
- </template>
- </ele-pro-table>
- </div>
- </template>
- <script>
- import { getFile } from '@/api/system/file';
- import {
- applyOutsource,
- } from '@/api/bpm/components/purchasingManage/outSourceSendCk';
- export default {
- components: {
- },
- props: {
- businessId: {
- default: ''
- }
- },
- data() {
- return {
- detailId: '',
- list: [],
- };
- },
- computed: {
- // 表格列配置
- columns() {
- return [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '委外单编码',
- align: 'center'
- },
- {
- prop: 'name',
- label: '委外单名称',
- align: 'center'
- },
- {
- prop: 'workOrderCode',
- label: '工单编码',
- align: 'center'
- },
- {
- prop: 'taskName',
- label: '工序',
- align: 'center'
- },
-
- {
- prop: 'categoryCode',
- label: '物品Code',
- align: 'center'
- },
-
- {
- prop: 'categoryName',
- label: '名称',
- align: 'center'
- },
-
- {
- prop: 'totalCount',
- label: '委外数量',
- align: 'center'
- },
- {
- prop: 'totalWeight',
- label: '委外重量',
- align: 'center'
- },
- {
- slot: 'type',
- label: '委外类型',
- align: 'center'
- },
- {
- prop: 'remark',
- label: '备注',
- align: 'center'
- },
- {
- slot: 'requireDeliveryTime',
- label: '预计到货日期',
- align: 'center',
- minWidth: 70
- },
- {
- prop: 'produceRoutingName',
- label: '工艺路线',
- align: 'center',
- },
- {
- prop: 'warehouseName',
- label: '仓库',
- align: 'center',
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- minWidth: 70
- },
- {
- slot: 'status',
- label: '状态',
- align: 'center'
- },
- {
- label: '图片附件',
- slot: 'technicalDrawings',
- action: 'technicalDrawings',
- minWidth: 100,
- },
- {
- label: '附件',
- slot: 'files',
- action: 'files',
- minWidth: 100,
- },
-
- ];
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- },
- },
- created() {
- this.getDetailData(this.businessId);
- },
- methods: {
- downloadFile(file) {
- getFile({ objectName: file.storePath }, file.name);
- },
- async getDetailData(id) {
- this.loading = true;
- const data = await applyOutsource(id);
- this.loading = false;
- if (data) {
- this.list = [ data ];
- }
- },
- handleDetails(row) {
- this.$refs.detailsRef.open(row)
- },
- }
- };
- </script>
- <style scoped lang="scss">
- .ele-dialog-form {
- .el-form-item {
- margin-bottom: 10px;
- }
- }
- .headbox {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .amount {
- font-size: 14px;
- font-weight: bold;
- margin-right: 20px;
- }
- }
- </style>
|