|
|
@ -355,6 +355,8 @@ export default class TPMsettings extends Component {
|
|
|
|
// this.evaluate_scriptMD(response.data.shixun.evaluate_script, "shixunmemoMD");
|
|
|
|
// this.evaluate_scriptMD(response.data.shixun.evaluate_script, "shixunmemoMD");
|
|
|
|
|
|
|
|
|
|
|
|
this.descriptionMD(response.data.shixun.description, "shixundescription");
|
|
|
|
this.descriptionMD(response.data.shixun.description, "shixundescription");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// this.bigClass()
|
|
|
|
// if (response.data.shixun.status === 2) {
|
|
|
|
// if (response.data.shixun.status === 2) {
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// } else if (response.data.shixun.status === 1) {
|
|
|
|
// } else if (response.data.shixun.status === 1) {
|
|
|
@ -506,6 +508,7 @@ export default class TPMsettings extends Component {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bigClass = (value) => {
|
|
|
|
bigClass = (value) => {
|
|
|
|
|
|
|
|
|
|
|
|
let url = `/shixuns/get_mirror_script.json?mirror_id=`+value;
|
|
|
|
let url = `/shixuns/get_mirror_script.json?mirror_id=`+value;
|
|
|
|
axios.get(url).then((response) => {
|
|
|
|
axios.get(url).then((response) => {
|
|
|
|
if (response.status === 200) {
|
|
|
|
if (response.status === 200) {
|
|
|
@ -1072,7 +1075,7 @@ export default class TPMsettings extends Component {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const dateFormat = 'YYYY-MM-DD HH:mm:ss';
|
|
|
|
const dateFormat = 'YYYY-MM-DD HH:mm:ss';
|
|
|
|
let operateauthority=this.props.identity<4&&this.props.status==0||this.props.identity===1&&this.props.status==2||this.props.identity===1&&this.props.status==1;
|
|
|
|
let operateauthority=this.props.identity===1?true:this.props.identity<4&&this.props.status==0;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className="educontent mt30 mb50" id="shixun_settings_show" onClick={this.bigopens} onMouseEnter={this.bigopens}>
|
|
|
|
<div className="educontent mt30 mb50" id="shixun_settings_show" onClick={this.bigopens} onMouseEnter={this.bigopens}>
|
|
|
@ -1277,12 +1280,12 @@ export default class TPMsettings extends Component {
|
|
|
|
onMouseEnter={operateauthority?this.sbigopen:""}
|
|
|
|
onMouseEnter={operateauthority?this.sbigopen:""}
|
|
|
|
onSelect={operateauthority?this.bigopens:""}
|
|
|
|
onSelect={operateauthority?this.bigopens:""}
|
|
|
|
open={operss}
|
|
|
|
open={operss}
|
|
|
|
value={choice_standard_scripts === undefined||choice_standard_scripts === null ? undefined : choice_standard_scripts.id}
|
|
|
|
value={choice_standard_scripts === undefined||choice_standard_scripts === null ? undefined :choice_standard_scripts.id===undefined?choice_standard_scripts:choice_standard_scripts.id}
|
|
|
|
onChange={operateauthority?this.SelectScput:""}>
|
|
|
|
onChange={operateauthority?this.SelectScput:""}>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
standard_scripts === undefined ? "" : standard_scripts.map((item, key) => {
|
|
|
|
standard_scripts === undefined ? "" : standard_scripts.map((item, key) => {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<Option value={item.id} name={item.scptname} key={key}>{item.scptname}</Option>
|
|
|
|
<Option value={parseInt(item.id)} name={item.scptname} key={key}>{item.scptname}</Option>
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|