| @@ -97,6 +97,7 @@ | |||||
| "modelSize": "Model Size", | "modelSize": "Model Size", | ||||
| "dataProcess": "Data Processing", | "dataProcess": "Data Processing", | ||||
| "noDataFound": "No data found.", | "noDataFound": "No data found.", | ||||
| "allHide":"All data is hidden.", | |||||
| "userDefined": "User-defined Data", | "userDefined": "User-defined Data", | ||||
| "metric": "Metrics", | "metric": "Metrics", | ||||
| "deviceNum": "Devices", | "deviceNum": "Devices", | ||||
| @@ -97,6 +97,7 @@ | |||||
| "modelSize": "模型大小", | "modelSize": "模型大小", | ||||
| "dataProcess": "数据处理", | "dataProcess": "数据处理", | ||||
| "noDataFound": "暂无满足筛选条件的数据", | "noDataFound": "暂无满足筛选条件的数据", | ||||
| "allHide":"数据已全部隐藏", | |||||
| "userDefined": "自定义数据", | "userDefined": "自定义数据", | ||||
| "metric": "度量指标", | "metric": "度量指标", | ||||
| "deviceNum": "device数目", | "deviceNum": "device数目", | ||||
| @@ -239,13 +239,26 @@ limitations under the License. | |||||
| <img :src="require('@/assets/images/nodata.png')" | <img :src="require('@/assets/images/nodata.png')" | ||||
| alt="" /> | alt="" /> | ||||
| <p class="no-data-text" | <p class="no-data-text" | ||||
| v-show="!summaryDirList || (summaryDirList && summaryDirList.length)"> | |||||
| v-show="(!summaryDirList || (summaryDirList && summaryDirList.length)) && | |||||
| (!hideTableIdList||(hideTableIdList&&!hideTableIdList.length))"> | |||||
| {{ $t('public.noData') }} | {{ $t('public.noData') }} | ||||
| </p> | </p> | ||||
| <div v-show="echartNoData && (lineagedata.serData && !!lineagedata.serData.length)&& | <div v-show="echartNoData && (lineagedata.serData && !!lineagedata.serData.length)&& | ||||
| summaryDirList && summaryDirList.length"> | summaryDirList && summaryDirList.length"> | ||||
| <p class="no-data-text">{{ $t('dataTraceback.noDataFound') }}</p> | <p class="no-data-text">{{ $t('dataTraceback.noDataFound') }}</p> | ||||
| </div> | </div> | ||||
| <div v-show="hideTableIdList && hideTableIdList.length"> | |||||
| <p class="no-data-text">{{ $t('modelTraceback.allHide') }}</p> | |||||
| <p class="no-data-text"> | |||||
| <el-button type="primary" | |||||
| size="mini" | |||||
| class="custom-btn" | |||||
| @click="showAllDataBtn" | |||||
| plain> | |||||
| {{ $t('modelTraceback.showAllData') }} | |||||
| </el-button> | |||||
| </p> | |||||
| </div> | |||||
| <div v-show="summaryDirList && !summaryDirList.length"> | <div v-show="summaryDirList && !summaryDirList.length"> | ||||
| <p class="no-data-text">{{ $t('dataTraceback.noDataFound') }}</p> | <p class="no-data-text">{{ $t('dataTraceback.noDataFound') }}</p> | ||||
| <p class="no-data-text"> | <p class="no-data-text"> | ||||
| @@ -419,8 +419,21 @@ limitations under the License. | |||||
| <img :src="require('@/assets/images/nodata.png')" | <img :src="require('@/assets/images/nodata.png')" | ||||
| alt /> | alt /> | ||||
| <p class="no-data-text" | <p class="no-data-text" | ||||
| v-show="!summaryDirList || (summaryDirList && summaryDirList.length)"> | |||||
| v-show="(!summaryDirList || (summaryDirList && summaryDirList.length)) && | |||||
| (!hideTableIdList||(hideTableIdList&&!hideTableIdList.length))"> | |||||
| {{ $t('public.noData') }}</p> | {{ $t('public.noData') }}</p> | ||||
| <div v-show="hideTableIdList && hideTableIdList.length"> | |||||
| <p class="no-data-text">{{ $t('modelTraceback.allHide') }}</p> | |||||
| <p class="no-data-text"> | |||||
| <el-button type="primary" | |||||
| size="mini" | |||||
| class="custom-btn" | |||||
| @click="showAllDatafun" | |||||
| plain> | |||||
| {{ $t('modelTraceback.showAllData') }} | |||||
| </el-button> | |||||
| </p> | |||||
| </div> | |||||
| <div v-show="summaryDirList && !summaryDirList.length"> | <div v-show="summaryDirList && !summaryDirList.length"> | ||||
| <p class="no-data-text">{{ $t('modelTraceback.noDataFound') }}</p> | <p class="no-data-text">{{ $t('modelTraceback.noDataFound') }}</p> | ||||
| <p class="no-data-text"> | <p class="no-data-text"> | ||||