|
@@ -205,7 +205,6 @@ const saveFormClick = async () => {
|
|
|
const isValidate = await formValidate(formFlowRef.value)
|
|
|
if (!isValidate) return false
|
|
|
const form = deepClone(flowFormData.value)
|
|
|
- console.log(form, 'form')
|
|
|
const fixedBranchList = form.fixedBranchList
|
|
|
fixedBranchList.forEach((ele) => {
|
|
|
delete ele.users
|
|
@@ -250,7 +249,6 @@ const handleTableDel = (row) => {
|
|
|
const { error, code } = await tasksFlowApi.removeFixedFlowData({
|
|
|
id: row?.id || '',
|
|
|
name: row?.fixedFlowName,
|
|
|
-
|
|
|
})
|
|
|
//处理数据
|
|
|
if (!error && code === 200) {
|