修改 上报库管理的id生成

This commit is contained in:
范强强
2023-03-30 16:34:39 +08:00
parent fcc1d8bee5
commit b5780eceee
3 changed files with 5 additions and 3 deletions
+1
View File
@@ -1742,4 +1742,5 @@ module.exports = {
uploadedfilelarger:'The uploaded file is larger than 50 MB',
marketCertificationList:'Market Certification List',
uploadedfilelarger:'The uploaded file is larger than',
marketCertificationListDetails:'Market Certification List Details',
}
+1
View File
@@ -1844,4 +1844,5 @@ module.exports = {
uploadedfilelarger:'文件大于',
uploadedfilelarger:'文件大于50M',
marketCertificationList:'市场认证清单',
marketCertificationListDetails:'市场认证清单详情',
}
@@ -354,7 +354,7 @@
},
created() {
if (this.$route.query.title == '市场认证清单详情') {
document.title = this.$t('virtualAuthenticationListDetails')
document.title = this.$t('marketCertificationListDetails')
this.columns.splice(7, 1)
} else {
document.title = this.$t('certificationListMaintenance')
@@ -393,7 +393,7 @@
},
//模板下载
handleModule() {
downloadFile(this.url.exportTemplate, this.$t('VirtualAuthenticationList') + this.$t('importTemplate') + '.xls', {})
downloadFile(this.url.exportTemplate, this.$t('certificationList') + this.$t('importTemplate') + '.xls', {})
},
//调取
transferClick() {
@@ -411,7 +411,7 @@
ids: selectedRowKeys.join(','),
authDummyInventoryBaseId: this.$route.query.id
}
downloadFile(this.url.exportData, this.$route.query.name + this.$t('VirtualAuthenticationList') + '.zip', query, this.Deselect)
downloadFile(this.url.exportData, this.$route.query.name + this.$t('certificationList') + '.zip', query, this.Deselect)
},
Deselect() {
this.selectedRowKeys = []