diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index a043b7605..a17d8af46 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -1950,4 +1950,5 @@ module.exports = { lock:'lock', datacannotbeedited:'This data cannot be edited', Rematchornot:'Rematch or not', + Modifyremarks:'Modify remarks', } \ 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 445fa392b..311cc252b 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -3906,4 +3906,5 @@ module.exports = { lock:'锁定', datacannotbeedited:'该数据不能进行编辑', Rematchornot:'是否重新匹配', + Modifyremarks:'修改备注', } \ No newline at end of file diff --git a/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue b/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue index 6601d23cf..f68cf91fe 100644 --- a/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue +++ b/jero-web/src/views/otamanagement/otaAuthentication/components/detil.vue @@ -103,61 +103,55 @@
-
{{ $t('export') }}
-
{{ $t('issuenotice') }}
-
{{ $t('export') }}
-
{{ $t('BatchSetting') }}
-
{{ $t('applyforrematch') }}
-
{{ $t('preservation') }}
-
{{ $t('submit') }}
- - - - - - -
{{ $t('confirm') }}
-
{{ $t('sendBack') }} @@ -1016,24 +1010,23 @@ export default { // console.log('menuId',this.menuId) let dateName = moment(new Date()).format('YYYYMMDD') let name = '' + let url = '' switch (code){ case 'all': - name = this.softwareversion; + url = 'ota/otaManageApplyEO/allCarExportXls' break; case 'studio': - name = this.softwareversion; - break; - case 'manger': - name = this.softwareversion; + url = 'ota/otaManageApplyEO/oneCarExportXls' break; } let exportName = name + ' ' + dateName + '.xlsx' let query = { exportName: exportName, - idList: this.selectedRowKeys.join(','), + selections: this.selectedRowKeys.join(','), + ...this.queryParam } - downloadFile('split/sarFileSplitItems/exportSplitInfoZip', exportName, query, this.selectClear) + downloadFile(url, exportName, query, this.selectClear) }, // 下发通知 issuenotice(){ diff --git a/jero-web/src/views/otamanagement/otaAuthentication/components/remark.vue b/jero-web/src/views/otamanagement/otaAuthentication/components/remark.vue index 4f4bb4496..e8d571859 100644 --- a/jero-web/src/views/otamanagement/otaAuthentication/components/remark.vue +++ b/jero-web/src/views/otamanagement/otaAuthentication/components/remark.vue @@ -1,7 +1,7 @@