Browse Source

修改页面导入显示

dev
caoyizhong 2 years ago
parent
commit
00466683fb
  1. 16
      src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
  2. 6
      src/views/wastematerials/ProcessWasteMaterialsList.vue
  3. 18
      src/views/wastematerials/ProcessWasteMaterialsLists.vue

16
src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue

@ -129,10 +129,10 @@
<!-- table区域-begin --> <!-- table区域-begin -->
<div> <div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> <!-- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">-->
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a> <!-- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>-->
<a style="margin-left: 24px" @click="onClearSelected">清空</a> <!-- <a style="margin-left: 24px" @click="onClearSelected">清空</a>-->
</div> <!-- </div>-->
<a-table <a-table
ref="table" ref="table"
@ -144,8 +144,9 @@
:dataSource="dataSource" :dataSource="dataSource"
:pagination="ipagination" :pagination="ipagination"
:loading="loading" :loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange"> @change="handleTableChange">
<!-- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"-->
<span slot="processId" slot-scope="text, record"> <span slot="processId" slot-scope="text, record">
<a href="javascript:void(0);" @click="jumpLink(text,record)"> <a href="javascript:void(0);" @click="jumpLink(text,record)">
<j-ellipsis :value="text" :length="7"/> <j-ellipsis :value="text" :length="7"/>
@ -363,6 +364,11 @@
align:"center", align:"center",
dataIndex: 'supplierBatch' dataIndex: 'supplierBatch'
}, },
{
title:'来源',
align:"center",
dataIndex: 'state'
},
{ {
title:'是否到货', title:'是否到货',
align:"center", align:"center",

6
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -40,9 +40,9 @@
<!-- 操作按钮区域 --> <!-- 操作按钮区域 -->
<div class="table-operator"> <div class="table-operator">
<a-button type="primary" icon="download" @click="handleExportXls('账外物资库')">导出</a-button> <a-button type="primary" icon="download" @click="handleExportXls('账外物资库')">导出</a-button>
<!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">--> <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<!-- <a-button type="primary" icon="import">导入</a-button>--> <a-button type="primary" icon="import">导入</a-button>
<!-- </a-upload>--> </a-upload>
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload">重置</a-button> <a-button type="primary" @click="searchReset" icon="reload">重置</a-button>
</div> </div>

18
src/views/wastematerials/ProcessWasteMaterialsLists.vue

@ -70,7 +70,7 @@
</a-form> </a-form>
</div> </div>
<div class="table-operator"> <div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> <!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
@ -80,10 +80,10 @@
<!-- table区域-begin --> <!-- table区域-begin -->
<div> <div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> <!-- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">-->
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a> <!-- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>-->
<a style="margin-left: 24px" @click="onClearSelected">清空</a> <!-- <a style="margin-left: 24px" @click="onClearSelected">清空</a>-->
</div> <!-- </div>-->
<a-table <a-table
ref="table" ref="table"
@ -94,9 +94,10 @@
:dataSource="dataSource" :dataSource="dataSource"
:pagination="ipagination" :pagination="ipagination"
:loading="loading" :loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap" class="j-table-force-nowrap"
@change="handleTableChange"> @change="handleTableChange">
<!-- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"-->
<span slot="supplierName" slot-scope="text, record"> <span slot="supplierName" slot-scope="text, record">
<j-ellipsis :value="text" :length="10"/> <j-ellipsis :value="text" :length="10"/>
@ -270,6 +271,11 @@
align:"center", align:"center",
dataIndex: 'expirationDate' dataIndex: 'expirationDate'
}, },
{
title:'来源',
align:"center",
dataIndex: 'state'
},
{ {
title:'入库时间', title:'入库时间',
align:"center", align:"center",

Loading…
Cancel
Save