12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view class="hw">
- <view class="hw-header">
- <view class="syj">
- <image src="../../static/images/syj1.png" class="img" mode="heightFix"/>
- </view>
- <!-- <view class="hw-img">
- <image src="../../static/images/hw.png" class="img" mode="heightFix"/>
- </view> -->
- </view>
- <view class="hw-content">
- <view class="hw-items">
-
- <view class="scroll">
- <view @click=onViewZc style="padding: 0px 26px 0px 35px; font-size: 22px; font-weight: bold; width: 100%; "><view>请选择:</view>
- <view style="border: 1px solid #ccc; text-align: center; border-radius: 7px;width: 80%; margin: 10px auto; height: 40px; line-height: 40px; background-color: #F0F0F0;">发布场地</view>
- <view @click=onViewZc style="border: 1px solid #ccc; text-align: center; border-radius: 7px;width: 80%; margin: 10px auto;height: 40px; line-height: 40px; background-color: #F0F0F0;">发布活动</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"SoundForm",
- props:{
- dataList:{
- type:Array,
- default:()=>{
- return [];
- }
- }
- },
- data() {
- return {
-
- };
- },
- methods:{
- onViewZc(){
- uni.navigateTo({
- url:'/pages/my/index',
- })
- },
-
- }
- }
- </script>
- <style lang="scss">
- @import './SoundForm.scss'
- </style>
|