|
@@ -77,11 +77,12 @@ class PrimarySelect extends Component {
|
|
|
|
|
|
render() {
|
|
|
const Datas = this.props.searchSelectData;
|
|
|
+ const newShiroList = window.adminData.shiroList.split(",") || [];
|
|
|
return (
|
|
|
<Select
|
|
|
style={{ width: Datas.width, marginRight: 10 }}
|
|
|
placeholder={Datas.placeholder}
|
|
|
- disabled={this.props.shiroList == "yxgly" && Datas.placeholder == "审核状态"}
|
|
|
+ disabled={!newShiroList.includes("99") && this.props.shiroList == "yxgly" && Datas.placeholder == "审核状态"}
|
|
|
value={this.state.value}
|
|
|
onChange={e => {
|
|
|
Datas.getValue(e);
|