12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view>
- <bottom1
- v-if="bottomType == '默认黑色预约报名样式'"
- :ownertable="ownertable"
- :ownerid="ownerid"
- :type="type"
- :typemx="typemx"
- :extrajson="extrajson"
- :shareuserid="shareuserid"
- />
- <bottom2 v-else-if="bottomType == '装修预算'" />
- </view>
- </template>
- <script>
- import bottom1 from "./bottomModules/bottom1.vue";
- import bottom2 from "./bottomModules/bottom2.vue";
- export default {
- components: {
- bottom1,
- bottom2,
- },
- props: {
- bottomType: {
- type: String,
- default: "默认黑色预约报名样式",
- },
- shareuserid: {
- type: [String, Number],
- default: 0,
- },
- ownertable: {
- type: String,
- },
- ownerid: {
- type: [String, Number],
- },
- type: {
- type: String,
- },
- typemx: {
- type: String,
- },
- extrajson: {
- type: Object,
- },
- },
- data() {
- return {};
- },
- };
- </script>
- <style></style>
|