AaPosterForm.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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="name">
  8. <a-input v-model="model.name" 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="cover">
  13. <j-upload v-model="model.cover" :reNewFile="true" :multiple="false" :beforeUpload="this.beforeUploadHandler" ></j-upload>
  14. <template slot="extra">
  15. <span>推荐比例16:9</span>
  16. </template>
  17. </a-form-model-item>
  18. </a-col>
  19. <!-- <a-col :span="24">
  20. <a-form-model-item label="链接" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="link">
  21. <a-input v-model="model.link" placeholder="请输入链接" ></a-input>
  22. </a-form-model-item>
  23. </a-col>
  24. <a-col :span="24">
  25. <a-form-model-item label="权重" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="sort">
  26. <a-input-number v-model="model.sort" placeholder="请输入权重" style="width: 100%" />
  27. </a-form-model-item>
  28. </a-col>-->
  29. </a-row>
  30. </a-form-model>
  31. </j-form-container>
  32. </a-spin>
  33. </template>
  34. <script>
  35. import { httpAction, getAction } from '@/api/manage'
  36. import { validateDuplicateValue } from '@/utils/util'
  37. export default {
  38. name: 'AaPosterForm',
  39. components: {
  40. },
  41. props: {
  42. //表单禁用
  43. disabled: {
  44. type: Boolean,
  45. default: false,
  46. required: false
  47. }
  48. },
  49. data () {
  50. return {
  51. model:{
  52. },
  53. labelCol: {
  54. xs: { span: 24 },
  55. sm: { span: 5 },
  56. },
  57. wrapperCol: {
  58. xs: { span: 24 },
  59. sm: { span: 16 },
  60. },
  61. confirmLoading: false,
  62. validatorRules: {
  63. name: [
  64. { required: true, message: '请输入资源名称!'},
  65. ],
  66. cover: [
  67. { required: true, message: '请上传资源文件!'},
  68. ],
  69. },
  70. url: {
  71. add: "/aa/aaPoster/add",
  72. edit: "/aa/aaPoster/edit",
  73. queryById: "/aa/aaPoster/queryById"
  74. }
  75. }
  76. },
  77. computed: {
  78. formDisabled(){
  79. return this.disabled
  80. },
  81. },
  82. created () {
  83. //备份model原始值
  84. this.modelDefault = JSON.parse(JSON.stringify(this.model));
  85. },
  86. methods: {
  87. add () {
  88. this.edit(this.modelDefault);
  89. },
  90. edit (record) {
  91. this.model = Object.assign({}, record);
  92. this.visible = true;
  93. },
  94. submitForm () {
  95. const that = this;
  96. // 触发表单验证
  97. this.$refs.form.validate(valid => {
  98. if (valid) {
  99. that.confirmLoading = true;
  100. let httpurl = '';
  101. let method = '';
  102. if(!this.model.id){
  103. httpurl+=this.url.add;
  104. method = 'post';
  105. }else{
  106. httpurl+=this.url.edit;
  107. method = 'put';
  108. }
  109. httpAction(httpurl,this.model,method).then((res)=>{
  110. if(res.success){
  111. that.$message.success(res.message);
  112. that.$emit('ok');
  113. }else{
  114. that.$message.warning(res.message);
  115. }
  116. }).finally(() => {
  117. that.confirmLoading = false;
  118. })
  119. }
  120. })
  121. },
  122. beforeUploadHandler(file) {
  123. let fileType = file.type;
  124. if(fileType.indexOf('image')<0 && fileType.indexOf('video')<0){
  125. this.$message.warning('请上传图片或视频');
  126. return false;
  127. }
  128. return true;
  129. },
  130. }
  131. }
  132. </script>