RepositoryForm.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <a-form @submit="handleSubmit" :form="form" class="form">
  3. <a-row class="form-row" :gutter="16">
  4. <a-col :lg="6" :md="12" :sm="24">
  5. <a-form-item label="仓库名">
  6. <a-input
  7. placeholder="请输入仓库名称"
  8. v-decorator="[
  9. 'repository.name',
  10. {rules: [{ required: true, message: '请输入仓库名称', whitespace: true}]}
  11. ]" />
  12. </a-form-item>
  13. </a-col>
  14. <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
  15. <a-form-item
  16. label="仓库域名">
  17. <a-input
  18. addonBefore="http://"
  19. addonAfter=".com"
  20. placeholder="请输入"
  21. v-decorator="[
  22. 'repository.domain',
  23. {rules: [{ required: true, message: '请输入仓库域名', whitespace: true}, {validator: validate}]}
  24. ]" />
  25. </a-form-item>
  26. </a-col>
  27. <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
  28. <a-form-item
  29. label="仓库管理员">
  30. <a-select placeholder="请选择管理员" v-decorator="[ 'repository.manager', {rules: [{ required: true, message: '请选择管理员'}]} ]">
  31. <a-select-option value="王同学">王同学</a-select-option>
  32. <a-select-option value="李同学">李同学</a-select-option>
  33. <a-select-option value="黄同学">黄同学</a-select-option>
  34. </a-select>
  35. </a-form-item>
  36. </a-col>
  37. </a-row>
  38. <a-row class="form-row" :gutter="16">
  39. <a-col :lg="6" :md="12" :sm="24">
  40. <a-form-item
  41. label="审批人">
  42. <a-select placeholder="请选择审批员" v-decorator="[ 'repository.auditor', {rules: [{ required: true, message: '请选择审批员'}]} ]">
  43. <a-select-option value="王晓丽">王晓丽</a-select-option>
  44. <a-select-option value="李军">李军</a-select-option>
  45. </a-select>
  46. </a-form-item>
  47. </a-col>
  48. <a-col :xl="{span: 7, offset: 1}" :lg="{span: 8}" :md="{span: 12}" :sm="24">
  49. <a-form-item
  50. label="生效日期">
  51. <a-range-picker
  52. style="width: 100%"
  53. v-decorator="[
  54. 'repository.effectiveDate',
  55. {rules: [{ required: true, message: '请选择生效日期'}]}
  56. ]" />
  57. </a-form-item>
  58. </a-col>
  59. <a-col :xl="{span: 9, offset: 1}" :lg="{span: 10}" :md="{span: 24}" :sm="24">
  60. <a-form-item
  61. label="仓库类型">
  62. <a-select
  63. placeholder="请选择仓库类型"
  64. v-decorator="[
  65. 'repository.type',
  66. {rules: [{ required: true, message: '请选择仓库类型'}]}
  67. ]" >
  68. <a-select-option value="公开">公开</a-select-option>
  69. <a-select-option value="私密">私密</a-select-option>
  70. </a-select>
  71. </a-form-item>
  72. </a-col>
  73. </a-row>
  74. <a-form-item v-if="showSubmit">
  75. <a-button htmlType="submit" >Submit</a-button>
  76. </a-form-item>
  77. </a-form>
  78. </template>
  79. <script>
  80. export default {
  81. name: 'RepositoryForm',
  82. props: {
  83. showSubmit: {
  84. type: Boolean,
  85. default: false
  86. }
  87. },
  88. data () {
  89. return {
  90. form: this.$form.createForm(this)
  91. }
  92. },
  93. methods: {
  94. handleSubmit (e) {
  95. e.preventDefault()
  96. this.form.validateFields((err, values) => {
  97. if (!err) {
  98. this.$notification['error']({
  99. message: 'Received values of form:',
  100. description: values
  101. })
  102. }
  103. })
  104. },
  105. validate (rule, value, callback) {
  106. const regex = /^user-(.*)$/
  107. if (!regex.test(value)) {
  108. callback('需要以 user- 开头')
  109. }
  110. callback()
  111. }
  112. }
  113. }
  114. </script>
  115. <style scoped>
  116. </style>