1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view>
- <view class="status-btn" @click="onAdd">申请</view>
- </view>
- </template>
- <script setup>
- const onAdd = () => {
- uni.navigateTo({
- url: `/pages_home/pages/register/index?data=${encodeURIComponent(JSON.stringify({
- icon: '/static/Tioimages/15-旅游服务-01.png',
- name: '旅游服务',
- key: 7,
- }))}`
- })
- }
- </script>
- <style lang="scss" scoped>
- .status-btn {
- // width: 716rpx;
- height: 96rpx;
- border-radius: 16rpx;
- background: rgba(221, 94, 69, 1);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 32rpx;
- font-weight: 400;
- color: rgba(255, 255, 255, 1);
- margin-bottom: 88rpx;
- }
- </style>
|