网络字典

可以改变发送请求的方式和传入相关参数,目前只有get / post俩种,默认为get,由于没有真实的接口,看控制台的network

普通用法

网络字典 - 图1

dicMethod为请求方式,dicQuery为需要传入的参数对象

  1. <avue-form :option="option" v-model="form" @submit="handleSubmit"></avue-form>
  2. <script>
  3. export default {
  4. data(){
  5. return {
  6. form:{
  7. text:'',
  8. },
  9. option:{
  10. column: [{
  11. label: '字典',
  12. prop: 'text',
  13. dicUrl:'/test',
  14. dicMethod:'post',
  15. dicQuery:{
  16. a:1
  17. },
  18. span:24,
  19. type:'select'
  20. }]
  21. }
  22. }
  23. },
  24. methods:{
  25. handleSubmit(form){
  26. this.$message.success(JSON.stringify(this.form))
  27. }
  28. }
  29. }
  30. </script>