| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="page adffc" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='专业支持'></cus-header>
- <image src="https://oss.familydaf.cn/sxsnfile/20260123/c8fe42bed88b43f3be27628a7eedf94a.png" mode="widthFix" @click="handleBuy"></image>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
-
- }
- },
- methods:{
- handleBuy(){
- uni.navigateToMiniProgram({
- appId:'wx3d545d3ff0c1164d'
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .page{
- box-sizing: border-box;
- image{
- width: 100%;
- }
- }
- </style>
|