extOne.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <div class="index">
  3. <div v-if="type == '1'">
  4. <el-form ref="ruleFormRef" :model="form" :rules="rules" label-width="auto" class="form" label-position="left">
  5. <el-form-item label="初审开始时间" prop="start_time">
  6. <el-date-picker format="YYYY-MM-DD" value-format="YYYY-MM-DD" v-model="form.start_time" type="date" placeholder="请选择初审开始时间" style="width: 100%" />
  7. </el-form-item>
  8. <el-col :span="24" class="button">
  9. <el-button type="primary" @click="submitForm(ruleFormRef)">保存</el-button>
  10. </el-col>
  11. </el-form>
  12. </div>
  13. <div v-if="type == '2'">决赛准备</div>
  14. <div v-if="type == '3'">决赛开始</div>
  15. <div v-if="type == '4'">决赛结束</div>
  16. </div>
  17. </template>
  18. <script setup>
  19. import { cloneDeep } from 'lodash-es'
  20. const $checkRes = inject('$checkRes')
  21. const id = ref('')
  22. const props = defineProps({
  23. matchForm: { type: Object },
  24. type: { type: String }
  25. })
  26. const match = computed({
  27. get() {
  28. return props.matchForm
  29. }
  30. })
  31. const emits = defineEmits(['toClose'])
  32. // 接口
  33. import { MatchExtStore } from '@/store/api/platform/matchExt'
  34. const store = MatchExtStore()
  35. const form = ref({})
  36. // 表单
  37. const ruleFormRef = ref()
  38. const rules = reactive({
  39. start_time: [{ required: true, message: '请选择初审开始时间', trigger: 'blur' }]
  40. })
  41. // 保存
  42. const submitForm = async (formEl) => {
  43. if (!formEl) return
  44. await formEl.validate(async (valid, fields) => {
  45. if (valid) {
  46. const data = cloneDeep(form.value)
  47. data.id = id.value
  48. const res = await store.firstStep(data)
  49. if ($checkRes(res, true)) {
  50. emits('toClose')
  51. } else ElMessage.error(res.message)
  52. } else {
  53. console.log('error submit!', fields)
  54. }
  55. })
  56. }
  57. watch(
  58. match,
  59. async (item) => {
  60. id.value = item.id
  61. },
  62. {
  63. immediate: true //初始化立即执行
  64. }
  65. )
  66. </script>
  67. <style scoped lang="scss">
  68. .index {
  69. .button {
  70. text-align: center;
  71. }
  72. }
  73. </style>