TimeExpressionValidator.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div>
  3. <el-card class="box-card">
  4. <div v-for="res in nextNTriggerTime" :key="res" class="text item">
  5. {{ res }}
  6. </div>
  7. </el-card>
  8. </div>
  9. </template>
  10. <script setup>
  11. import { onMounted, ref, watch, defineProps } from 'vue'
  12. import { ElMessage, ElMessageBox } from 'element-plus'
  13. import { getvalidatetimeExpression } from '@/api/model/workflowManagement'
  14. // 数据传递
  15. const props = defineProps({
  16. timeExpressionType: {
  17. type: String,
  18. default: undefined
  19. },
  20. timeExpression: {
  21. type: String,
  22. default: undefined
  23. }
  24. })
  25. const nextNTriggerTime = ref([])
  26. const checkTimeExpression = async () => {
  27. let params = {
  28. timeExpressionType: props.timeExpressionType,
  29. timeExpression: timeExpressionCh.value
  30. }
  31. const res = await getvalidatetimeExpression(params)
  32. nextNTriggerTime.value = res.data
  33. }
  34. const timeExpressionCh = ref(null)
  35. onMounted(() => {
  36. console.log('type:' + props.timeExpressionType)
  37. console.log('expression:' + props.timeExpression)
  38. timeExpressionCh.value = encodeURIComponent(props.timeExpression)
  39. console.log('expressionAfterEncodeURIComponent: ' + props.timeExpression)
  40. checkTimeExpression()
  41. })
  42. </script>
  43. <style scoped>
  44. </style>