|
|
|
@ -85,9 +85,17 @@ class Paperreview_item extends Component {
|
|
|
|
|
const positions = this.props.single_questions.questions[result.destination.index].position;
|
|
|
|
|
|
|
|
|
|
const url = `/item_baskets/${ids}/adjust_position.json`
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
if(this.props.match.params.type==="Intelligence") {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions,
|
|
|
|
|
exam_setting_id:this.props.match.params.id,
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
axios.post(url, data)
|
|
|
|
|
.then((result) => {
|
|
|
|
|
if (result.data.status == 0) {
|
|
|
|
@ -104,8 +112,18 @@ class Paperreview_item extends Component {
|
|
|
|
|
const ids = this.props.multiple_questions.questions[result.source.index].id;
|
|
|
|
|
const positions = this.props.multiple_questions.questions[result.destination.index].position;
|
|
|
|
|
const url = `/item_baskets/${ids}/adjust_position.json`
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
|
|
|
|
|
if(this.props.match.params.type==="Intelligence") {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions,
|
|
|
|
|
exam_setting_id:this.props.match.params.id,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
axios.post(url, data)
|
|
|
|
|
.then((result) => {
|
|
|
|
@ -125,8 +143,18 @@ class Paperreview_item extends Component {
|
|
|
|
|
const ids = this.props.judgement_questions.questions[result.source.index].id;
|
|
|
|
|
const positions = this.props.judgement_questions.questions[result.destination.index].position;
|
|
|
|
|
const url = `/item_baskets/${ids}/adjust_position.json`
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this.props.match.params.type==="Intelligence") {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions,
|
|
|
|
|
exam_setting_id:this.props.match.params.id,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
axios.post(url, data)
|
|
|
|
|
.then((result) => {
|
|
|
|
@ -145,8 +173,18 @@ class Paperreview_item extends Component {
|
|
|
|
|
const ids = this.props.program_questions.questions[result.source.index].id;
|
|
|
|
|
const positions = this.props.program_questions.questions[result.destination.index].position;
|
|
|
|
|
const url = `/item_baskets/${ids}/adjust_position.json`
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this.props.match.params.type==="Intelligence") {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions,
|
|
|
|
|
exam_setting_id:this.props.match.params.id,
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
var data = {
|
|
|
|
|
position: positions
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
axios.post(url, data)
|
|
|
|
|
.then((result) => {
|
|
|
|
|