| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <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/bd3eb4445fcb4e1ba01a35572359b622.png" mode="widthFix" @click="show=true"></image>
- <image src="https://oss.familydaf.cn/sxsnfile/20260123/656593e80a1344f8b4eab990bfa03cde.png" mode="widthFix" @click="handleGzg"></image>
- <image src="https://oss.familydaf.cn/sxsnfile/20260123/b3cd19089c184bfa8bc181bda62a898e.png" mode="widthFix" @click="handleBuy"></image>
- <div class="dialog adffcacjc" v-if="show" @click="show=false">
- <image src="https://oss.familydaf.cn/sxsnfile/20260123/8cf81d71eaae4a7a9f1fcd1e90934d75.png" mode="widthFix" show-menu-by-longpress></image>
- </div>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
- show:false
- }
- },
- methods:{
- handleGzg(){
- uni.navigateTo({
- url:'/pages/webView?src=https://mp.weixin.qq.com/s/KTm7E8QS3tPOTQUs2wGtRw'
- })
- },
- handleBuy(){
- uni.navigateToMiniProgram({
- appId:'wx3d545d3ff0c1164d'
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .page{
- background: #002846;
- box-sizing: border-box;
- image{
- width: 100%;
- }
-
- .dialog{
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 1001;
- background: #000000;
- image{
- width: 100%;
- }
- }
- }
- </style>
|