| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view>
- <image src="../static/promote/images/xz_bg.png" class="xz-bg"></image>
- <view class="con">
- <image src="../static/promote/images/xz_logo.png" class="xz-logo"></image>
- <view class="qing">请添加企业客服 1V1在线指导</view>
- <image src="../static/promote/images/kefu_erweima.png" class="ewm"></image>
- <view class="sao">扫码/识别二维码,添加客服</view>
- <view class="ma">APP激活码</view>
- <view class="code ddflex">
- <view>564575</view>
- <view class="copy ddflex"><image src="../static/promote/images/xz_copy.png"></image>复制</view>
- </view>
- </view>
- <view class="btn">立即下载APP</view>
- </view>
- </template>
- <script>
- const app = getApp();
- const req = require('../../utils/request.js');
- export default {
- data() {
- return {
- name: '',
- phone: '',
- gender: 1
- };
- },
- onLoad: function(options) {
- },
- onShow() {
- },
- methods: {
- }
- };
- </script>
- <style>
- @import './index.css';
- </style>
|