mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
合并冲突
This commit is contained in:
@@ -462,21 +462,12 @@ async function confirm() {
|
|||||||
throw Error("数据校验不通过");
|
throw Error("数据校验不通过");
|
||||||
});
|
});
|
||||||
if (taskIndex.value === -1) {
|
if (taskIndex.value === -1) {
|
||||||
<<<<<<< HEAD
|
|
||||||
let list = props.taskList
|
let list = props.taskList
|
||||||
list.push(
|
list.push(
|
||||||
{name: formData.value.liveName,
|
{name: formData.value.liveName,
|
||||||
type: props.type,
|
type: props.type,
|
||||||
info: {...formData.value}
|
info: {...formData.value}
|
||||||
})
|
})
|
||||||
=======
|
|
||||||
const list = props.taskList;
|
|
||||||
list.push({
|
|
||||||
name: formData.value.liveName,
|
|
||||||
type: props.type,
|
|
||||||
info: { ...formData.value },
|
|
||||||
});
|
|
||||||
>>>>>>> 3e84518fc6431b5650dd225e2a6ff09936fbffe0
|
|
||||||
} else {
|
} else {
|
||||||
const data = props.taskList[taskIndex.value];
|
const data = props.taskList[taskIndex.value];
|
||||||
data.name = formData.value.liveName;
|
data.name = formData.value.liveName;
|
||||||
|
|||||||
Reference in New Issue
Block a user