1.修改三期优化点

This commit is contained in:
sunFlower
2022-09-23 09:29:14 +08:00
parent 787fa17f61
commit 127e04110e
3 changed files with 34 additions and 0 deletions
+2
View File
@@ -1307,4 +1307,6 @@ module.exports = {
inRecentYear2:'In recent 2 year',
selectAll:'Select All',
importLocalDisassemblyOrder:'Import local disassembly order',
notExport:'Not export',
hasBeenExport:'Has been export',
}
+2
View File
@@ -1408,4 +1408,6 @@ module.exports = {
inRecentYear2:'近2年内',
selectAll:'全选',
importLocalDisassemblyOrder:'导入本地拆解单',
notExport:'未导出',
hasBeenExport:'已导出',
}
@@ -14,6 +14,26 @@
:placeholder="$t('monthSelection')"/>
</div>
</a-col>
<a-col :md="6" :sm="8">
<div class="box-title-text">
<div class="title-text" :title="$t('exportStatus')">
<span>{{$t('exportStatus')}}</span>
</div>
<a-select :placeholder="$t('PleaseSelect')+$t('exportStatus')"
class="box-input"
:getPopupContainer="triggerNode=> triggerNode.parentNode"
allowClear
v-model="queryParam.exportState">
<a-select-option v-for="(item, key) in exportStatusList"
:key="key"
:value="item.value">
<span style="display: inline-block;width: 100%" :title=" item.name">
{{ item.name }}
</span>
</a-select-option>
</a-select>
</div>
</a-col>
<span style="float: right;overflow: hidden;margin-right: 11px" class="table-page-search-submitButtons">
<a-col :md="6" :sm="24">
<a-button class="box-button" type="primary" @click="searchQuery">{{$t('query')}}</a-button>
@@ -97,6 +117,16 @@
list: '/report/lawsMonthlyReportWriteEO/page',
exportData: '/report/lawsMonthlyReportWriteEO/exportMonthlyReport'
},
exportStatusList:[
{
value:'2',
name:this.$t('hasBeenExport')
},
{
value:'1',
name:this.$t('notExport')
}
],
loading: false,
dataSource: [],
selectedRowKeys: [],