考试管理-编辑、添加id重复问题

pg_adapter
dshclm 9 months ago
parent 2a0c19eb9a
commit b8062046d1

@ -301,6 +301,7 @@
} }
this.postForm.repoList.forEach(item => { this.postForm.repoList.forEach(item => {
item.repoId = item.repoId.split(",")[0].match(/\d+/)[0]; item.repoId = item.repoId.split(",")[0].match(/\d+/)[0];
item.id=''
}); });
if (this.postForm.totalScore === 0) { if (this.postForm.totalScore === 0) {
this.$notify({ this.$notify({
@ -387,17 +388,17 @@
this.repoList.splice(index, 1) this.repoList.splice(index, 1)
}, },
fetchData(id) { // fetchData(id) {
fetchDetail(id).then(response => { // fetchDetail(id).then(response => {
this.postForm = response.data // this.postForm = response.data
//
if (this.postForm.startTime && this.postForm.endTime) { // if (this.postForm.startTime && this.postForm.endTime) {
this.dateValues[0] = this.postForm.startTime // this.dateValues[0] = this.postForm.startTime
this.dateValues[1] = this.postForm.endTime // this.dateValues[1] = this.postForm.endTime
} // }
this.repoList = this.postForm.repoList // this.repoList = this.postForm.repoList
}) // })
}, // },
// 选项卡成功回调执行事件(父窗体静默更新) // 选项卡成功回调执行事件(父窗体静默更新)
successTabCallback(result) { successTabCallback(result) {
if (result.data.code == web_status.SUCCESS) { if (result.data.code == web_status.SUCCESS) {

Loading…
Cancel
Save