Ver código fonte

修改赛事

zs 6 meses atrás
pai
commit
d6e4edba2b

+ 10 - 7
src/views/center/match.vue

@@ -201,7 +201,7 @@ const sectorStore = SectorStore()
 const processStore = ProcessStore()
 // 加载中
 const loading = ref(false)
-
+const match_id = ref('')
 const searchForm = ref({})
 // 列表
 const list = ref([])
@@ -375,9 +375,10 @@ const toSave = async () => {
   if (get(data, 'id')) res = await store.update({ ...data, ...other })
   else res = await store.create({ ...data, ...other })
   if ($checkRes(res, true)) {
-    toProcessSave()
-    search({ skip, limit })
-    toClose()
+    if (res.data.id) match_id.value = res.data.id
+    await toProcessSave()
+    await search({ skip, limit })
+    await toClose()
   }
 }
 const toDraftSave = async () => {
@@ -392,9 +393,10 @@ const toDraftSave = async () => {
   if (get(data, 'id')) res = await store.update({ ...data, ...other })
   else res = await store.create({ ...data, ...other })
   if ($checkRes(res, true)) {
-    toProcessSave()
-    search({ skip, limit })
-    toClose()
+    if (res.data.id) match_id.value = res.data.id
+    await toProcessSave()
+    await search({ skip, limit })
+    await toClose()
   }
 }
 // 审核保存
@@ -435,6 +437,7 @@ 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)
   }

+ 1 - 0
src/views/one/page.vue

@@ -806,6 +806,7 @@ watch(
               overflow: hidden;
               text-overflow: ellipsis;
               white-space: nowrap;
+              cursor: default;
             }
           }
         }

+ 0 - 1
src/views/search/index.vue

@@ -44,7 +44,6 @@ import project from './parts/project.vue'
 import demand from './parts/demand.vue'
 import supply from './parts/supply.vue'
 import achievement from './parts/achievement.vue'
-
 import { TagsStore } from '@/store/api/system/tags'
 const store = TagsStore()
 

+ 27 - 6
src/views/two/add/match.vue

@@ -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>

+ 2 - 2
src/views/two/index.vue

@@ -68,7 +68,7 @@ const options = [
   { id: 5, name: '发布需求', route_name: 'demand', path: '/demand', icon: 'DataBoard' },
   { id: 8, name: '行业动态', route_name: 'news2', path: '/news2', icon: 'Message' },
   { id: 9, name: '发布供给', route_name: 'supply', path: '/supply', icon: 'Notification' },
-  { id: 10, name: '发布中试', route_name: 'footplate', path: '/footplate', icon: 'TakeawayBox' },
+  // { id: 10, name: '发布中试', route_name: 'footplate', path: '/footplate', icon: 'TakeawayBox' },
   { id: 11, name: '发布赛事', route_name: 'match', path: '/match', icon: 'CollectionTag' },
   { id: 13, name: '发布项目', route_name: 'project', path: '/project', icon: 'Trophy' }
 ]
@@ -77,7 +77,7 @@ const options2 = [
   { id: 5, name: '需求管理', route_name: 'demand', path: '/demand', icon: 'DataBoard' },
   { id: 8, name: '行业动态', route_name: 'news2', path: '/news2', icon: 'Message' },
   { id: 9, name: '供给管理', route_name: 'supply', path: '/supply', icon: 'Notification' },
-  { id: 10, name: '中试管理', route_name: 'footplate', path: '/footplate', icon: 'TakeawayBox' },
+  // { id: 10, name: '中试管理', route_name: 'footplate', path: '/footplate', icon: 'TakeawayBox' },
   { id: 11, name: '赛事管理', route_name: 'match', path: '/match', icon: 'CollectionTag' },
   { id: 13, name: '项目管理', route_name: 'project', path: '/project', icon: 'Trophy' }
 ]