123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- <template>
- <!-- 装箱单-成衣列表 -->
- <div id="clothesList">
- <!-- 查询 -->
- <a-card :bordered="false">
- <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.orderNum"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="款号">
- <a-input placeholder="请输入款号" v-model="queryParam.styleNum"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="品名">
- <a-input placeholder="请输入品名" v-model="queryParam.name"></a-input>
- </a-form-item>
- </a-col>
- <template v-if="toggleSearchStatus">
- <a-col :md="6" :sm="8">
- <a-form-item label="托书号">
- <a-input placeholder="请输入托书号" v-model="queryParam.bookNum"></a-input>
- </a-form-item>
- </a-col>
- </template>
- <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>
- </a-card>
- <!-- 操作按钮区域 推送 导入 新增-->
- <a-card :bordered="false" style="marginTop:10px;">
- <div class="table-operator">
- <a-button type="primary" @click="push" icon="export">推送</a-button>
- <a-upload
- name="file"
- :showUploadList="false"
- :multiple="false"
- :headers="tokenHeader"
- :action="importExcelUrl"
- @change="handleImportExcel"
- >
- <a-button type="primary" icon="import">导入</a-button>
- </a-upload>
- <a-button type="primary" @click="openClothesAdd" icon="plus">新增</a-button>
- </div>
- <!-- table rowKey="id"-->
- <a-table
- bordered
- :columns="clothesListColumns"
- :data-source="clothesListData"
- :loading="loading"
- :pagination="ipagination"
- :row-key="record => record.id"
- :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
- @change="handleTableChange"
- :scroll="{ x: 1500 }"
- >
- <!-- 集装箱号 输入框-->
- <a-form-model
- slot="containerNo"
- slot-scope="text, record"
- :ref="record.index"
- :model="record"
- style="width:100%;height:40px"
- >
- <a-form-model-item prop="containerNo">
- <a-input style="width:100%" v-model="record.containerNo" />
- </a-form-model-item>
- </a-form-model>
- <!-- 预托书号 -->
- <a-form-model
- slot="preBookNum"
- slot-scope="text, record"
- :ref="record.index"
- :model="record"
- style="width:100%;height:40px"
- >
- <a-form-model-item prop="preBookNum">
- <a-input style="width:100%" v-model="record.preBookNum" />
- </a-form-model-item>
- </a-form-model>
- <!-- 状态 -->
- <!-- slot-scope="text, record" -->
- <span slot="stateSlot">
- <!-- v-if="record.isRelease == '0'" -->
- <a-tag color="#f50">保存</a-tag>
- <!-- <a-tag color="#87d068" v-else>已提交</a-tag> -->
- </span>
- <!-- 推送状态 -->
- <span slot="pushState">
- <!-- v-if="record.isRelease == '0'" -->
- <a-tag color="#f50">保存</a-tag>
- <!-- <a-tag color="#87d068" v-else>已提交</a-tag> -->
- </span>
- <!-- 单据状态 -->
- <span slot="documentState">
- <!-- v-if="record.isRelease == '0'" -->
- <a-tag color="#f50">提交</a-tag>
- <!-- <a-tag color="#87d068" v-else>已提交</a-tag> -->
- </span>
- <!-- 操作 -->
- <span slot="operationSlot" slot-scope="text, record">
- <a @click="accessoryUpload(record)" style="color:green;">附件上传</a>
- <a-divider type="vertical" />
- <a-dropdown>
- <a class="ant-dropdown-link">更多<a-icon type="down"/></a>
- <a-menu slot="overlay">
- <a-menu-item><a @click="submit(record)">提交</a></a-menu-item>
- <a-menu-item><a @click="details(record)">详情</a></a-menu-item>
- <a-menu-item><a @click="edit(record)">编辑</a></a-menu-item>
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" ok-text="是" cancel-text="否" @confirm="handleDelete(record.id)">
- <a href="javascript:void(0);" style="color:red;">删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </span>
- </a-table>
- </a-card>
- <!-- 抽屉 -->
- <div>
- <clothesAdd-drawer ref="clothesAddDrawer" :father="aa" @ok="modalFormOk"></clothesAdd-drawer>
- <detailsClothes-drawer ref="detailsClothesDrawer" :father="bb" @ok="modalFormOk"></detailsClothes-drawer>
- <editClothes-drawer ref="editClothesDrawer" :father="cc" @ok="modalFormOk"></editClothes-drawer>
- </div>
- </div>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import clothesAddDrawer from '@views/packing-list/packinglist-clothes/clothesAddDrawer.vue'
- import detailsClothesDrawer from '@views/packing-list/packinglist-clothes/detailsClothesDrawer.vue'
- import editClothesDrawer from '@views/packing-list/packinglist-clothes/editClothesDrawer.vue'
- export default {
- name: 'ClothesList', // 装箱单-成衣列表
- mixins: [JeecgListMixin],
- components: { JEllipsis, clothesAddDrawer, detailsClothesDrawer, editClothesDrawer },
- data() {
- let ellipsis = (v, l = 20) => <j-ellipsis value={v} length={l} /> // 省略
- return {
- // 表头
- clothesListColumns: [
- {
- title: '款号',
- dataIndex: 'styleNum',
- width: 120,
- fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '客户简称',
- dataIndex: 'customerShortName',
- width: 120,
- fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '预发货日期',
- dataIndex: 'scheduledShipDate',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '小po',
- dataIndex: 'smallPo',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '分销点',
- dataIndex: 'distributionPoint',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '存货名称',
- dataIndex: 'inventoryName',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '颜色',
- dataIndex: 'color',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '采购/委外订单号',
- dataIndex: 'purchaseAboardOrderNum',
- width: 160,
- className: 'replacecolor'
- },
- {
- title: '订单类型',
- dataIndex: 'orderType',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '工厂单价',
- dataIndex: 'factoryPeice',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '数量(按合并规则累计)',
- dataIndex: 'quantity',
- width: 200,
- className: 'replacecolor'
- },
- {
- title: '箱数',
- dataIndex: 'boxesNum',
- width: 90,
- className: 'replacecolor'
- },
- {
- title: '总净重',
- dataIndex: 'totalSuttle',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '总毛重',
- dataIndex: 'totalRoughWeigh',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '总体积',
- dataIndex: 'totalVolume',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '总价',
- dataIndex: 'totalPrices',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '集装箱代号',
- dataIndex: 'containerCode',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '集装箱号',
- dataIndex: 'containerNo',
- width: 140,
- scopedSlots: { customRender: 'containerNo' },
- className: 'replacecolor'
- },
- {
- title: '预托书号',
- dataIndex: 'preBookNum',
- width: 160,
- scopedSlots: { customRender: 'preBookNum' },
- className: 'replacecolor'
- },
- {
- title: '成衣工厂',
- dataIndex: 'clothesFactory',
- width: 140,
- customRender: t => ellipsis(t),
- className: 'replacecolor'
- },
- {
- title: '推送状态',
- dataIndex: 'pushState',
- width: 90,
- scopedSlots: { customRender: 'pushState' },
- className: 'replacecolor'
- },
- {
- title: '单据状态',
- dataIndex: 'documentState',
- width: 90,
- scopedSlots: { customRender: 'documentState' },
- className: 'replacecolor'
- },
- {
- title: '原因',
- dataIndex: 'reason',
- width: 180,
- customRender: t => ellipsis(t),
- className: 'replacecolor'
- },
- {
- title: '是否云工厂推送',
- dataIndex: 'isPushCloudfactory ',
- width: 90,
- // scopedSlots: { customRender: 'isPushCloudfactory' },
- className: 'replacecolor'
- },
- {
- title: '托书号',
- dataIndex: 'bookNum',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '外销发票号',
- dataIndex: 'exportInvoiceNo',
- width: 120,
- className: 'replacecolor'
- },
- {
- title: '状态',
- dataIndex: 'state',
- width: 80,
- fixed: 'right',
- scopedSlots: { customRender: 'stateSlot' },
- className: 'replacecolor'
- },
- {
- title: '操作',
- dataIndex: 'operation',
- scopedSlots: { customRender: 'operationSlot' },
- width: 160,
- fixed: 'right',
- className: 'replacecolor'
- }
- ],
- clothesListData: [{}, {}, {}],
- selectedRowKeys: [], // 勾选航
- loading: false, // 表格加载
- // 查询条件
- queryParam: {
- orderNum: '',
- styleNum: '',
- name: '', // 品名
- bookNum: '' // 托书号
- },
- url: {
- // syncUser: '/act/process/extActProcess/doSyncUser',
- list: '/sys/user/list',
- // delete: '/sys/user/delete',
- // deleteBatch: '/sys/user/deleteBatch',
- exportXlsUrl: '/sys/user/exportXls', // 导出
- importExcelUrl: 'sys/user/importExcel' // 导入
- }
- }
- },
- created() {
- // this.getAdPaListClothes()
- },
- methods: {
- // 推送
- push() {},
- // 导入
- importData() {},
- // 新增
- openClothesAdd() {
- console.log('新增-成衣')
- this.$refs.clothesAddDrawer.visible = true
- },
- // --------------------------------------
- // 查询按钮
- searchQuery() {
- // this.getAnnList() // 装箱单-成衣列表
- },
- searchReset() {
- // console.log('>>>>重置')
- this.queryParam = {}
- // this.getAnnList()
- },
- // --------------------------------------
- // 操作 附件上传
- accessoryUpload() {},
- // 操作 提交
- submit() {},
- // 操作 详情
- details(record) {
- console.log('详情')
- console.log('点击的record', record.id)
- this.$refs.detailsClothesDrawer.visible = true
- },
- // 操作 编辑
- edit(record) {
- console.log('编辑')
- this.$refs.editClothesDrawer.visible = true
- },
- // 操作 删除
- handleDelete() {},
- // --------------------------------------
- // ??
- modalFormOk() {},
- // 选中行
- onSelectChange(keys, rows) {
- this.selectedRowKeys = keys
- this.selectedRows = rows
- },
- // --------------------------------------
- aa() {},
- bb() {},
- cc() {}
- // 分页、排序、筛选变化时触发
- // handleTableChange(pagination, filters, sorter) {
- // // console.log('当前页信息>>>>',pagination)
- // this.queryParam.pageNo = pagination.current
- // // this.getAnnList()
- // }
- },
- computed: {
- // 导入
- importExcelUrl: function() {
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
- },
- // 选中项
- rowSelection() {
- return {
- onChange: (selectedRowKeys, selectedRows) => {
- console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows)
- },
- getCheckboxProps: record => ({
- props: {
- disabled: record.title === 'Disabled User',
- // Column configuration not to be checked
- title: record.title
- }
- })
- }
- }
- },
- mounted() {}
- }
- </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>
|