|
@@ -1,6 +1,7 @@
|
|
|
import React, { Component } from "react";
|
|
|
import style from "../index.less";
|
|
|
import deleteIcon from '@common/images/delete.png';
|
|
|
+import deleteIconNo from '@common/images/delete_no.png';
|
|
|
import allTableIcon from '@common/images/all-table.png';
|
|
|
import level1 from "@common/images/级别1.png";
|
|
|
import checkIcon from '@common/images/check.png';
|
|
@@ -277,6 +278,7 @@ class ScaleItem extends Component {
|
|
|
<span>{item.name}:</span>
|
|
|
<div className={style['row']}>{temp}</div>
|
|
|
<div className={style["recommend"]} onClick={()=>this.props.handleRemove(false,i,passId,j)}>
|
|
|
+ <img className={style["deleteIconNo"]} src={deleteIconNo} />
|
|
|
<img className={style["deleteIcon"]} src={deleteIcon} />
|
|
|
</div>
|
|
|
</li>;
|
|
@@ -321,6 +323,7 @@ class ScaleItem extends Component {
|
|
|
<span>相关量表:</span>
|
|
|
<div className={style['row']}>{temp}</div>
|
|
|
<div className={style["recommend"]} onClick={()=>this.props.handleRemove(true,it.id)}>
|
|
|
+ <img className={style["deleteIconNo"]} src={deleteIconNo} />
|
|
|
<img className={style["deleteIcon"]} src={deleteIcon} />
|
|
|
</div>
|
|
|
</li>;
|