Quellcode durchsuchen

update 报表几处国际化

pull/4/head
g7hoo vor 2 Jahren
Ursprung
Commit
9b0f724da2
7 geänderte Dateien mit 13 neuen und 5 gelöschten Zeilen
  1. +2
    -0
      src/i18n/en.js
  2. +2
    -0
      src/i18n/zh-CN.js
  3. +2
    -1
      src/views/modules/monitoring/reportDesign.vue
  4. +1
    -1
      src/views/modules/monitoring/reportDetail.vue
  5. +2
    -1
      src/views/modules/monitoring/reportPreview.vue
  6. +2
    -1
      src/views/modules/oss/oss-upload.vue
  7. +2
    -1
      src/views/pages/login.vue

+ 2
- 0
src/i18n/en.js Datei anzeigen

@@ -31,6 +31,8 @@ t.routes['质量检查实时数据'] = 'Realtime Quality Inspection Data'
t.routes['报表总览'] = 'Report Overview'
t.routes['报表分类'] = 'Report Types'
t.routes['报表详情'] = 'Report Detail'
t.routes['报表设计'] = 'Report Design'
t.routes['报表预览'] = 'Report Preview'
t.routes['质量检测基础数据'] = 'Quality Inspection Basic Data'
t.routes['当前检测数据'] = 'Current Inspection Data'
t.routes['质量检查信息记录'] = 'Quality Inspection Records'


+ 2
- 0
src/i18n/zh-CN.js Datei anzeigen

@@ -32,6 +32,8 @@ t.routes['质量检查实时数据'] = '质量检查实时数据'
t.routes['报表总览'] = '报表总览'
t.routes['报表分类'] = '报表分类'
t.routes['报表详情'] = '报表详情'
t.routes['报表设计'] = '报表设计'
t.routes['报表预览'] = '报表预览'
t.routes['质量检测基础数据'] = '质量检测基础数据'
t.routes['当前检测数据'] = '当前检测数据'
t.routes['质量检查信息记录'] = '质量检查信息记录'


+ 2
- 1
src/views/modules/monitoring/reportDesign.vue Datei anzeigen

@@ -13,7 +13,8 @@ export default {
// url: process.env.VUE_APP_REPORT_DESIGN_URL
// url: window.SITE_CONFIG['apiURL'] + this.$http.adornUrl('/ureport/designer')
// url: this.$http.adornUrl('/ureport/designer')
url: (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + '/ureport/designer'
// url: (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + '/ureport/designer'
url: '/api/ureport/designer'
}
},
mounted() {


+ 1
- 1
src/views/modules/monitoring/reportDetail.vue Datei anzeigen

@@ -125,7 +125,7 @@ export default {
prop: 'operations',
name: i18n.t('handle'),
fixed: 'right',
width: 180,
// width: 180,
subcomponent: TableOperateComponent,
options: [{ name: 'preview', emitField: 'fileName' }, { name: 'design', emitField: 'name' }, 'edit', 'delete']
}


+ 2
- 1
src/views/modules/monitoring/reportPreview.vue Datei anzeigen

@@ -23,7 +23,8 @@ export default {
loading: true,
// url: process.env.VUE_APP_REPORT_VIEW_URL
// url: window.SITE_CONFIG['apiURL'] + this.$http.adornUrl('/ureport/preview')
url: (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + '/ureport/preview'
// url: (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + '/ureport/preview'
url: '/api/ureport/preview'
}
},
mounted() {


+ 2
- 1
src/views/modules/oss/oss-upload.vue Datei anzeigen

@@ -23,7 +23,8 @@ export default {
init() {
this.visible = true
// this.url = `${window.SITE_CONFIG['apiURL']}/sys/oss/upload?token=${Cookies.get('token')}`
this.url = (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + `/sys/oss/upload?token=${Cookies.get('token')}`
// this.url = (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + `/sys/oss/upload?token=${Cookies.get('token')}`
this.url = `/api/sys/oss/upload?token=${Cookies.get('token')}`
this.num = 0
this.fileList = []
},


+ 2
- 1
src/views/pages/login.vue Datei anzeigen

@@ -103,7 +103,8 @@ export default {
getCaptcha() {
this.dataForm.uuid = getUUID()
// this.captchaPath = `${window.SITE_CONFIG['apiURL']}/captcha?uuid=${this.dataForm.uuid}`
this.captchaPath = (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + `/captcha?uuid=${this.dataForm.uuid}`
// this.captchaPath = (process.env.NODE_ENV === 'production' ? '/api' : '/yd-monitor') + `/captcha?uuid=${this.dataForm.uuid}`
this.captchaPath = `/api/captcha?uuid=${this.dataForm.uuid}`
},
// 表单提交
dataFormSubmitHandle: debounce(


Laden…
Abbrechen
Speichern