columns.ts 780 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. const config = {
  2. type_id: {
  3. title: '类型',
  4. isok: true,
  5. api: 'getStoreType',
  6. unit: '',
  7. },
  8. area_id: {
  9. title: '会场面积',
  10. isok: false,
  11. api: 'getAreaDict',
  12. unit: '㎡',
  13. },
  14. attendance_id: {
  15. title: '容纳人数',
  16. isok: false,
  17. api: 'attendance',
  18. unit: '人',
  19. },
  20. store_spec_id: {
  21. title: '场地特色',
  22. isok: true,
  23. api: 'getStoreSpec',
  24. unit: '',
  25. },
  26. }
  27. const formData = {
  28. store_name: "", //店铺名称
  29. store_city: "2",
  30. store_city_name: '北京市',
  31. type_id: "0",
  32. type_id_title: "",
  33. area_id: "0",
  34. area_id_title: "",
  35. attendance_id: "0",
  36. attendance_id_title: "",
  37. store_spec_id: "0",
  38. store_spec_id_title: "",
  39. status: "1",
  40. page: 1,
  41. size: 10
  42. }
  43. export {
  44. config,
  45. formData,
  46. }