123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- <template>
- <a-modal
- title="采购入库数量"
- v-model="purchaseInQuantityModVis"
- :confirmLoading="confirmLoading"
- width="86%"
- style="top:330px;left:100px;"
- :footer="null"
- >
- <!-- tabel 加载 -->
- <a-spin :spinning="confirmLoading">
- <!-- 查询 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- <a-col :md="6" :sm="8">
- <a-form-item label="委外订单号">
- <a-input placeholder="请输入委外订单号" v-model="queryParam.aboardorderNum"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="下游委外订单号">
- <a-input placeholder="请输入下游委外订单号" v-model="queryParam.downAboardorderNum"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
- <a @click="handleToggleSearch" style="margin-left: 8px">
- {{ toggleSearchStatus ? '收起' : '展开' }}
- <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
- </a>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- table -->
- <div>
- <a-table
- :loading="loading"
- bordered
- :columns="purchaseInQuantityColumns"
- :data-source="purchaseInQuantityData"
- :pagination="false"
- >
- </a-table>
- <!-- 导出 打印 返回 -->
- <a-row style="marginTop:20px;">
- <a-col :md="24" :sm="12">
- <span style="float: right;" class="table-operator">
- <a-button type="primary" icon="download" @click="handleExportXls('采购入库数量')">导出</a-button>
- <a-button type="primary" @click="print" icon="printer" style="margin:0 10px;">打印</a-button>
- <a-button type="primary" @click="backFabricLossTable" icon="rollback">返回</a-button>
- </span>
- </a-col>
- </a-row>
- </div>
- </a-spin>
- </a-modal>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- export default {
- name: 'PurchaseInQuantityModal', // 采购入库数量 弹框
- mixins: [JeecgListMixin],
- components: { JEllipsis },
- data() {
- return {
- // 表头
- purchaseInQuantityColumns: [
- {
- title: '批号',
- dataIndex: '',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '委外订单号',
- dataIndex: 'purchaseAboardOrderNum',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '采购入库数量',
- dataIndex: 'purchaseInQuantity',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '单个物料成本',
- dataIndex: 'costPerMaterial',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '开票数',
- dataIndex: 'invoicedQuantity',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '未开票数',
- dataIndex: 'notInvoicedQuantity',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '结算数量',
- dataIndex: 'isquantity',
- width: 120,
- key: '',
- className: 'replacecolor'
- },
- {
- title: '未结算数量',
- dataIndex: 'notIsquantity',
- width: 120,
- key: '',
- className: 'replacecolor'
- }
- ],
- purchaseInQuantityData: [{}, {}, {}],
- loading: false, // 表格加载
- // orderDataform: this.$form.createForm(this),
- confirmLoading: false,
- purchaseInQuantityModVis: false,
- // 查询条件
- queryParam: {
- downAboardorderNum: '', // 下游委外订单号
- aboardorderNum: '' // 委外订单号
- }
- }
- },
- // 接收父组件 方法
- props: {
- father: {
- type: Function,
- default: null
- }
- },
- created() {},
- methods: {
- // 第一行 导出
- handleExportXls() {},
- // 打印
- print() {},
- // 返回
- backFabricLossTable() {
- console.log('返回到面料损耗表')
- // this.$router.push('fabricLoss-table')
- // this.materialsOutQuantityModVis = false
- this.close()
- },
- // 弹框查询按钮
- searchQuery() {},
- // 重置
- searchReset() {
- this.queryParam = {}
- // this.getShipmentList()
- },
- close() {
- this.$emit('close')
- this.purchaseInQuantityModVis = false
- }
- }
- }
- </script>
- <style lang="less" scoped>
- @import '~@assets/less/common.less';
- @import '~@assets/less/overwriter.less';
- /deep/ .ant-table-thead > tr > th {
- text-align: center;
- // font-weight: 700;
- }
- /deep/ .ant-table-tbody {
- text-align: center;
- }
- // /deep/ th.replacecolor {
- // background-color: #ccc;
- // }
- </style>
|