second.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <el-form size="small">
  3. <el-form-item>
  4. <el-radio v-model='radioValue' :label="1">
  5. 秒,允许的通配符[, - * /]
  6. </el-radio>
  7. </el-form-item>
  8. <el-form-item>
  9. <el-radio v-model='radioValue' :label="2">
  10. 周期从
  11. <el-input-number v-model='cycle01' :min="0" :max="60" /> -
  12. <el-input-number v-model='cycle02' :min="0" :max="60" /> 秒
  13. </el-radio>
  14. </el-form-item>
  15. <el-form-item>
  16. <el-radio v-model='radioValue' :label="3">
  17. <el-input-number v-model='average01' :min="0" :max="60" /> 秒开始,每
  18. <el-input-number v-model='average02' :min="0" :max="60" /> 秒执行一次
  19. </el-radio>
  20. </el-form-item>
  21. <el-form-item>
  22. <el-radio v-model='radioValue' :label="4">
  23. 指定
  24. <el-select clearable v-model="checkboxList" placeholder="可多选" multiple style="width:100%">
  25. <el-option v-for="item in 60" :key="item" :value="item-1">{{item-1}}</el-option>
  26. </el-select>
  27. </el-radio>
  28. </el-form-item>
  29. </el-form>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. radioValue: 1,
  36. cycle01: 1,
  37. cycle02: 2,
  38. average01: 0,
  39. average02: 1,
  40. checkboxList: [],
  41. checkNum: this.$options.propsData.check
  42. }
  43. },
  44. name: 'crontab-second',
  45. props: ['check', 'radioParent'],
  46. methods: {
  47. // 单选按钮值变化时
  48. radioChange() {
  49. switch (this.radioValue) {
  50. case 1:
  51. this.$emit('update', 'second', '*', 'second');
  52. this.$emit('update', 'min', '*', 'second');
  53. break;
  54. case 2:
  55. this.$emit('update', 'second', this.cycle01 + '-' + this.cycle02);
  56. break;
  57. case 3:
  58. this.$emit('update', 'second', this.average01 + '/' + this.average02);
  59. break;
  60. case 4:
  61. this.$emit('update', 'second', this.checkboxString);
  62. break;
  63. }
  64. },
  65. // 周期两个值变化时
  66. cycleChange() {
  67. if (this.radioValue == '2') {
  68. this.$emit('update', 'second', this.cycleTotal);
  69. }
  70. },
  71. // 平均两个值变化时
  72. averageChange() {
  73. if (this.radioValue == '3') {
  74. this.$emit('update', 'second', this.averageTotal);
  75. }
  76. },
  77. // checkbox值变化时
  78. checkboxChange() {
  79. if (this.radioValue == '4') {
  80. this.$emit('update', 'second', this.checkboxString);
  81. }
  82. },
  83. othChange() {
  84. //反解析
  85. let ins = this.cron.second
  86. ('反解析 second', ins);
  87. if (ins === '*') {
  88. this.radioValue = 1;
  89. } else if (ins.indexOf('-') > -1) {
  90. this.radioValue = 2
  91. } else if (ins.indexOf('/') > -1) {
  92. this.radioValue = 3
  93. } else {
  94. this.radioValue = 4
  95. this.checkboxList = ins.split(',')
  96. }
  97. }
  98. },
  99. watch: {
  100. "radioValue": "radioChange",
  101. 'cycleTotal': 'cycleChange',
  102. 'averageTotal': 'averageChange',
  103. 'checkboxString': 'checkboxChange',
  104. radioParent() {
  105. this.radioValue = this.radioParent
  106. }
  107. },
  108. computed: {
  109. // 计算两个周期值
  110. cycleTotal: function () {
  111. this.cycle01 = this.checkNum(this.cycle01, 0, 59)
  112. this.cycle02 = this.checkNum(this.cycle02, 0, 59)
  113. return this.cycle01 + '-' + this.cycle02;
  114. },
  115. // 计算平均用到的值
  116. averageTotal: function () {
  117. this.average01 = this.checkNum(this.average01, 0, 59)
  118. this.average02 = this.checkNum(this.average02, 1, 59)
  119. return this.average01 + '/' + this.average02;
  120. },
  121. // 计算勾选的checkbox值合集
  122. checkboxString: function () {
  123. let str = this.checkboxList.join();
  124. return str == '' ? '*' : str;
  125. }
  126. }
  127. }
  128. </script>