| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177 |
- <template>
- <ele-modal
- custom-class="ele-dialog-form long-dialog-form"
- :centered="true"
- v-if="visible"
- :visible.sync="visible"
- :title="title"
- :close-on-click-modal="false"
- width="70%"
- @close="cancel"
- :fullscreen="fullscreen"
- >
- <template slot="title">
- <modalTitle
- :title="title"
- @setFullscreen="fullscreen = !fullscreen"
- ></modalTitle>
- </template>
- <div class="switch">
- <div class="switch_left">
- <ul>
- <li
- v-for="item in tabOptions"
- :key="item.key"
- :class="{ active: activeComp == item.key }"
- @click="activeComp = item.key"
- >
- {{ item.name }}
- </li>
- </ul>
- </div>
- </div>
- <div v-if="activeComp == 'order'">
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- class="el-form-box"
- label-width="120px"
- >
- <headerTitle title="订单信息"> </headerTitle>
- <el-row>
- <el-col :span="8">
- <el-form-item label="订单编号:" prop="orderNo">
- <el-input v-model="form.orderNo" disabled></el-input>
- </el-form-item>
- <el-form-item label="来源类型" prop="relationType">
- <el-select
- v-model="form.relationType"
- filterable
- clearable
- disabled
- style="width: 100%"
- >
- <el-option :value="1" label="采购需求单"></el-option>
- <el-option :value="2" label="采购计划单"></el-option>
- <el-option :value="3" label="采购核价单"></el-option>
- <el-option :value="4" label="采购合同"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 1"
- label="采购需求单"
- prop="purchasePlanName"
- >
- <el-input
- disabled
- v-model="form.relationName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 2"
- label="采购计划单"
- prop="purchasePlanName"
- >
- <!-- <el-input-->
- <!-- @click.native="handPurchasePlan"-->
- <!-- v-model="form.purchasePlanName"-->
- <!-- placeholder="请选择"-->
- <!-- ></el-input> -->
- <el-input
- disabled
- v-model="form.relationName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 3"
- label="采购核价单"
- prop="purchasePlanName"
- >
- <el-input
- disabled
- v-model="form.relationName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- <el-form-item
- v-if="form.relationType == 4"
- label="选择合同"
- prop="contractName"
- >
- <el-input
- clearable
- v-model="form.contractName"
- disabled
- placeholder="请输入"
- />
- </el-form-item>
- <el-form-item label="需求部门:" prop="requireDeptName">
- <el-input v-model="form.requireDeptName" disabled></el-input>
- </el-form-item>
- <el-form-item label="订单类型:" prop="sourceTypeName">
- <el-input v-model="form.sourceTypeName" disabled></el-input>
- </el-form-item>
- <!-- <el-form-item-->
- <!-- label="采购订单类型:"-->
- <!-- prop="purchaseTypeName"-->
- <!-- -->
- <!-- >-->
- <!-- {{ form.purchaseTypeName }}-->
- <!-- </el-form-item>-->
- <el-form-item prop="remark" label="备注:">
- <el-input
- type="textarea"
- v-model="form.remark"
- disabled
- ></el-input>
- </el-form-item>
- <el-form-item prop="orderFiles" label="附件:">
- <fileMain v-model="form.orderFiles" type="view"></fileMain>
- <!-- <div-->
- <!-- v-if="detailData.orderFiles && detailData.orderFiles?.length"-->
- <!-- >-->
- <!-- <el-link-->
- <!-- v-for="link in detailData.orderFiles"-->
- <!-- :key="link.id"-->
- <!-- type="primary"-->
- <!-- :underline="false"-->
- <!-- @click="downloadFile(link)"-->
- <!-- >-->
- <!-- {{ link.name }}</el-link-->
- <!-- >-->
- <!-- </div>-->
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <!-- <el-form-item-->
- <!-- label="合同名称:"-->
- <!-- prop="contractName">-->
- <!-- <el-input v-model="form.contractName" disabled></el-input>-->
- <!-- </el-form-item>-->
- <el-form-item label="采购计划名称:" prop="purchasePlanName">
- <el-input v-model="form.purchasePlanName" disabled></el-input>
- </el-form-item>
- <el-form-item label="项目名称:" prop="projectName">
- <el-input v-model="form.projectName" disabled></el-input>
- </el-form-item>
- <el-form-item label="结算方式:" prop="settlementModeName">
- <el-input
- v-model="detailData.settlementModeName"
- disabled
- ></el-input>
- </el-form-item>
- <el-form-item
- prop="outsourceScene"
- label="委外场景"
- v-if="
- orderSourceType.includes(form.sourceType) && form.outsourceScene
- "
- >
- <el-select
- v-model="form.outsourceScene"
- disabled
- style="width: 100%"
- >
- <el-option
- :value="item.value"
- :label="item.label"
- v-for="item in outsourceSceneList"
- :key="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="需求人:" prop="requireUserName">
- <el-input v-model="form.requireUserName" disabled></el-input>
- </el-form-item>
- <el-form-item label="优惠后总金额:" prop="payAmount">
- <el-input v-model="form.payAmount" disabled>
- <template slot="append">元</template>
- </el-input>
- </el-form-item>
- <el-form-item label="订单总金额:" prop="totalAmount">
- <el-input v-model="form.totalAmount" disabled>
- <template slot="append">元</template>
- </el-input>
- </el-form-item>
- <!-- <el-form-item label="计价方式:">
- <el-select v-model="form.pricingWay" disabled style="width: 100%">
- <el-option :value="1" label="按数量计费"></el-option>
- <el-option :value="2" label="按重量计费"></el-option>
- </el-select>
- </el-form-item> -->
- </el-col>
- <el-col :span="8">
- <el-form-item label="订单总金额" prop="orderTotalPrice">
- <el-input v-model="form.orderTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="发货总金额" prop="sendTotalPrice">
- <el-input v-model="form.sendTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="发货总数量" prop="sendTotalCount">
- <el-input v-model="form.sendTotalCount" disabled />
- </el-form-item>
- <el-form-item label="收货总金额" prop="receiveTotalPrice">
- <el-input v-model="form.receiveTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="收货总数量" prop="receiveTotalCount">
- <el-input v-model="form.receiveTotalCount" disabled />
- </el-form-item>
- <el-form-item label="退货总金额" prop="returnTotalPrice">
- <el-input v-model="form.returnTotalPrice" disabled />
- </el-form-item>
- <el-form-item label="退货总数量" prop="returnTotalCount">
- <el-input v-model="form.returnTotalCount" disabled />
- </el-form-item>
- </el-col>
- </el-row>
- <headerTitle title="基本信息"></headerTitle>
- <el-row>
- <el-col :span="12">
- <el-form-item label="采购方名称:" prop="partaName">
- <el-input v-model="form.partaName" disabled> </el-input>
- </el-form-item>
- <el-form-item
- label="采购方统一社会信用代码:"
- prop="partaUnifiedSocialCreditCode"
- class="form_item_label"
- >
- <el-input v-model="form.partaUnifiedSocialCreditCode" disabled>
- </el-input>
- </el-form-item>
- <el-form-item label="采购方联系人:" prop="partaLinkName">
- <el-input v-model="form.partaLinkName" disabled> </el-input>
- </el-form-item>
- <el-form-item label="采购方电话:" prop="partaTel">
- <el-input v-model="form.partaTel" disabled> </el-input>
- </el-form-item>
- <el-form-item label="采购方传真:" prop="partaFax">
- <el-input v-model="form.partaFax" disabled></el-input>
- </el-form-item>
- <el-form-item label=" 采购方Email:" prop="partaEmail">
- <el-input v-model="form.partaEmail" disabled></el-input>
- </el-form-item>
- <el-form-item label="采购方地址:" prop="partaAddress">
- <el-input v-model="form.partaAddress" disabled></el-input>
- </el-form-item>
- <!-- <el-form-item
- label="客户税号"
- prop="contactAddress"
- >
- <el-input
- clearable
- v-model="form.contactAddress"
- placeholder="请输入"
- />
- </el-form-item> -->
- </el-col>
- <el-col :span="12">
- <el-form-item label="供应商名称:" prop="partbName">
- <el-input v-model="form.partbName" disabled></el-input>
- </el-form-item>
- <el-form-item
- label="供应商统一社会信用代码:"
- prop="partbUnifiedSocialCreditCode"
- class="form_item_label"
- >
- <el-input
- v-model="form.partbUnifiedSocialCreditCode"
- disabled
- ></el-input>
- </el-form-item>
- <el-form-item label="供应商联系人:" prop="partbLinkName">
- <el-input v-model="form.partbLinkName" disabled></el-input>
- </el-form-item>
- <el-form-item
- prop="partbTel"
- label="供应商联系电话:"
- class="form_item_label"
- >
- <el-input v-model="form.partbTel" disabled></el-input>
- </el-form-item>
- <el-form-item prop="partbFax" label="供应商传真:">
- <el-input v-model="form.partbFax" disabled></el-input>
- </el-form-item>
- <el-form-item label="供应商Email:" prop="partbEmail">
- <el-input v-model="form.partbEmail" disabled></el-input>
- </el-form-item>
- <el-form-item label="供应商地址:" prop="partbAddress">
- <el-input v-model="form.partbAddress" disabled></el-input>
- </el-form-item>
- <!-- <el-form-item
- label="售出方税号"
- prop="contactAddress"
- >
- <el-input
- clearable
- v-model="form.contactAddress"
- placeholder="请输入"
- />
- </el-form-item> -->
- </el-col>
- </el-row>
- </el-form>
- <el-tabs v-model="activeName" style="margin-top: 15px" type="border-card">
- <el-tab-pane label="物品清单" name="1">
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="competAnalysisListcolumns"
- :toolkit="[]"
- :datasource="detailData.productList"
- row-key="id"
- >
- <template v-slot:toolbar>
- <div class="headbox">
- <span class="amount">总计:{{ detailData.totalAmount }}元</span>
- <span class="amount"
- >应付金额:{{ detailData.payAmount }}元</span
- >
- </div>
- </template>
- <template v-slot:technicalDrawings="{ row }">
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
- </template>
- <template v-slot:requirementTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 1)">{{
- row.requirementTotalCount
- }}</el-button>
- </template>
- <template v-slot:planTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 2)">{{
- row.planTotalCount
- }}</el-button>
- </template>
- <template v-slot:inquiryTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 3)">{{
- row.inquiryTotalCount
- }}</el-button>
- </template>
- <template v-slot:contractTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 4)">{{
- row.contractTotalCount
- }}</el-button>
- </template>
- <template v-slot:doneTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 5)">{{
- row.doneTotalCount
- }}</el-button>
- </template>
- <template v-slot:waitTotalCount="{ row, $index }">
- <el-button type="text" @click="handleGetBillDetail(row, 6)">{{
- row.waitTotalCount
- }}</el-button>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- <el-tab-pane
- label="带料清单"
- name="2"
- v-if="orderSourceType.includes(form.sourceType)"
- >
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="competAnalysisListcolumns1"
- :toolkit="[]"
- :datasource="detailData.rawList"
- row-key="id"
- >
- <template v-slot:technicalDrawings="{ row }">
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- <el-tab-pane
- label="产出清单"
- name="3"
- v-if="orderSourceType.includes(form.sourceType)"
- >
- <ele-pro-table
- ref="table"
- :needPage="false"
- :columns="competAnalysisListcolumns1"
- :toolkit="[]"
- :datasource="detailData.outputList"
- row-key="id"
- >
- <template v-slot:technicalDrawings="{ row }">
- <fileMain v-model="row.technicalDrawings" type="view"></fileMain>
- </template>
- </ele-pro-table>
- </el-tab-pane>
- </el-tabs>
- </div>
- <bpmDetail
- v-if="activeComp === 'bpm' && form.processInstanceId"
- :id="form.processInstanceId"
- ></bpmDetail>
- <div v-if="activeComp == 'invoice'">
- <invoiceList :orderId="detailId"></invoiceList>
- </div>
- <div v-if="activeComp == 'returnorder'">
- <returnGoodsList :orderId="detailId"></returnGoodsList>
- </div>
- <div v-if="activeComp == 'accountstatement'">
- <accountstatementList :orderId="detailId"></accountstatementList>
- </div>
- <div slot="footer" class="footer">
- <el-button @click="cancel">返回</el-button>
- </div>
- <bill-detail-dialog
- :bill-detail-dialog-flag.sync="billDetailDialogFlag"
- v-if="billDetailDialogFlag"
- ref="billDetailDialogRef"
- ></bill-detail-dialog>
- </ele-modal>
- </template>
- <script>
- import {
- // getpurchaseorderDetail,
- getpurchaseorderDetail
- } from '@/api/purchasingManage/purchaseOrder';
- import invoiceList from '@/views/purchasingManage/purchaseOrder/orderAssociation/invoiceList.vue';
- import returnGoodsList from '@/views/purchasingManage/purchaseOrder/orderAssociation/returnGoodsList.vue';
- import accountstatementList from '@/views/purchasingManage/purchaseOrder/orderAssociation/accountstatementList.vue';
- import { getFile } from '@/api/system/file';
- import dictMixins from '@/mixins/dictMixins';
- import { copyObj } from '@/utils/util';
- import bpmDetail from '@/views/bpm/processInstance/detail.vue';
- import fileMain from '@/components/addDoc/index.vue';
- import billDetailDialog from '@/views/purchasingManage/purchaseOrder/components/billDetailDialog.vue';
- import modalTitle from '@/BIZComponents/modalTitle.vue';
- import { orderSourceType, outsourceSceneList,lbjtList } from '@/enum/dict';
- export default {
- mixins: [dictMixins],
- components: {
- billDetailDialog,
- fileMain,
- invoiceList,
- returnGoodsList,
- accountstatementList,
- bpmDetail,
- modalTitle
- },
- data() {
- return {
- orderSourceType,
- outsourceSceneList,
- processList: [
- {
- label: '是',
- value: 1
- },
- {
- label: '否',
- value: 0
- }
- ],
- activeComp: 'order',
- billDetailDialogFlag: false,
- fullscreen: false,
- tabOptions: [
- { key: 'order', name: '订单详情' },
- { key: 'bpm', name: '流程详情' },
- { key: 'invoice', name: '收货列表' },
- { key: 'returnorder', name: '退货列表' },
- { key: 'accountstatement', name: '对账列表' }
- ],
- visible: false,
- detailId: '',
- title: '详情',
- row: {},
- activeName: '1',
- form: {
- orderFiles: [{ name: '222' }]
- },
- rules: {},
- detailData: {},
- receiptPaymentListcolumns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- width: 200,
- prop: 'moneyName',
- label: '款项名称',
- slot: 'moneyName',
- align: 'center'
- },
- {
- width: 100,
- prop: 'price',
- label: '金额',
- slot: 'price',
- formatter: (_row, _column, cellValue) => {
- return _row.price + '元';
- },
- align: 'center'
- },
- {
- width: 100,
- prop: 'ratio',
- label: '比例',
- slot: 'ratio',
- formatter: (_row, _column, cellValue) => {
- return _row.ratio + '%';
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'deadLine',
- label: '截止日期',
- slot: 'deadLine',
- align: 'center'
- },
- {
- prop: 'remark',
- label: ' 说明',
- slot: 'remark',
- align: 'center'
- }
- ],
- competAnalysisListcolumns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- width: 200,
- prop: 'productName',
- label: '名称',
- slot: 'productName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'productCode',
- label: '编码',
- slot: 'productCode',
- align: 'center'
- },
- {
- width: 200,
- prop: 'productCategoryName',
- label: '类型',
- slot: 'productCategoryName',
- align: 'center'
- },
- {
- width: 160,
- prop: 'productBrand',
- label: '牌号',
- slot: 'productBrand',
- align: 'center'
- },
- {
- width: 120,
- prop: 'modelType',
- label: '型号',
- slot: 'modelType',
- align: 'center'
- },
- {
- width: 120,
- prop: 'supplierMark',
- label: '供应商代号',
- slot: 'supplierMark',
- align: 'center'
- },
- {
- width: 120,
- prop: 'specification',
- label: '规格',
- slot: 'specification',
- align: 'center'
- },
- {
- minWidth: 200,
- prop: 'taskName',
- label: '工序',
- slot: 'taskName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'requirementTotalCount',
- label: '采购需求数量',
- slot: 'requirementTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'planTotalCount',
- label: '采购计划数量',
- slot: 'planTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'inquiryTotalCount',
- label: '采购核价数量',
- slot: 'inquiryTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'contractTotalCount',
- label: '采购合同数量',
- slot: 'contractTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'doneTotalCount',
- label: '已采数量',
- slot: 'doneTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'waitTotalCount',
- label: '待采数量',
- // slot: 'waitTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'doneReceiveCount',
- label: '已收货数量',
- align: 'center'
- },
- {
- width: 80,
- prop: 'waitReceiveCount',
- label: '未收货数量',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalCount',
- label: '数量',
- slot: 'totalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'produceType',
- align: 'center',
- label: '属性类型',
- showOverflowTooltip: true,
- formatter: (row, column) => {
- if(row.produceType){
- return row.produceType.map(item=>{
- return lbjtList[item]
- }).toString()
- }
-
- }
- },
- {
- width: 120,
- prop: 'packingSpecification',
- align: 'center',
- label: '包装规格',
- showOverflowTooltip: true
- },
- {
- width: 120,
- prop: 'measuringUnit',
- label: '计量单位',
- slot: 'measuringUnit',
- align: 'center'
- },
- {
- width: 120,
- prop: 'singleWeight',
- label: '单重',
- slot: 'singleWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalWeight',
- label: '总重',
- slot: 'totalWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'weightUnit',
- label: '重量单位',
- slot: 'weightUnit',
- align: 'center'
- },
- {
- width: 160,
- prop: 'pricingWay',
- label: '计价方式',
- slot: 'pricingWay',
- align: 'center',
- formatter: (row, column) => {
- return row.pricingWay == 1
- ? '按数量计费'
- : row.pricingWay == 2
- ? '按重量计费'
- : '';
- }
- },
- {
- width: 160,
- prop: 'singlePrice',
- label: '单价',
- slot: 'singlePrice',
- align: 'center'
- },
- {
- width: 120,
- prop: 'taxRate',
- label: '税率',
- formatter: (row, column) => {
- return row.taxRate && row.taxRate + '%';
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'discountSinglePrice',
- label: '折后单价',
- slot: 'discountSinglePrice',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalPrice',
- label: '合计',
- slot: 'totalPrice',
- formatter: (_row, _column, cellValue) => {
- return _row.totalPrice + '元';
- },
- align: 'center'
- },
- {
- width: 120,
- prop: 'discountTotalPrice',
- label: '折后合计',
- slot: 'discountTotalPrice',
- formatter: (_row, _column, cellValue) => {
- return _row.discountTotalPrice + '元';
- },
- align: 'center'
- },
- {
- width: 110,
- prop: 'batchNo',
- label: '批次号',
- slot: 'batchNo',
- align: 'center'
- },
- {
- prop: 'provenance',
- label: '产地',
- slot: 'provenance',
- align: 'center',
- minWidth: 200,
- showOverflowTooltip: true,
- formatter: (row, column) => {
- return row.provenance && row.provenance.length
- ? row.provenance
- .map((item) => this.getDictValue('产地', item))
- .join(',')
- : '';
- }
- },
- // {
- // width: 120,
- // prop: 'deliveryDays',
- // label: '交期(天)',
- // slot: 'deliveryDays'
- // },
- {
- width: 160,
- prop: 'deliveryDeadline',
- label: '交期截止日期',
- slot: 'deliveryDeadline',
- align: 'center'
- },
- {
- width: 200,
- prop: 'guaranteePeriod',
- label: '质保期',
- slot: 'guaranteePeriod',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'guaranteePeriodDeadline',
- label: '质保截止日期',
- slot: 'guaranteePeriodDeadline',
- align: 'center'
- },
- {
- width: 120,
- prop: 'technicalAnswerName',
- label: '技术答疑人',
- slot: 'technicalAnswerName',
- align: 'center'
- },
- {
- width: 220,
- prop: 'technicalParams',
- label: '技术参数',
- slot: 'technicalParams',
- align: 'center'
- },
- {
- width: 240,
- prop: 'technicalDrawings',
- label: '技术图纸',
- slot: 'technicalDrawings',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 220,
- prop: 'remark',
- label: '备注',
- slot: 'remark',
- align: 'center'
- }
- ],
- competAnalysisListcolumns1: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center',
- fixed: 'left'
- },
- {
- width: 200,
- prop: 'productName',
- label: '名称',
- slot: 'productName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'productCode',
- label: '编码',
- slot: 'productCode',
- align: 'center'
- },
- {
- width: 200,
- prop: 'productCategoryName',
- label: '类型',
- slot: 'productCategoryName',
- align: 'center'
- },
- {
- width: 160,
- prop: 'productBrand',
- label: '牌号',
- slot: 'productBrand',
- align: 'center'
- },
- {
- width: 120,
- prop: 'modelType',
- label: '型号',
- slot: 'modelType',
- align: 'center'
- },
- {
- width: 120,
- prop: 'supplierMark',
- label: '供应商代号',
- slot: 'supplierMark',
- align: 'center'
- },
- {
- width: 120,
- prop: 'specification',
- label: '规格',
- slot: 'specification',
- align: 'center'
- },
- {
- minWidth: 200,
- prop: 'taskName',
- label: '工序',
- slot: 'taskName',
- align: 'center'
- },
- {
- width: 120,
- prop: 'requirementTotalCount',
- label: '采购需求数量',
- slot: 'requirementTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'planTotalCount',
- label: '采购计划数量',
- slot: 'planTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'inquiryTotalCount',
- label: '采购核价数量',
- slot: 'inquiryTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'contractTotalCount',
- label: '采购合同数量',
- slot: 'contractTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'doneTotalCount',
- label: '已采数量',
- slot: 'doneTotalCount',
- align: 'center'
- },
- {
- width: 80,
- prop: 'waitTotalCount',
- label: '待采数量',
- // slot: 'waitTotalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalCount',
- label: '数量',
- slot: 'totalCount',
- align: 'center'
- },
- {
- width: 120,
- prop: 'measuringUnit',
- label: '计量单位',
- slot: 'measuringUnit',
- align: 'center'
- },
- {
- width: 120,
- prop: 'singleWeight',
- label: '单重',
- slot: 'singleWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'totalWeight',
- label: '总重',
- slot: 'totalWeight',
- align: 'center'
- },
- {
- width: 120,
- prop: 'weightUnit',
- label: '重量单位',
- slot: 'weightUnit',
- align: 'center'
- },
- {
- width: 110,
- prop: 'batchNo',
- label: '批次号',
- slot: 'batchNo',
- align: 'center'
- },
- {
- prop: 'provenance',
- label: '产地',
- slot: 'provenance',
- align: 'center',
- minWidth: 200,
- showOverflowTooltip: true,
- formatter: (row, column) => {
- return row.provenance && row.provenance.length
- ? row.provenance
- .map((item) => this.getDictValue('产地', item))
- .join(',')
- : '';
- }
- },
- // {
- // width: 120,
- // prop: 'deliveryDays',
- // label: '交期(天)',
- // slot: 'deliveryDays'
- // },
- {
- width: 160,
- prop: 'deliveryDeadline',
- label: '交期截止日期',
- slot: 'deliveryDeadline',
- align: 'center'
- },
- {
- width: 200,
- prop: 'guaranteePeriod',
- label: '质保期',
- slot: 'guaranteePeriod',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 160,
- prop: 'guaranteePeriodDeadline',
- label: '质保截止日期',
- slot: 'guaranteePeriodDeadline',
- align: 'center'
- },
- {
- width: 120,
- prop: 'technicalAnswerName',
- label: '技术答疑人',
- slot: 'technicalAnswerName',
- align: 'center'
- },
- {
- width: 220,
- prop: 'technicalParams',
- label: '技术参数',
- slot: 'technicalParams',
- align: 'center'
- },
- {
- width: 240,
- prop: 'technicalDrawings',
- label: '技术图纸',
- slot: 'technicalDrawings',
- formatter: (_row, _column, cellValue) => {
- return (
- (_row.guaranteePeriod || '') + _row.guaranteePeriodUnitName
- );
- },
- align: 'center'
- },
- {
- width: 220,
- prop: 'remark',
- label: '备注',
- slot: 'remark',
- align: 'center'
- }
- ]
- };
- },
- created() {
- this.requestDict('产地');
- },
- methods: {
- async open(row) {
- this.activeName = '1';
- this.form = row;
- this.visible = true;
- await this.getDetailData(row.id);
- this.detailId = row.id;
- },
- handleGetBillDetail(row, type) {
- this.billDetailDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.billDetailDialogRef.open(row, type);
- });
- },
- cancel() {
- this.$nextTick(() => {
- // 关闭后,销毁所有的表单数据
- (this.form = copyObj(this.formDef)),
- (this.otherForm = copyObj(this.otherFormDef)),
- (this.tableBankData = []);
- this.tableLinkData = [];
- this.visible = false;
- });
- },
- downloadFile(file) {
- getFile({ objectName: file.storePath }, file.name);
- },
- async getDetailData(id) {
- this.loading = true;
- const data = await getpurchaseorderDetail(id);
- this.loading = false;
- if (data) {
- this.form = data;
- this.detailData = data;
- }
- }
- }
- };
- </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;
- }
- }
- .switch_left ul .active {
- border-top: 4px solid var(--color-primary);
- color: var(--color-primary-5);
- }
- .switch {
- padding-bottom: 20px;
- }
- :deep .divider .content {
- justify-content: flex-start;
- }
- </style>
|