123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <!-- 成本分配 主表 美元费用支出 弹框 -->
- <a-modal
- title="美元费用支出"
- v-model="mainTableExpenseUSDModVis"
- :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.setNo"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="供应商">
- <a-input placeholder="请输入供应商" v-model="queryParam.supplier"></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
- bordered
- :loading="loading"
- :columns="mainTableExpenseUSDColumns"
- :data-source="mainTableExpenseUSDData"
- :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" @click="backCostAllocationTable" 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: 'MainTableExpenseUSDModVis', // 成本分配统计 主表 美元费用支出
- mixins: [JeecgListMixin],
- components: { JEllipsis },
- data() {
- return {
- loading: false, // 表格加载
- // orderDataform: this.$form.createForm(this),
- confirmLoading: false,
- mainTableExpenseUSDModVis: false,
- // 表头
- mainTableExpenseUSDColumns: [
- {
- title: '账套号',
- dataIndex: 'setNo',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '项目',
- dataIndex: 'project',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '金额',
- dataIndex: 'money',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '供应商',
- dataIndex: 'supplier',
- width: 120,
- className: 'replacecolor'
- }
- ],
- mainTableExpenseUSDData: [{}, {}],
- // 查询条件
- queryParam: {
- setNo: '', // 账套号
- supplier: '' // 供应商
- }
- }
- },
- // 接收父组件 方法
- props: {
- father: {
- type: Function,
- default: null
- }
- },
- created() {},
- methods: {
- // 返回
- backCostAllocationTable() {
- console.log('返回成本分配统计表')
- // this.$router.push('fabricLoss-table')
- // this.invoiceNumModVis = false
- this.close()
- },
- // 弹框查询按钮
- searchQuery() {},
- // 重置
- searchReset() {
- console.log('美元重置查询条件')
- this.queryParam = {}
- // this.queryParam.setNo = ''
- // this.queryParam.supplier = ''
- // this.getShipmentList()
- },
- close() {
- this.$emit('close')
- this.mainTableExpenseUSDModVis = 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>
|