@nstc-business/imes 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nstc-business/imes",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <Page>
3
- <expandable-pane title="模型信息">
3
+ <expandable-pane v-if="showModelInfo" title="模型信息">
4
4
  <descriptions>
5
5
  <el-descriptions-item label="模型类型">
6
6
  <span v-if="modelData.type === 1">评价模型</span>
@@ -878,6 +878,10 @@ import {N, Page, ExpandablePane, Descriptions, TablePro} from 'n20-common-lib'
878
878
  export default {
879
879
  name: 'calculateDetail',
880
880
  props: {
881
+ showModelInfo: {
882
+ type: Boolean,
883
+ default: true
884
+ },
881
885
  modelId: String,
882
886
  logId: String
883
887
  },