소스 검색

DOM/INT -> 国内/国际

zhongxiaoyu 2 년 전
부모
커밋
6017126169
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      src/views/dataQuery/components/DataQueryView/index.vue

+ 5 - 2
src/views/dataQuery/components/DataQueryView/index.vue

@@ -106,8 +106,8 @@
               placeholder="属性"
               clearable
             >
-              <el-option value="DOM" label="DOM" />
-              <el-option value="INT" label="INT" />
+              <el-option value="DOM" label="国内" />
+              <el-option value="INT" label="国际" />
             </el-select>
           </el-form-item>
           <el-form-item prop="sFlightDate" style="width: 148px">
@@ -363,6 +363,9 @@ const formatter: CommonTableFormatter = (row, column, cellValue, index) => {
   if (column.property.includes('Time')) {
     return value.replace(/[T|\s]+/, '\n')
   }
+  if (column.property === 'DIType' && value) {
+    return value === 'DOM' ? '国内' : '国际'
+  }
   return value
 }