|
@@ -138,7 +138,7 @@ const sectorStore = SectorStore()
|
|
|
const processStore = ProcessStore()
|
|
|
// 加载中
|
|
|
const loading = ref(false)
|
|
|
-
|
|
|
+const match_id = ref('')
|
|
|
// 字典表
|
|
|
const isUseList = ref([])
|
|
|
const statusList = ref([])
|
|
@@ -236,8 +236,11 @@ const toSave = async () => {
|
|
|
if (get(data, 'id')) res = await store.update({ ...data, ...other })
|
|
|
else res = await store.create({ ...data, ...other })
|
|
|
if (res.errcode == 0) {
|
|
|
+ if (res.data.id) match_id.value = res.data.id
|
|
|
+ await toProcessSave()
|
|
|
ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
|
|
|
- form.value = {}
|
|
|
+ form.value = { time: [], rules: {} }
|
|
|
+ processList.value = []
|
|
|
}
|
|
|
}
|
|
|
const toDraftSave = async () => {
|
|
@@ -252,8 +255,11 @@ const toDraftSave = async () => {
|
|
|
if (get(data, 'id')) res = await store.update({ ...data, ...other })
|
|
|
else res = await store.create({ ...data, ...other })
|
|
|
if (res.errcode == 0) {
|
|
|
+ if (res.data.id) match_id.value = res.data.id
|
|
|
+ await toProcessSave()
|
|
|
ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
|
|
|
- form.value = {}
|
|
|
+ form.value = { time: [], rules: {} }
|
|
|
+ processList.value = []
|
|
|
}
|
|
|
}
|
|
|
// 上传图片
|
|
@@ -262,15 +268,30 @@ const onUpload = (e) => {
|
|
|
form.value[model] = value
|
|
|
}
|
|
|
// 流程添加
|
|
|
+const toProcessSave = async () => {
|
|
|
+ for (const val of processList.value) {
|
|
|
+ const data = cloneDeep(val)
|
|
|
+ delete data.sid
|
|
|
+ if (!val.match) val.match = match_id.value
|
|
|
+ if (get(data, 'id')) await processStore.update(data)
|
|
|
+ else await processStore.create(data)
|
|
|
+ }
|
|
|
+}
|
|
|
+// 流程添加
|
|
|
const addProcess = () => {
|
|
|
let list = processList.value || []
|
|
|
- list.push({ sid: moment().valueOf(), name: '', time: '', is_use: '' })
|
|
|
+ list.push({ sid: moment().valueOf(), name: '', time: '', is_use: '', match: form.value.id })
|
|
|
processList.value = list
|
|
|
}
|
|
|
// 流程删除
|
|
|
const delProcess = async (e) => {
|
|
|
- let list = processList.value.filter((i) => i.sid != e.sid)
|
|
|
- processList.value = list
|
|
|
+ if (e.sid) {
|
|
|
+ let list = processList.value.filter((i) => i.sid != e.sid)
|
|
|
+ processList.value = list
|
|
|
+ } else {
|
|
|
+ let list = processList.value.filter((i) => i.id != e.id)
|
|
|
+ processList.value = list
|
|
|
+ }
|
|
|
if (e.id) await processStore.del(e.id)
|
|
|
}
|
|
|
</script>
|