@nstc-business/imes 1.0.15 → 1.0.16
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
|
@@ -152,12 +152,9 @@ export function digitsCalc(row, modelWrap) {
|
|
|
152
152
|
return modelWrap ? modelWrap.digits : 2
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
/**
|
|
155
|
+
/** 指标得分 / 模型指标系数数值展示(始终用 result,字段值只在「指标值」列展示) */
|
|
156
156
|
export function resultByShowStyle(row, modelWrap) {
|
|
157
157
|
let val = ''
|
|
158
|
-
if (row.sourceType === 5 && row.showValueType === 1) {
|
|
159
|
-
return row.fieldValue
|
|
160
|
-
}
|
|
161
158
|
const digits = digitsCalc(row, modelWrap)
|
|
162
159
|
if (row.showStyle === 2) {
|
|
163
160
|
val =
|