bottomForm.vue 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view>
  3. </view>
  4. <!-- <view>
  5. <bottom1
  6. v-if="bottomType == '默认黑色预约报名样式'"
  7. :ownertable="ownertable"
  8. :ownerid="ownerid"
  9. :type="type"
  10. :typemx="typemx"
  11. :extrajson="extrajson"
  12. :shareuserid="shareuserid"
  13. />
  14. <bottom2 v-else-if="bottomType == '装修预算'" />
  15. </view> -->
  16. </template>
  17. <script>
  18. import bottom1 from "./bottomModules/bottom1.vue";
  19. import bottom2 from "./bottomModules/bottom2.vue";
  20. export default {
  21. components: {
  22. bottom1,
  23. bottom2,
  24. },
  25. props: {
  26. bottomType: {
  27. type: String,
  28. default: "默认黑色预约报名样式",
  29. },
  30. shareuserid: {
  31. type: [String, Number],
  32. default: 0,
  33. },
  34. ownertable: {
  35. type: String,
  36. },
  37. ownerid: {
  38. type: [String, Number],
  39. },
  40. type: {
  41. type: String,
  42. },
  43. typemx: {
  44. type: String,
  45. },
  46. extrajson: {
  47. type: Object,
  48. },
  49. },
  50. data() {
  51. return {};
  52. },
  53. };
  54. </script>
  55. <style></style>