diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index 1a51afda9..799e01e9e 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -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', } \ No newline at end of file diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index 842a79258..a4d0c48ec 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -1408,4 +1408,6 @@ module.exports = { inRecentYear2:'近2年内', selectAll:'全选', importLocalDisassemblyOrder:'导入本地拆解单', + notExport:'未导出', + hasBeenExport:'已导出', } \ No newline at end of file diff --git a/jero-web/src/views/businessSupport/regulationReport/components/RegulationMonthlyFill.vue b/jero-web/src/views/businessSupport/regulationReport/components/RegulationMonthlyFill.vue index d002831c3..35a2c70b1 100644 --- a/jero-web/src/views/businessSupport/regulationReport/components/RegulationMonthlyFill.vue +++ b/jero-web/src/views/businessSupport/regulationReport/components/RegulationMonthlyFill.vue @@ -14,6 +14,26 @@ :placeholder="$t('monthSelection')"/> + +
+
+ {{$t('exportStatus')}} +
+ + + + {{ item.name }} + + + +
+
{{$t('query')}} @@ -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: [],