Commit 478ab300 by 林翔

lx

parent 4e6db46c
Showing with 475 additions and 12 deletions
.wallet-content{
background: #f0f0f0;
}
.wallet-balance{
background: #fff;
margin-bottom: 0.267rem;
}
.wallet-balance .balance-bg{
width: 94%;
height: 4rem;
background: url("../../images/wallet/bg.png") no-repeat center;
background-size: cover;
margin: 0.267rem auto;
color: #ffffff;
box-shadow: -0.007rem 0.012rem 0.093rem 0rem rgba(14, 4, 8, 0.4);
border-radius: 0.093rem;
}
.wallet-balance .balance-bg .text-1{
width: 94%;
font-size: 16px;
margin-top: 0.627rem;
padding-left: 0.4rem;
}
.wallet-balance .balance-bg .text-2{
width: 94%;
font-size: 24px;
margin-top: 0.3rem;
padding-left: 0.4rem;
}
.wallet-balance .balance-bg .text-3{
font-size: 45px;
}
.wallet-balance .balance-bg .text-4{
width: 94%;
font-size: 12px;
margin-top: 0.2rem;
padding-right: 0.4rem;
text-align: right;
}
.wallet-balance .balance-handle{
width: 9.387rem;
height: 1.333rem;
margin: 0 auto;
padding-bottom: 0.253rem;
}
.wallet-balance .balance-handle span{
float: left;
width: 49.5%;
text-align: center;
height: 1.333rem;
line-height: 1.333rem;
font-size: 18px;
color: #1080d0;
}
.wallet-balance .balance-handle .withdraw{
border-right: 1px solid #e5e5e5;
}
.wallet-content ul{
background: #fff;
}
.wallet-content ul li{
float: left;
width: 33.33%;
text-align: center;
margin-top: 0.8rem;
}
.wallet-content ul li p{
margin-top: 0.587rem;
font-size: 14px;
}
/*钱包状态*/
#app{ background: #f0f0f0; }
.status-content{ background: #f0f0f0; }
.status-content .form-wrap{ background: #ffffff; }
.status-content .form-wrap .inp-wrap{ height: 1.6rem; border-bottom: 1px solid #f0f0f0; }
.status-content .form-wrap .inp-wrap label{ font-size: 18px; line-height: 1.6rem; width: 25%; color: #666666; padding-left: 0.3rem; }
.status-content .form-wrap .inp-wrap input{ font-size: 18px; line-height: 1.6rem; width: 45%; color: #333333; padding-left: 0.7rem; }
.status-content .form-wrap .inp-wrap .forget-password{ font-size: 16px; line-height: 1.6rem; color: #1080d0; }
.status-content .submit{ width: 305px; height: 40px; line-height: 40px; background: #1080d0; text-align: center; border-radius: 20px; font-size: 16px; color: #fff; display: block; margin: 1.333rem 0.933rem ; font-weight: bold; }
/*激活钱包*/
.activate-content .form-wrap{ background: #ffffff; /*padding-bottom: 20px;*/ }
.activate-content .form-wrap .inp-wrap{ height: 2.7rem; border-top: 1px solid #f0f0f0; }
.activate-content .form-wrap .inp-wrap label{ font-size: 18px; line-height: 1.5rem; color: #333333; padding-left: 0.3rem; }
.activate-content .form-wrap .inp-wrap input{ font-size: 16px; line-height: 1.2rem; width: 85%; color: #333333; padding-left: 0.3rem; }
.activate-content .form-wrap .inp-wrap:nth-child(2) input{ width: 65% !important; }
.activate-content .form-wrap .inp-wrap .send-yzm{ display: inline-block; text-align: center; font-size: 16px; width: 3rem; height: 40px; line-height: 40px; color: #1080d0; border-radius: 20px; border: 1px solid #1080d0; }
.activate-content .confirm{ width: 305px; height: 40px; line-height: 40px; background: #1080d0; text-align: center; border-radius: 20px; font-size: 16px; color: #fff; display: block; margin: 1.333rem 0.933rem ; font-weight: bold; }
/*钱包充值*/
......@@ -8,6 +8,11 @@ const Wxlist = resolve => require(['@/views/wxlist/Index'], resolve);
const News = resolve => require(['@/views/news/Index'], resolve);
const NewsDetail = resolve => require(['@/views/news/Detail'], resolve);
const Seo = resolve => require(['@/views/seo/Index'], resolve);
const Wallet = resolve => require(['@/views/wallet/Index'], resolve);
const WalletStatus = resolve => require(['@/views/wallet/Status'], resolve);
const WalletActivate = resolve => require(['@/views/wallet/Activate'], resolve);
const WalletRecharge = resolve => require(['@/views/wallet/Recharge'], resolve);
Vue.use(Router)
const routes=[
......@@ -65,6 +70,34 @@ const routes=[
}
},
{
path: '/wallet',
component: Wallet,
meta: {
title: '猎芯网-我的钱包'
}
},
{
path: '/wallet/status',
component: WalletStatus,
meta: {
title: '猎芯网-钱包状态'
}
},
{
path: '/wallet/activate',
component: WalletActivate,
meta: {
title: '猎芯网-激活钱包'
}
},
{
path: '/wallet/recharge',
component: WalletRecharge,
meta: {
title: '猎芯网-钱包充值'
}
},
{
path: '*',
redirect: '/'
}
......
<template>
<section class="wallet-activate">
<Header :title="title" :meaushow='meaushow'></Header>
<div class="activate-content">
<ul class="form-wrap">
<li class="inp-wrap">
<label class="va-m">安全手机号</label><br>
<input type="text" placeholder="请输入手机号" class="va-m inp"/>
</li>
<li class="inp-wrap">
<label class="va-m">验证码</label><br>
<input type="text" placeholder="请输入验证码" class="va-m inp"/>
<a href="javascript:;" class="send-yzm va-m">发送验证码</a>
</li>
<li class="inp-wrap">
<label class="va-m">设置支付密码</label><br>
<input type="text" placeholder="密码由8~20位字母、数字组合而成" class="va-m inp"/>
<van-icon v-if="showPassword" name="closed-eye" class="va-m"/>
<van-icon v-else name="eye-o" class="va-m"/>
</li>
<li class="inp-wrap">
<label class="va-m">确认支付密码</label><br>
<input type="text" placeholder="请再次输入上面的密码" class="va-m inp"/>
<van-icon v-if="showPassword" name="closed-eye" class="va-m"/>
<van-icon v-else name="eye-o" class="va-m"/>
</li>
</ul>
<a href="javascript:;" class="confirm" @click="confirm()">确认</a>
</div>
</section>
</template>
<script>
import Vue from 'vue';
import {mapState} from 'vuex'
import Header from '@/views/common/Header.vue';
import { Icon } from 'vant';
Vue.use(Icon);
export default {
name: 'WalletActivate',
data() {
return {
title:"激活钱包",
meaushow:true,
showPassword:false, //是否显示密码
}
},
computed: {
...mapState({
})
},
watch: {
},
created() {
},
methods: {
},
components: {
Header
}
}
</script>
<style scoped>
@import "../../assets/css/wallet/wallet.css";
</style>
\ No newline at end of file
<template>
<section class="wallet">
<Header :title="title" :meaushow='meaushow'></Header>
<div class="wallet-content">
<div class="wallet-balance">
<div class="balance-bg">
<p class="text-1 lineBlock">钱包余额</p>
<p class="text-2 lineBlock"><span class="text-3">0.00</span></p>
<p class="text-4 lineBlock">常见问题 ></p>
</div>
<div class="balance-handle">
<span class="withdraw">提现</span>
<span v-if="activate" class="recharge">充值</span>
<span v-else class="recharge">激活</span>
</div>
</div>
<ul class="clr">
<li>
<img src="../../assets/images/wallet/status.png" alt="钱包状态" style="width:47px; height:45px;">
<p>钱包状态</p>
</li>
<li>
<img src="../../assets/images/wallet/account.png" alt="账单明细" style="width:42px; height:45px;">
<p>账单明细</p>
</li>
<li>
<img src="../../assets/images/wallet/record.png" alt="充值提现记录" style="width:45px; height:44px;">
<p>充值提现记录</p>
</li>
</ul>
</div>
</section>
</template>
<script>
import Vue from 'vue';
import {mapState} from 'vuex'
import Header from '@/views/common/Header.vue';
export default {
name: 'Wallet',
data() {
return {
title:"我的钱包",
meaushow:true,
activate:false, //用户钱包是否激活
}
},
computed: {
...mapState({
})
},
watch: {
},
created() {
},
methods: {
},
components: {
Header
}
}
</script>
<style scoped>
@import "../../assets/css/wallet/wallet.css";
</style>
\ No newline at end of file
<template>
<section class="wallet-recharge">
<Header :title="title" :meaushow='meaushow'></Header>
<div class="recharge-content">
<div class="wallet-account"></div>
<div class="recharge-amount">
<p>充值金额</p>
<p class="money"></p>
</div>
<p>支付方式</p>
<dl>
<dt><img src="" alt=""></dt>
<dd><span>微信支付</span><br/>仅安装微信6.0.2及以上版本客户端使用</dd>
<div><img src="" alt=""></div>
</dl>
<dl>
<dt><img src="" alt=""></dt>
<dd><span>支付宝支付</span><br/>由阿里巴巴提供服务</dd>
<div><img src="" alt=""></div>
</dl>
<dl>
<dt><img src="" alt=""></dt>
<dd><span>中国银联</span><br/>由猎芯网提供服务</dd>
<div><img src="" alt=""></div>
</dl>
</div>
</section>
</template>
<script>
import Vue from 'vue';
import {mapState} from 'vuex'
import Header from '@/views/common/Header.vue';
export default {
name: 'WalletRecharge',
data() {
return {
title:"钱包充值",
meaushow:true,
}
},
computed: {
...mapState({
})
},
watch: {
},
created() {
},
methods: {
},
components: {
Header
}
}
</script>
<style scoped>
@import "../../assets/css/wallet/wallet.css";
</style>
\ No newline at end of file
<template>
<section class="wallet-status">
<Header :title="title" :meaushow='meaushow'></Header>
<div class="status-content">
<ul class="form-wrap">
<li class="inp-wrap">
<label class="lineBlock va-m">冻结余额</label>
<input v-if="!activate" type="text" value="¥0.00" class="va-m inp"/>
<input v-else type="text" :value="frozenBalance" class="va-m inp"/>
<van-icon v-if="activate" name="warning-o" class="tips va-m" style="width:16px;height:16px;color:red;"/>
</li>
<li class="inp-wrap">
<label class="lineBlock va-m">钱包状态</label>
<input v-if="!activate" type="text" value="未启用" class="va-m inp"/>
<input v-else type="text" value="已启用" class="va-m inp"/>
</li>
<li class="inp-wrap">
<label class="lineBlock va-m">支付密码</label>
<input v-if="!activate" type="text" value="未启用" class="va-m inp"/>
<input v-else type="text" value="已启用" class="va-m inp"/>
<span v-if="activate" class="forget-password va-m">忘记密码</span>
</li>
<li class="inp-wrap">
<label class="lineBlock va-m">我的银行卡</label>
<input v-if="!activate" type="text" value="未绑定" class="va-m inp"/>
<input v-else type="text" :value="bankCard" class="va-m inp"/>
</li>
</ul>
<a v-if="!activate" href="javascript:;" class="submit" @click="submit()">激活</a>
</div>
</section>
</template>
<script>
import Vue from 'vue';
import {mapState} from 'vuex'
import Header from '@/views/common/Header.vue';
import { Icon } from 'vant';
Vue.use(Icon);
export default {
name: 'WalletStatus',
data() {
return {
title:"钱包状态",
meaushow:true,
activate:true, //用户钱包是否激活
frozenBalance:"¥100.00", //冻结余额
bankCard:'交通银行(6944)', //我的银行卡
}
},
computed: {
...mapState({
})
},
watch: {
},
created() {
},
methods: {
},
components: {
Header
}
}
</script>
<style scoped>
@import "../../assets/css/wallet/wallet.css";
</style>
\ No newline at end of file
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
{"h":"272f29da7aa7676957e4","c":{"0":false}}
\ No newline at end of file
{"h":"c7f5b8eb037d42d74aea","c":{"2":true}}
\ No newline at end of file
This diff could not be displayed because it is too large.
.menu-fade{position:fixed;z-index:998;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.menu{position:fixed;right:10px;top:10px;z-index:999}.menu b{font-size:18px;color:#666}.menu .popover-arrow{position:absolute;z-index:1000;top:11px;right:0;overflow:hidden;width:26px;height:26px}.menu .popover-arrow:after{position:absolute;top:19px;left:0;width:26px;height:26px;content:" ";-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:3px;background:#333}.menu .menu-view{margin-top:36px;background:#333;font-size:15px;border-radius:2px;max-height:300px}.menu .menu-view li{position:relative;overflow:hidden;padding:11px 15px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.menu .menu-view li a{color:#fff}.menu .menu-view li a i{margin-right:.1rem}body{padding-top:40px}.header-page{height:40px;width:100%;padding:0 .2rem;position:fixed;z-index:998;top:0;background:#fafafa}.header-page i{font-size:18px;margin-top:10px;color:#666}.header-page h3{font-size:16px;color:#333;width:68%;line-height:40px;text-align:center;height:40px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 10%!important}.wxlist{height:100%;background:#f8f8f8}.wxlist .wxlist-content .menu-title{color:#333;font-size:18px;height:47px;line-height:47px;padding-left:.2rem}.wxlist .wxlist-content .wxlist-banner{padding:0 .2rem}.wxlist .wxlist-content .wxlist-banner .banner-header{padding:10px}.banner-box{background:#fff;border-radius:4px;min-height:275px}.banner-header .banner-title{font-size:19px;color:#333}.banner-header .banner-img{width:.8rem;height:.8rem;margin-right:10px}.banner-header .banner-img img{width:100%;height:100%;width:.8rem;height:.8rem;border-radius:50%;display:block}.banner-body img{width:100%;height:4.8rem}.banner-footer{font-size:16px;line-height:20px;color:#666;padding:.4rem .28rem}.banner-footer a{color:#666}.banner-footer span{color:#999}.wxlist-data{padding:10px}.wxlist-data-box{background:#fff;border-radius:4px}.group-right{width:2rem;height:60px}.group-left-box{height:50px;width:6.347rem;font-size:16px;color:#333;line-height:25px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.group-left{width:6.347rem;border-bottom:1px solid #e5e5e5;padding-top:.1rem;padding-bottom:.5rem}.data-group{padding:.25rem;display:block}
\ No newline at end of file
.menu-fade{position:fixed;z-index:998;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.menu{position:fixed;right:10px;top:10px;z-index:999}.menu b{font-size:18px;color:#666}.menu .popover-arrow{position:absolute;z-index:1000;top:11px;right:0;overflow:hidden;width:26px;height:26px}.menu .popover-arrow:after{position:absolute;top:19px;left:0;width:26px;height:26px;content:" ";-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:3px;background:#333}.menu .menu-view{margin-top:36px;background:#333;font-size:15px;border-radius:2px;max-height:300px}.menu .menu-view li{position:relative;overflow:hidden;padding:11px 15px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.menu .menu-view li a{color:#fff}.menu .menu-view li a i{margin-right:.1rem}body{padding-top:40px}.header-page{height:40px;width:100%;padding:0 .2rem;position:fixed;z-index:998;top:0;background:#fafafa}.header-page i{font-size:18px;margin-top:10px;color:#666}.header-page h3{font-size:16px;color:#333;width:68%;line-height:40px;text-align:center;height:40px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 10%!important}.news-detail .bar,.news-detail .content-newsdetail,.news-detail .title{padding:0 10px}.news-detail .content-newsdetail img{max-width:100%!important}.news-detail h1.title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#333;font-size:22px;font-weight:700;line-height:30px;margin-top:10px}.news-detail .bar{height:16px;clear:both;font-size:12px;color:#999;margin-top:10px;margin-bottom:10px}.news-detail .bar span{line-height:16px;height:16px;float:left}.news-detail .bar .f24{color:#333}.news-detail .bar .f20{font-size:12px;padding-left:5px;padding-right:5px;border-radius:2px;border:1px solid #ccc;margin-right:10px}.news-detail .detail-pop{width:8.66rem;height:7.44rem;position:fixed;top:50%;left:50%;margin-left:-4.33rem;margin-top:-3.72rem}.news-detail .detail-pop img{width:100%;height:100%}.news-detail .closexdetailad{font-size:26px;float:right;color:#ccc}.news-detail .adbox{padding:0 10px}
\ No newline at end of file
.menu-fade{position:fixed;z-index:998;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.menu{position:fixed;right:10px;top:10px;z-index:999}.menu b{font-size:18px;color:#666}.menu .popover-arrow{position:absolute;z-index:1000;top:11px;right:0;overflow:hidden;width:26px;height:26px}.menu .popover-arrow:after{position:absolute;top:19px;left:0;width:26px;height:26px;content:" ";-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:3px;background:#333}.menu .menu-view{margin-top:36px;background:#333;font-size:15px;border-radius:2px;max-height:300px}.menu .menu-view li{position:relative;overflow:hidden;padding:11px 15px;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.menu .menu-view li a{color:#fff}.menu .menu-view li a i{margin-right:.1rem}body{padding-top:40px}.header-page{height:40px;width:100%;padding:0 .2rem;position:fixed;z-index:998;top:0;background:#fafafa}.header-page i{font-size:18px;margin-top:10px;color:#666}.header-page h3{font-size:16px;color:#333;width:68%;line-height:40px;text-align:center;height:40px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 10%!important}.news li,.news ul{font-family:"\5FAE\8F6F\96C5\9ED1"!important}.news .borderBottom{border-bottom:1px solid #e5e5e5}.news .navList{border-bottom:1px solid #e5e5e5;padding:0 10px;clear:both;height:40px;line-height:40px;font-size:14px;background:#fff;overflow:hidden}.news .navList p{text-align:center;width:33.33%;color:#333;float:left;cursor:pointer;height:40px;line-height:40px}.news .navList p.act{color:#e10601;border-bottom:2px solid #e10601}.news .navListfixed{border-bottom:1px solid #e5e5e5;padding:0 10px;clear:both;height:40px;line-height:40px;font-size:14px;background:#fff;overflow:hidden;position:fixed;top:39px;left:0;right:0}.news .navListfixed p{text-align:center;width:33.33%;color:#333;float:left;cursor:pointer;height:40px;line-height:40px}.news .navListfixed p.act{color:#e10601;border-bottom:2px solid #e10601}.news .navList44 p{width:25%}.news .listBox li{padding:10px;height:100px;border-bottom:1px solid #e5e5e5;-webkit-box-sizing:border-box;box-sizing:border-box}.news .listBox li img{height:75px;width:27%;float:left;border:0;outline:none}.news .listBox li .boxgrt{height:75px;width:66%;float:right}.news .listBox li .boxgrt .title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#333;font-size:.32rem;font-weight:700;height:50px;line-height:25px}.news .listBox li .boxgrt .titleLook{font-size:14px;color:#999;margin-top:5px}
\ No newline at end of file
body{padding-top:0;background:#10141d}.seo-content{width:100%;height:100%}.seo-content .seo-head{width:100%;height:11.4rem;background:url(../img/head.a2c80d72.png) no-repeat;background-size:100% 100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:1.24rem}.seo-content .seo-head .head-nav{width:100%;height:22px;background:#c9b086}.seo-content .seo-head .head-nav li{float:left;width:20%;text-align:center;height:22px;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:2px}.seo-content .seo-head .head-nav li a{color:#181c27;display:block;cursor:pointer;width:100%;height:18px;line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1px solid #9f8d70}.seo-content .seo-section .form-box1{padding-top:30px}.seo-content .seo-section .form-box1 .form-group{width:8.4rem;height:40px;line-height:40px;text-align:center;margin:0 auto;margin-bottom:15px}.seo-content .seo-section .form-box1 .form-group .pr{position:relative}.seo-content .seo-section .form-box1 .form-group span{width:2.506rem;height:40px;line-height:40px;background-color:#eecea4;border-radius:.027rem;font-size:14px;text-align:justify;text-align-last:justify;padding:0 .2rem;-webkit-box-sizing:border-box;box-sizing:border-box}.seo-content .seo-section .form-box1 .form-group .input-box{width:5.573rem;height:40px;line-height:40px;background-color:#fff;border-radius:.027rem;border:.04rem solid #f2c58b;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.seo-content .seo-section .form-box1 .form-group .input-box i{float:left;height:100%;width:20%;font-size:14px;position:relative;top:-1px}.seo-content .seo-section .form-box1 .form-group .input-box input{font-size:14px;text-align:left;width:80%;float:left;height:100%}.seo-content .seo-section .form-box1 .form-group .input-box .code{position:absolute;right:0;height:40px;width:2rem;top:0;cursor:pointer;color:#1080d0;text-align:center;line-height:40px;font-size:12px}.seo-content .seo-section .form-box1 .form-group .input-box .code.dis{color:#ccc}.seo-content .seo-section .form-box1 .form-group .input-box .img-code{position:absolute;right:0;height:40px;width:2rem;top:0;cursor:pointer}.seo-content .seo-section .form-box1 .submit-button{width:8.4rem;height:40px;text-align:center;line-height:40px;margin:0 auto;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAg4AAAA3CAYAAABkUcJ1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4NjdlYTliYS0wNzVkLTM3NDQtYjhmYy1kOWJlNmQ1YmYwZjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTgyREY5NDc1OUFCMTFFOTgyRjU5QTdGOUNDNjhCQ0MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTgyREY5NDY1OUFCMTFFOTgyRjU5QTdGOUNDNjhCQ0MiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTljYjk0MGItYjFhYy05YzQ1LTllMDAtYTEwZGNjNzM2OTZlIiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6MmJmOWEyMzItMjUzYS1lNTQ4LWIxM2EtMmIwYWQyOTQ2MmFkIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+NGICbgAAAvdJREFUeNrs2z9slGUcwPHfXY/3rte/kX9GMAwGJ8PoopNhcYCJARPUQdiIiZNOsJIwqCyEGBLRaoxhMLowGGGAhJjQxcHEyeggCXI0Xq93vdYez11CbMtbeJvI0N7nkz59c897XZ7l/ebp85YaszNHI+LLNCYDACDfzTTeLKdf50UDAPAUr6fxbj8c9loLAKCA/WVrAAAUVcmbbLY60es9Pl8qRdRHqzFSLlk5ANiiVtJDvv+cX1paju7Sv7nfybJK1LJKsXA4/N6FaC4sPjb//K7JuHT2rTh4YI9VB4AtqtzfCUg/l3/4OT754qfc75w69lp88M4bxcLhkYmx2mCX4ZGpidGoVEasOABsA/Xqjpgcr62Z63aXo5PGRp4YDj9efj8m6lUrCwDb0Ikjrw7Gap9dvRUfb7AL0edwJABQmHAAAIQDAPD/yz3j8MrBF2K+vei1SwAYMrufG49DL+8bvEmZp9SYnZlL16nVk/fnWoN3PHdNj695qwIA2N4WOt1otbtRr2UxNpqtv30ud8dh5/SYlQOAIdQPhv7YiDMOAEBhwgEAEA4AgHAAAIQDACAcAADhAAAIBwAA4QAACAcAQDgAAMIBABAOAIBwAAAQDgCAcAAAhAMAIBwAAOEAAAgHAADhAAAIBwBAOAAAwgEAEA4AgHAAAIQDAIBwAACedTjc/fuf+OOvRqz0elYIAIZIs9WJP+8+iLlmu3g4nDzzVbz90ZVod5asIAAMke9v/BInPvw8vr12J/d+JW/yXqMZzYVFOw4AMGQW2t2492A+WumaxxkHAKAw4QAAFFZ50s3mfCd6K//9u6JULkW9lsVIugIAW1unuxzdNFZbXPd5U+Fw+OSFNZ/3752Oi2eOx0sv7rbaALDFXfnudnw6c31Tf5MbDhPjtcHuwnrVbEc4LwkA28PYaBaT6Zmfp5rl7y2UGrMzc+k6ZfkAgKc453AkAFCYcAAANhUOv1sGAKCA3/rhcDqNX9Nw7BEAyNNK4+s0vnkowAAx5JXBwoLoMgAAAABJRU5ErkJggg==) no-repeat;background-size:100% 100%;font-size:14px;cursor:pointer;color:#181c27}.seo-content .seo-section .form-box1 .form1-tips{text-align:center;color:#fff;font-size:14px}.seo-content .seo-section .img-show-static{height:14.706rem;background:url(../img/staticx.b75fe82b.png) no-repeat;background-size:100% 100%;margin-top:30px}.seo-content .seo-section .zizi-box{height:10.333rem;width:8.4rem;background:url(../img/lxzz.99f6a2ce.png) no-repeat;background-size:100% 100%;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:3.786rem}.seo-content .seo-section .zizi-box .zizi-ct{width:7.333rem;height:3.4rem;border-style:solid;border-width:.08rem;border-color:#c1b193;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:.826rem}.seo-content .seo-section .zizi-box .zizi-ct .slide-box{margin:0 auto;width:3rem;height:2.28rem}.seo-content .seo-section .zizi-box .zizi-ct .slide-box .slide-pic{width:3rem;height:2.28rem}.seo-content .seo-section .form-box2{width:8.4rem;margin:0 auto;margin-top:30px}.seo-content .seo-section .form-box2 .title-form{color:#f2cea1;font-size:17px;text-align:center;margin-bottom:30px}.seo-content .seo-section .form-box2 .title-form img{vertical-align:middle;display:inline-block;width:17px;height:17px;margin-right:5px}.seo-content .seo-section .form-box2 .form-group{margin-bottom:17px}.seo-content .seo-section .form-box2 .form-group .pr{position:relative}.seo-content .seo-section .form-box2 .form-group .input-box{width:8.4rem;height:40px;line-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff;border-radius:.053rem;border:.04rem solid #f2c58b;overflow:hidden}.seo-content .seo-section .form-box2 .form-group .input-box .f-red{color:red;position:relative;left:.2rem}.seo-content .seo-section .form-box2 .form-group .input-box .hiddenfont{visibility:hidden}.seo-content .seo-section .form-box2 .form-group .input-box i{float:left;height:100%;width:20%;font-size:14px;text-align:center;position:relative;top:-1px}.seo-content .seo-section .form-box2 .form-group .input-box input{font-size:14px;text-align:left;width:80%;float:left;height:100%}.seo-content .seo-section .form-box2 .form-group .input-box .code{position:absolute;right:0;height:40px;width:2rem;top:0;cursor:pointer;color:#1080d0;text-align:center;line-height:40px;font-size:14px}.seo-content .seo-section .form-box2 .form-group .input-box .code.dis{color:#ccc}.seo-content .seo-section .form-box2 .form-group .input-box .img-code{position:absolute;right:0;height:40px;width:2rem;top:0;cursor:pointer}.seo-content .seo-section .form2-tips{text-align:center;color:#fff;font-size:14px;margin-top:30px}.seo-content .seo-section .submit-button1{width:8.4rem;height:40px;background-color:#eecea4;border-radius:40px;margin:0 auto;color:#181c27;font-size:14px;cursor:pointer;line-height:40px;text-align:center;margin-bottom:50px}.seo-content .seo-section .foot-box{height:2.2rem;background:url(../img/foot.2df97c93.png) no-repeat;background-size:100% 100%;margin:0 auto}.seo-content .seo-section .foot-box .foot-box-ct{height:30px;line-height:30px;background-color:#e8b778;text-align:center;font-size:14px;color:#181c27;position:relative;top:-10px}.seo-content .seo-section .foot-box .foot-box-ct i{font-size:14px!important}.seo-content .seo-section .foot-box .foot-box-ct a{color:#181c27!important}
\ No newline at end of file
<!DOCTYPE HTML><html lang=zh-CN><head><title></title><meta name=author content=www.ichunt.com><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,user-scalable=no,minimal-ui"><meta http-equiv=Content-Type content="text/html;charset=utf-8"><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black><meta name=format-detection content="telephone=no"><meta http-equiv=Expires content=-1><meta http-equiv=Cache-Control content=no-cache><meta http-equiv=Pragma content=no-cache><meta name=full-screen content=yes><meta name=browsermode content=application><meta name=x5-fullscreen content=true><meta name=x5-page-mode content=app><meta name=description content=猎芯网,快速成长的专业电子元器件商城,贸泽(MOUSER)全系产品、e络盟(element14)树莓派系列产品授权经销商,已获得多轮风险投资。为客户提供电子元器件现货,IC采购,进口报关,电子元器件寄售,供应链金融等一站式电子元器件采购服务。><meta name=keywords content=猎芯网,电子元器件采购,电子元器件商城,电子元器件现货,IC采购网,电子元器件寄售,电子元件,元器件商城,元器件采购,电子商城,><link rel=icon href=//h5static.ichunt.com/favicon.ico><link rel=stylesheet href=/v3/dist/res/m/css/font/iconfont.css><script src=/h5/view/get_time.php></script><script>var fwtimes = window.fwtime - (Math.floor((new Date().getTime()) / 1000)); //获取服务器时间差</script><script src=https://res.wx.qq.com/open/js/jweixin-1.3.2.js charset=utf-8></script><script src=//h5static.ichunt.com/static/js/flexible.min.js charset=utf-8></script><script src=//h5static.ichunt.com/static/js/shence.min.js charset=utf-8></script><link href=//h5static.ichunt.com/css/chunk-1081bba5.c0f345b7.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-1a310afe.d7e46390.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-3d2d429e.045485d7.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-5226221d.b62bb465.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-6bb21423.29799028.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-a104e3e6.43c91bcb.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-e78c7db2.927a837d.css rel=prefetch><link href=//h5static.ichunt.com/js/chunk-1081bba5.252ec957.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-1a310afe.eae3e7a7.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-3d2d429e.5695e214.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-5226221d.c3158946.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-6bb21423.69722f2c.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-a104e3e6.30f1eea3.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-e78c7db2.139a53e4.js rel=prefetch><link href=//h5static.ichunt.com/css/app.b0927897.css rel=preload as=style><link href=//h5static.ichunt.com/css/chunk-vendors.59ded326.css rel=preload as=style><link href=//h5static.ichunt.com/js/app.86de0022.js rel=preload as=script><link href=//h5static.ichunt.com/js/chunk-vendors.d5d087bb.js rel=preload as=script><link href=//h5static.ichunt.com/css/chunk-vendors.59ded326.css rel=stylesheet><link href=//h5static.ichunt.com/css/app.b0927897.css rel=stylesheet></head><body class=boxsiz><noscript><strong>网站出现了一点小问题,正在紧急修复中.......</strong></noscript><div id=app></div><script>function SetCookie(name, value, time, domain) {
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<title></title>
<meta name="author" content="www.ichunt.com">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0,user-scalable=no,minimal-ui">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<meta name="full-screen" content="yes">
<meta name="browsermode" content="application">
<meta name="x5-fullscreen" content="true">
<meta name="x5-page-mode" content="app">
<meta name="description" content="猎芯网,快速成长的专业电子元器件商城,贸泽(MOUSER)全系产品、e络盟(element14)树莓派系列产品授权经销商,已获得多轮风险投资。为客户提供电子元器件现货,IC采购,进口报关,电子元器件寄售,供应链金融等一站式电子元器件采购服务。">
<meta name="keywords" content="猎芯网,电子元器件采购,电子元器件商城,电子元器件现货,IC采购网,电子元器件寄售,电子元件,元器件商城,元器件采购,电子商城,">
<link rel="icon" href="//static.leixin.com/favicon.ico">
<link rel="stylesheet" href="/v3/dist/res/m/css/font/iconfont.css">
<script type="text/javascript" src="/h5/view/get_time.php"></script>
<script type="text/javascript">
var fwtimes = window.fwtime - (Math.floor((new Date().getTime()) / 1000)); //获取服务器时间差
</script>
<script src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js" type="text/javascript" charset="utf-8"></script>
<script src="//static.leixin.com/static/js/flexible.min.js" type="text/javascript" charset="utf-8"></script>
<script src="//static.leixin.com/static/js/shence.min.js" type="text/javascript" charset="utf-8"></script>
<link href="//static.leixin.com/0.js" rel="prefetch"><link href="//static.leixin.com/1.js" rel="prefetch"><link href="//static.leixin.com/10.js" rel="prefetch"><link href="//static.leixin.com/11.js" rel="prefetch"><link href="//static.leixin.com/12.js" rel="prefetch"><link href="//static.leixin.com/13.js" rel="prefetch"><link href="//static.leixin.com/2.af043132402b6f8e4ecc.hot-update.js" rel="prefetch"><link href="//static.leixin.com/2.js" rel="prefetch"><link href="//static.leixin.com/3.js" rel="prefetch"><link href="//static.leixin.com/4.js" rel="prefetch"><link href="//static.leixin.com/5.js" rel="prefetch"><link href="//static.leixin.com/6.js" rel="prefetch"><link href="//static.leixin.com/7.js" rel="prefetch"><link href="//static.leixin.com/8.js" rel="prefetch"><link href="//static.leixin.com/9.js" rel="prefetch"><link href="//static.leixin.com/app.js" rel="preload" as="script"></head>
<body class="boxsiz">
<noscript>
<strong>网站出现了一点小问题,正在紧急修复中.......</strong>
</noscript>
<div id="app"></div>
<script type="text/javascript">
function SetCookie(name, value, time, domain) {
domain = domain ? ";domain=" + domain : "";
var Days = time;
var exp = new Date();
......@@ -114,7 +150,12 @@
document.getElementsByTagName('head')[0].appendChild(mta);
})();
}
}</script><script>//神策统计
}
</script>
<script type="text/javascript">
//神策统计
var host_v = window.location.host;
var __PUBLIC__;
......@@ -224,4 +265,7 @@
user_rank: '0'
});
sensors.quick('autoTrack');
}</script><script src=//h5static.ichunt.com/js/chunk-vendors.d5d087bb.js></script><script src=//h5static.ichunt.com/js/app.86de0022.js></script></body></html>
\ No newline at end of file
}
</script>
<script type="text/javascript" src="//static.leixin.com/app.js"></script></body>
</html>
This diff could not be displayed because it is too large.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment