cnhis-design-vue 0.1.75-beta → 0.1.76-beta

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": "cnhis-design-vue",
3
- "version": "0.1.75-beta",
3
+ "version": "0.1.76-beta",
4
4
  "description": "基于 Ant Desgin Vue 的UI库",
5
5
  "keyword": "cnhis-design-vue vue cnhis",
6
6
  "homepage": "http://dv.cnhis.com/",
@@ -392,18 +392,21 @@ export default create({
392
392
  ? item.showTitle
393
393
  : `${item.softcode}、${item.showTitle}`;
394
394
  if (!this.isEvaluation(type)) return tempTile;
395
- if (this.noBtn) {
396
- let score = this.handleEvaluationScore(item);
397
- return `${tempTile}&nbsp;<span style="color:#2d7aff;">${score}</span>`;
398
- }
399
- if (!this.isLock) {
400
- let score = this.handleEvaluationScore(item);
401
- return `${tempTile}&nbsp;<span style="color:#2d7aff;">${score}</span>`;
402
- }
403
- if (item.questionScore !== undefined) {
404
- return `${tempTile}&nbsp;<span style="color:#2d7aff;">(${item.questionScore}分)</span>`;
405
- }
406
- return tempTile;
395
+
396
+ let score = this.handleEvaluationScore(item);
397
+ return `${tempTile}&nbsp;<span style="color:#2d7aff;">${score}</span>`;
398
+ // if (this.noBtn) {
399
+ // let score = this.handleEvaluationScore(item);
400
+ // return `${tempTile}&nbsp;<span style="color:#2d7aff;">${score}</span>`;
401
+ // }
402
+ // if (!this.isLock) {
403
+ // let score = this.handleEvaluationScore(item);
404
+ // return `${tempTile}&nbsp;<span style="color:#2d7aff;">${score}</span>`;
405
+ // }
406
+ // if (item.questionScore !== undefined) {
407
+ // return `${tempTile}&nbsp;<span style="color:#2d7aff;">(${item.questionScore}分)</span>`;
408
+ // }
409
+ // return tempTile;
407
410
  };
408
411
  },
409
412
  hasScore() {