AaCommonProblemForm.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <a-spin :spinning="confirmLoading">
  3. <j-form-container :disabled="formDisabled">
  4. <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
  5. <a-row>
  6. <a-col :span="24">
  7. <a-form-model-item label="问题名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="problemName">
  8. <a-input v-model="model.problemName" placeholder="请输入问题名称" ></a-input>
  9. </a-form-model-item>
  10. </a-col>
  11. <a-col :span="24">
  12. <a-form-model-item label="问题名称英语" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="problemNameEnglish">
  13. <a-input v-model="model.problemNameEnglish" placeholder="请输入问题名称英语" ></a-input>
  14. </a-form-model-item>
  15. </a-col>
  16. <!-- <a-col :span="24">
  17. <a-form-model-item label="问题名称德语" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="problemNameGerman">
  18. <a-input v-model="model.problemNameGerman" placeholder="请输入问题名称德语" ></a-input>
  19. </a-form-model-item>
  20. </a-col>-->
  21. <a-col :span="24">
  22. <a-form-model-item label="问题答案" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="problemAnswer">
  23. <j-editor v-model="model.problemAnswer" />
  24. </a-form-model-item>
  25. </a-col>
  26. <a-col :span="24">
  27. <a-form-model-item label="问题答案英语" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="problemAnswerEnglish">
  28. <j-editor v-model="model.problemAnswerEnglish" />
  29. </a-form-model-item>
  30. </a-col>
  31. <!-- <a-col :span="24">
  32. <a-form-model-item label="问题答案德语" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="problemAnswerGerman">
  33. <j-editor v-model="model.problemAnswerGerman" />
  34. </a-form-model-item>
  35. </a-col>-->
  36. </a-row>
  37. </a-form-model>
  38. </j-form-container>
  39. </a-spin>
  40. </template>
  41. <script>
  42. import { httpAction, getAction } from '@/api/manage'
  43. import { validateDuplicateValue } from '@/utils/util'
  44. export default {
  45. name: 'AaCommonProblemForm',
  46. components: {
  47. },
  48. props: {
  49. //表单禁用
  50. disabled: {
  51. type: Boolean,
  52. default: false,
  53. required: false
  54. }
  55. },
  56. data () {
  57. return {
  58. model:{
  59. },
  60. labelCol: {
  61. xs: { span: 24 },
  62. sm: { span: 5 },
  63. },
  64. wrapperCol: {
  65. xs: { span: 24 },
  66. sm: { span: 16 },
  67. },
  68. confirmLoading: false,
  69. validatorRules: {
  70. problemName: [
  71. { required: true, message: '请输入问题名称!'},
  72. ],
  73. problemNameEnglish: [
  74. { required: true, message: '请输入问题名称英语!'},
  75. ],
  76. /* problemNameGerman: [
  77. { required: true, message: '请输入问题名称德语!'},
  78. ], */
  79. problemAnswer: [
  80. { required: true, message: '请输入问题答案!'},
  81. ],
  82. problemAnswerEnglish: [
  83. { required: true, message: '请输入问题答案英语!'},
  84. ],
  85. /* problemAnswerGerman: [
  86. { required: true, message: '请输入问题答案德语!'},
  87. ], */
  88. },
  89. url: {
  90. add: "/aa/aaCommonProblem/add",
  91. edit: "/aa/aaCommonProblem/edit",
  92. queryById: "/aa/aaCommonProblem/queryById"
  93. }
  94. }
  95. },
  96. computed: {
  97. formDisabled(){
  98. return this.disabled
  99. },
  100. },
  101. created () {
  102. //备份model原始值
  103. this.modelDefault = JSON.parse(JSON.stringify(this.model));
  104. },
  105. methods: {
  106. add () {
  107. this.edit(this.modelDefault);
  108. },
  109. edit (record) {
  110. getAction(this.url.queryById,{id:record.id}).then(res=>{
  111. if (res.success) {
  112. this.model = res.result;
  113. } else {
  114. this.model = Object.assign({}, record);
  115. }
  116. })
  117. this.visible = true;
  118. },
  119. submitForm () {
  120. const that = this;
  121. // 触发表单验证
  122. this.$refs.form.validate(valid => {
  123. if (valid) {
  124. that.confirmLoading = true;
  125. let httpurl = '';
  126. let method = '';
  127. if(!this.model.id){
  128. httpurl+=this.url.add;
  129. method = 'post';
  130. }else{
  131. httpurl+=this.url.edit;
  132. method = 'put';
  133. }
  134. httpAction(httpurl,this.model,method).then((res)=>{
  135. if(res.success){
  136. that.$message.success(res.message);
  137. that.$emit('ok');
  138. }else{
  139. that.$message.warning(res.message);
  140. }
  141. }).finally(() => {
  142. that.confirmLoading = false;
  143. })
  144. }
  145. })
  146. },
  147. }
  148. }
  149. </script>