zhaojs
2023-07-28 3af79bf611323bd068c534c83e2910529c4d2bd2
no message
已添加1个文件
已修改2个文件
64 ■■■■■ 文件已修改
h5/apph5/App.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5/apph5/pages.json 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5/apph5/pages/wxkf/index.vue 54 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5/apph5/App.vue
@@ -14,4 +14,5 @@
<style>
    /*每个页面公共css */
</style>
h5/apph5/pages.json
@@ -20,11 +20,18 @@
                "navigationStyle":"custom",//不显示头部
                "navigationBarTitleText": "美食外卖"
            }
        },
        {
            "path": "pages/wxkf/index",
            "style": {
                "navigationStyle":"custom",//不显示头部
                "navigationBarTitleText": "微信客服"
            }
        }
    ],
    "globalStyle": {
        "navigationBarTextStyle": "black",
        "navigationBarTitleText": "uni-app",
        "navigationBarTitleText": "大返官",
        "navigationBarBackgroundColor": "#F8F8F8",
        "backgroundColor": "#F8F8F8"
    },
h5/apph5/pages/wxkf/index.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,54 @@
<template>
    <view class="main-cont">
        <view class="txt-sty" style="margin-top: 4rem;">
            <image class="head-img" :src="wxhead"></image>
        </view>
        <view class="txt-sty head-txt">
            å¾®ä¿¡å·ï¼š{{wxtxt}}
        </view>
        <view class="txt-sty">
            <image :src="wxImg" class="ercode-img"></image>
        </view>
        <view class="txt-sty" style="font-weight: 700; margin-top: 1rem;">长按二维码,添加微信享受优惠</view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                wxImg: 'https://img.ushopvip.com/dfg/wxcode.png',
                wxhead: 'https://img.ushopvip.com/dfg/dfgapplogo.png',
                wxtxt: 'sedws22'
            }
        },
        onLoad() {
        },
        methods: {
        },
    }
</script>
<style>
    .txt-sty{
        text-align: center;
    }
    .main-cont {
    }
    .head-txt{
        margin: 0.4rem 0 2rem 0;
    }
    .head-img {
        width: 5rem;
        height: 5rem;
    }
    .ercode-img{
        width: 16rem;
        height: 16rem;
    }
</style>