12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <view class="page-content experts">
- <view class="page-header experts-header"></view>
- <view class="page-main experts-content">
- <view class="experts-content-btn">
- <view class="experts-consultbtn">
- <view class="consultbtn-text"
- @click="handleConsultExpertsClick">
- 咨询专家
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'complaints',
- data() {
- return {};
- },
- onLoad() {},
- methods: {
- handleConsultExpertsClick() {
- uni.navigateTo({
- url: '/pages/experts/modal/index'
- });
- }
- }
- }
- </script>
- <style lang="scss"
- scoped>
- .experts {
- padding: 0;
- &-header {}
- &-content {
- width: 100%;
- &-btn {
- width: 100%;
- position: fixed;
- bottom: 64rpx;
- padding: 16rpx 32rpx;
- .experts-consultbtn {
- width: 686rpx;
- height: 88rpx;
- background: #53A0FD;
- border-radius: 4rpx;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .consultbtn-text {
- height: 50rpx;
- font-size: 36rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 50rpx;
- }
- }
- }
- }
- }
- </style>
|