Commit d10a4026 by 施宇

h5自营

parent d61b7422
......@@ -18,3 +18,4 @@ yarn-error.log*
*.njsproj
*.sln
*.sw*
/view
<template>
<div class="filter_box">
<div class="filter_condition">
<dl class="filter_stock">
<dt class="stock_dt">
<span class="stock_title">商品库存</span>
</dt>
<dd class="stock_content">
<span :class="{'stock_li':true,'check':isyh}" @click="changYh">仅看有货</span>
</dd>
</dl>
<template v-for="(v,k) in filterData">
<template v-if="k!='brand_id'&&k!='encap'&&k!='packing'">
<dl class="filter_dl">
<dt class="filter_dt">
<div class="filter_head">
<span class="filter_title">{{k}}</span>
<template v-if="selectObj[k]&&selectObj[k].length">
<span
class="filter_xuan"
style="color: rgb(16, 128, 208);"
>{{selectObj[k].join()}}</span>
</template>
<template v-else>
<span class="filter_xuan">全部</span>
</template>
</div>
<div class="filter_more" @click="showDetail(k)">
<i
class="icon iconfont icon_down"
:class="{'icon':true,'iconfont':true,'icon_up':v.showMore,'icon_down':!v.showMore}"
></i>
</div>
</dt>
<dd class="filter_content" :style="{'height':v.showMore?'auto':'0.89333rem'}">
<ul class="clr filter_ul">
<li
v-for="(val,i) in v.list"
:class="{'filter_li':true,'check':val.check}"
@click="selectRight(k,i)"
>{{val.name+"("+val.num+")"}}</li>
</ul>
</dd>
</dl>
</template>
</template>
</div>
<div class="button">
<a class="but font cancel" @click="resetRight">重置</a>
<a class="but-blue confirm" @click="filterRight">确定</a>
</div>
</div>
</template>
<script>
export default {
data() {
return {
selectObj: {},
isyh: false
};
},
props: {
filterData: {
type: Object,
default: function() {
return {};
}
},
isShow: {
type: Boolean,
default: false
}
},
watch: {
isShow(now) {
if (now && JSON.stringify(this.selectObj) !== "{}") {
for (let k in this.filterData) {
let filterDataList = this.filterData[k].list;
for (let i = 0; i < filterDataList.length; i++) {
if (this.selectObj[k]) {
let index = this.selectObj[k].indexOf(filterDataList[i].name);
if (index !== -1) {
this.$set(this.filterData[k].list[i], "check", true);
}
}
}
}
}
}
},
methods: {
changYh() {
this.isyh = !this.isyh;
},
resetRight() {
this.selectObj = {};
this.isyh = false;
this.$emit("resetRight");
},
filterRight() {
let params = {};
if (this.isyh) {
params = { filterData: this.selectObj, isyh: true };
} else {
params = { filterData: this.selectObj, isyh: false };
}
this.$emit("filterRight", params);
},
showDetail(k) {
if (this.filterData[k].showMore) {
this.filterData[k].showMore = false;
} else {
this.$set(this.filterData[k], "showMore", true);
}
},
selectRight(k, i) {
let name = this.filterData[k].list[i].name;
if (this.filterData[k].list[i].check) {
this.filterData[k].list[i].check = false;
let index = this.selectObj[k].indexOf(name);
this.selectObj[k].splice(index, 1);
if (!this.selectObj[k].length) {
delete this.selectObj[k];
}
} else {
this.$set(this.filterData[k].list[i], "check", true);
if (this.selectObj[k]) {
// let index = this.selectObj[k].indexOf(name);
// if(index == -1){
this.selectObj[k].push(name);
// }
} else {
this.selectObj[k] = [name];
}
}
}
}
};
</script>
<style lang="scss">
@function remFun($rem) {
@return $rem * 50/37.5;
}
.filter_box {
width: remFun(6.86rem);
height: 100%;
overflow: hidden;
background: #fff;
position: absolute;
top: 0;
right: 0;
z-index: 1000;
* {
box-sizing: border-box;
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.filter_condition {
height: 94%;
overflow-y: auto;
padding-top: remFun(0.3rem);
.filter_stock {
margin: 0 remFun(0.05rem) remFun(0.3rem) remFun(0.2rem);
.stock_dt {
height: remFun(0.4rem);
.stock_title {
float: left;
height: remFun(0.4rem);
color: #333333;
margin-right: remFun(0.4rem);
font-size: 16px;
font-weight: bold;
line-height: remFun(0.4rem);
}
}
.stock_content {
margin-top: remFun(0.3rem);
height: remFun(0.67rem);
overflow: hidden;
.stock_li {
float: left;
font-size: 12px;
width: remFun(2rem);
height: remFun(0.5rem);
line-height: remFun(0.5rem);
background: #f6f6f6;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border-radius: remFun(0.05rem);
margin-right: remFun(0.17rem);
margin-bottom: remFun(0.17rem);
&.check {
background: #1080d0 !important;
color: #fff !important;
}
}
}
}
.filter_dl {
margin: 0 remFun(0.05rem) remFun(0.3rem) remFun(0.2rem);
.filter_dt {
height: remFun(0.4rem);
.filter_head {
float: left;
width: remFun(6rem);
height: remFun(0.4rem);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
.filter_title {
height: remFun(0.4rem);
color: #333333;
margin-right: remFun(0.4rem);
font-size: 16px;
font-weight: bold;
line-height: remFun(0.4rem);
}
.filter_xuan {
float: right;
font-size: 12px;
height: remFun(0.4rem);
line-height: remFun(0.4rem);
}
}
.filter_more {
float: left;
height: remFun(0.4rem);
font-size: 12px;
line-height: remFun(0.4rem);
i {
font-size: 12px;
margin: remFun(0.1rem) 5px;
display: block;
width: remFun(0.24rem);
height: remFun(0.13rem);
&.icon_down {
background: url("../../assets/images/xianhuo/question_content_down.png");
background-size: contain;
background-repeat: no-repeat;
}
&.icon_up {
background: url("../../assets/images/xianhuo/question_content_up.png");
background-size: contain;
background-repeat: no-repeat;
}
}
}
}
.filter_content {
margin-top: remFun(0.3rem);
height: remFun(0.67rem);
overflow: hidden;
.filter_ul {
.filter_li {
float: left;
font-size: 12px;
width: remFun(2rem);
height: remFun(0.5rem);
line-height: remFun(0.5rem);
background: #f6f6f6;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border-radius: remFun(0.05rem);
margin-right: remFun(0.17rem);
margin-bottom: remFun(0.17rem);
&.check {
background: #1080d0 !important;
color: #fff !important;
}
}
}
}
}
}
.button {
border-top: 1px solid #d6d7dc;
height: remFun(0.8rem);
line-height: remFun(0.8rem);
background: #fff;
a {
width: 50%;
font-size: 14px;
height: remFun(0.78rem);
line-height: remFun(0.78rem);
display: block;
float: left;
text-align: center;
&.cancel {
border-radius: 5px;
color: #333333;
}
&.confirm {
background: #1080d0;
color: #fff;
text-decoration: none;
border: none;
}
}
}
}
</style>
......@@ -7,7 +7,7 @@
<div class="self-ichunt">
<div class="search-sift">
<div class="title-cut" v-show="zyRank">
<p class="fr xuan">
<p class="fr xuan" @click="openRight">
<span class="font">筛选</span>
<i class="icon iconfont icon-shaixuan"></i>
</p>
......@@ -37,7 +37,10 @@
</div>
<div class="sift-box" v-show="zyFilter||zyClass">
<dl :class="{'p_act': zyFilterInit == 0}">
<dt @click="changeZyFilterInit(0)">{{classFilter}}</dt>
<dt
@click="changeZyFilterInit(0)"
:class="{'f-blue':classFilter}"
>{{classFilter||'分类筛选'}}</dt>
<dd :style="{'display':zyFilterInit == 0?'block':'none'}">
<ul>
<ul class="classify_left">
......@@ -66,13 +69,13 @@
</div>
</ul>
<div class="button">
<a class="cancel" @click="resetClass">重置</a>
<a class="cancel" @click="reset('class')">重置</a>
<a class="confirm" @click="addPostData('class')">确定</a>
</div>
</dd>
</dl>
<dl :class="{'p_act': zyFilterInit == 1}">
<dt @click="changeZyFilterInit(1)">{{brand}}</dt>
<dt @click="changeZyFilterInit(1)" :class="{'f-blue':brand}">{{brand||"制造商"}}</dt>
<dd :style="{'display':zyFilterInit == 1?'block':'none'}">
<ul>
<template v-if="zyFilterData.brand_id">
......@@ -92,7 +95,7 @@
</dd>
</dl>
<dl :class="{'p_act': zyFilterInit == 2}">
<dt @click="changeZyFilterInit(2)">{{encap}}</dt>
<dt @click="changeZyFilterInit(2)" :class="{'f-blue':encap}">{{encap||"封装规格"}}</dt>
<dd :style="{'display':zyFilterInit == 2?'block':'none'}">
<ul>
<template v-if="zyFilterData.encap">
......@@ -112,7 +115,7 @@
</dd>
</dl>
<dl :class="{'p_act': zyFilterInit == 3}">
<dt @click="changeZyFilterInit(3)">{{packing}}</dt>
<dt @click="changeZyFilterInit(3)" :class="{'f-blue':packing}">{{packing||"包装筛选"}}</dt>
<dd :style="{'display':zyFilterInit == 3?'block':'none'}">
<ul>
<template v-if="zyFilterData.packing">
......@@ -137,33 +140,51 @@
</div>
</div>
</div>
<rightSelect
v-show="isShowRight"
:filterData="zyFilterData"
:isShow="isShowRight"
@resetRight="resetRight"
@filterRight="filterRight"
></rightSelect>
<div
@click="closeRight"
:class="{'backdrop':true,'zIndex': zyFilterInit!=-1}"
v-if="isShowRight || zyFilterInit!=-1"
></div>
</div>
</template>
<script>
import Header from "@/views/common/Header.vue";
import { Icon, Field } from "vant";
import { mapState } from "vuex";
import rightSelect from "./rightSelect";
export default {
name: "xianhuo",
components: {
Header,
"van-icon": Icon
"van-icon": Icon,
rightSelect
},
data() {
return {
zyFilterInit: -1,
zyRankInit: 0, //0综合 1库存多到少 2//库存少到多 3//价格高到低 4//价格低到高
classFilter: "分类筛选",
brand: "制造商",
encap: "封装规格",
packing: "包装筛选",
classFilter: "",
brand: "",
encap: "",
packing: "",
classStr: 161,
brandStr: "",
encapStr: "",
packingStr: "",
secondClass: [],
addClassStr: 161,
firstCheckId:""
secondClass: [], //二级分类的数组
addClassStr: 161, //点击确定生成的分类id
firstCheckId: "", //当二级数据存在时判断一级数据的id
firstClassName: "", //第一级数据的name,
secondClassName: "", //第二级数据的name
isResetData: false, //是否重置数据
isShowRight: false //是否展示右侧
};
},
created() {
......@@ -186,47 +207,64 @@ export default {
classLight(now) {
this.secondClass = now.class_id2_list;
this.firstCheckId = now.class_id1;
// let firstFlag = Boolean(now.flag);
// let secondFlag = false;
// let secondId = "";
// for (let i = 0; i < now.class_id2_list.length; i++) {
// if (now.class_id2_list[i].flag) {
// secondFlag = true;
// secondId = now.class_id2_list[i].class_id2;
// break;
// }
// }
// if (firstFlag) {
// if (secondFlag) {
// this.classStr = secondId;
// this.addClassStr = secondId;
// } else {
// this.classStr = now.class_id1;
// this.addClassStr = now.class_id1;
// }
// } else {
// this.classStr = "";
// this.addClassStr = "";
// }
this.firstClassName = now.class_id1_name;
let index = this.secondClass.findIndex((val, index, arr) => {
if (val.flag) {
return val;
}
});
if (index == -1) {
this.classFilter = this.firstClassName;
} else {
this.classFilter =
this.firstClassName + "," + this.secondClass[index].class_id2_name;
}
}
},
methods: {
toSearch() {},
resetRight() {
this.getZyData();
},
filterRight(v) {
this.isShowRight = false;
this.getZyData(v);
},
openRight() {
this.isShowRight = true;
this.zyFilterInit = -1;
},
closeRight() {
if (this.isShowRight) {
this.isShowRight = false;
}
if (this.zyFilterInit != -1) {
this.zyFilterInit = -1;
}
},
getClassSecond(v) {
//第一级数据选中
this.firstCheckId = "";
this.classStr = v.class_id1;
this.firstClassName = v.class_id1_name;
this.isResetData = false;
for (let i = 0; i < this.classData.length; i++) {
if (this.classData[i].class_id1 == v.class_id1) {
this.classData[i].flag = true;
this.secondClass = this.classData[i].class_id2_list;
this.getSecondData("")
this.getSecondData({}, "2");
} else {
this.classData[i].flag = false;
}
}
},
getSecondData(v) {
getSecondData(v, type = "1") {
//第二级数据选中
if (type == "1") {
this.classStr = v.class_id2;
this.secondClassName = v.class_id2_name;
this.isResetData = false;
}
for (let i = 0; i < this.secondClass.length; i++) {
if (this.secondClass[i].class_id2 == v.class_id2) {
this.secondClass[i].flag = true;
......@@ -235,9 +273,10 @@ export default {
}
}
},
getZyData() {
getZyData(rightFilter = {}) {
let params = { p: 1, offset: 10 };
if(this.addClassStr){
let rightFilterStr = JSON.stringify(rightFilter);
if (this.addClassStr) {
params["class_id/condition"] = this.addClassStr;
}
if (this.brandStr) {
......@@ -260,6 +299,14 @@ export default {
} else if (this.zyRankInit == 4) {
params["single_rank"] = 2;
}
if (rightFilterStr !== "{}") {
if (JSON.stringify(rightFilter.filterData) !== "{}") {
params["attrs/nested"] = JSON.stringify(rightFilter.filterData);
}
if (rightFilter.isyh) {
params["avail_rank"] = 1;
}
}
this.$store.dispatch({
type: "getZyData",
data: params
......@@ -290,41 +337,38 @@ export default {
}
},
addFilterData(k, type) {
let isChecked = false;
let arr = [];
this.isResetData = false;
if (!this.zyFilterData[type].list[k].check) {
isChecked = true;
this.$set(this.zyFilterData[type].list[k], "check", true);
} else {
isChecked = false;
this.$set(this.zyFilterData[type].list[k], "check", false);
}
},
resetClass() {
this.classStr = "";
this.addClassStr = "";
reset(type) {
//重置筛选数据
this.isResetData = true;
let str = "";
if (type == "class") {
this.firstCheckId = "";
for (let i = 0; i < this.classData.length; i++) {
if (this.classData[i].flag) {
this.classData[i].flag = false;
}
this.classData[i].flag = 0;
}
for (let i = 0; i < this.secondClass.length; i++) {
if (this.secondClass[i].flag) {
this.secondClass[i].flag = false;
}
}
},
reset(type) {
//重置筛选数据
for (let i = 0; i < this.zyFilterData[type].list.length; i++) {
this.$set(this.zyFilterData[type].list[i], "check", false);
this.secondClass[i].flag = 0;
}
} else {
if (type == "brand") {
this.brandStr = "";
str = "brand_id";
} else if (type == "encap") {
this.encapStr = "";
str = "encap";
} else if (type == "packing") {
this.packingStr = "";
str = "packing";
}
for (let i = 0; i < this.zyFilterData[str].list.length; i++) {
if (this.zyFilterData[str].list[i].check) {
this.zyFilterData[str].list[i].check = false;
}
}
}
},
addPostData(type) {
......@@ -332,34 +376,69 @@ export default {
this.zyFilterInit = -1;
if (type == "class") {
//分类筛选
this.brand = "";
this.encap = "";
this.packing = "";
this.brandStr = "";
this.encapStr = "";
this.packingStr = "";
if (this.isResetData) {
this.addClassStr = "";
this.firstClassName = "";
this.secondClassName = "";
this.classFilter = "";
} else {
this.addClassStr = this.classStr;
this.classFilter = this.secondClassName
? this.firstClassName + "," + this.secondClassName
: this.firstClassName;
}
} else if (type == "brand") {
//制造商
this.brandStr = "";
this.brand = "";
if (this.isResetData) {
} else {
for (let i = 0; i < this.zyFilterData["brand_id"].list.length; i++) {
if (this.zyFilterData["brand_id"].list[i].check) {
this.brandStr += this.zyFilterData["brand_id"].list[i].id + ",";
this.brand += this.zyFilterData["brand_id"].list[i].name + ",";
}
}
}
this.brandStr = this.brandStr.slice(0, -1);
this.brand = this.brand.slice(0, -1);
} else if (type == "encap") {
//封装规格
this.encapStr = "";
this.encap = "";
if (this.isResetData) {
} else {
for (let i = 0; i < this.zyFilterData["encap"].list.length; i++) {
if (this.zyFilterData["encap"].list[i].check) {
this.encapStr += this.zyFilterData["encap"].list[i].id + ",";
this.encap += this.zyFilterData["encap"].list[i].name + ",";
}
}
}
this.encapStr = this.encapStr.slice(0, -1);
this.encap = this.encap.slice(0, -1);
} else if (type == "packing") {
//包装筛选
this.packingStr = "";
this.packing = "";
if (this.isResetData) {
} else {
for (let i = 0; i < this.zyFilterData["packing"].list.length; i++) {
if (this.zyFilterData["packing"].list[i].check) {
this.packingStr += this.zyFilterData["packing"].list[i].id + ",";
this.packing += this.zyFilterData["packing"].list[i].name + ",";
}
}
}
this.packingStr = this.packingStr.slice(0, -1);
this.packing = this.packing.slice(0, -1);
}
this.getZyData();
}
......@@ -370,6 +449,18 @@ export default {
@function remFun($rem) {
@return $rem * 50/37.5;
}
.backdrop {
position: fixed;
z-index: 999;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
&.zIndex {
z-index: 87;
}
}
.xianhuo {
font-family: "Helvetica Neue", Helvetica, sans-serif;
.search-cont {
......@@ -379,6 +470,7 @@ export default {
.search-sift {
width: 100%;
position: relative;
z-index: 88;
.title-cut {
padding: 0 10px;
font-size: 14px;
......@@ -468,6 +560,9 @@ export default {
text-overflow: ellipsis;
white-space: nowrap;
padding: 0 5px;
&.f-blue {
color: #1080d0;
}
i {
font-size: 12px;
margin-left: 5px;
......
.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:13px;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}.head-dom[data-v-87442ebc]{padding-top:44px}.head-dom .header-page[data-v-87442ebc]{height:44px;width:100%;padding:0 .2rem;position:fixed;z-index:998;top:0;background:#f3f3f3}.head-dom .header-page i[data-v-87442ebc]{font-size:18px;margin-top:13px;color:#666}.head-dom .header-page h3[data-v-87442ebc]{font-size:16px;color:#333;width:68%;line-height:44px;text-align:center;height:44px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 10%!important}.head-dom .header-page .search[data-v-87442ebc]{position:absolute;left:40px;right:60px;background:#fff;height:30px;margin:7px 0;border-radius:15px;padding:5px 10px 5px 30px;-webkit-box-sizing:border-box;box-sizing:border-box}.head-dom .header-page .search .van-icon[data-v-87442ebc]{position:absolute;left:10px;height:20px;line-height:21px;margin-top:0}.head-dom .header-page .search .van-cell[data-v-87442ebc]{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;padding:0;line-height:21px;font-size:12px;color:#333}.xianhuo{font-family:Helvetica Neue,Helvetica,sans-serif}.xianhuo .search-cont *{-webkit-box-sizing:border-box;box-sizing:border-box}.xianhuo .search-cont .search-sift{width:100%;position:relative}.xianhuo .search-cont .search-sift .title-cut{padding:0 10px;font-size:14px;overflow:hidden;height:40px;line-height:40px;border-bottom:1px solid #d6d7dc;background-color:#fff}.xianhuo .search-cont .search-sift .title-cut p i{margin:0 5px;font-size:15px}.xianhuo .search-cont .search-sift .title-cut li{float:left;margin-right:.96rem}.xianhuo .search-cont .search-sift .title-cut li.act{color:#1080d0}.xianhuo .search-cont .search-sift .title-cut li span{display:block;float:right;position:relative;width:10px;height:20px;left:5px;top:10px}.xianhuo .search-cont .search-sift .title-cut li span i{position:absolute;content:"";height:0;width:0;pointer-events:none;border:solid transparent;border-width:5px 4px}.xianhuo .search-cont .search-sift .title-cut li span i.icon-top{top:-1px;right:0;border-bottom-color:#666}.xianhuo .search-cont .search-sift .title-cut li span i.icon-top.bright{border-bottom-color:#1080d0}.xianhuo .search-cont .search-sift .title-cut li span i.icon-bot{top:11px;right:0;border-top-color:#666}.xianhuo .search-cont .search-sift .title-cut li span i.icon-bot.bright{border-top-color:#1080d0}.xianhuo .search-cont .search-sift .sift-box{position:relative;padding-top:5px;padding-left:2.5%;height:40px;line-height:40px;border-bottom:1px solid #d6d7dc;background-color:#fff}.xianhuo .search-cont .search-sift .sift-box dl{float:left;width:22.5%;margin-right:2.5%;height:35px}.xianhuo .search-cont .search-sift .sift-box dl.p_act{border:1px solid #d6d7dc;border-bottom:none}.xianhuo .search-cont .search-sift .sift-box dl.p_act dt{background:#fff;height:34px;line-height:28px;border-bottom:1px solid #fff}.xianhuo .search-cont .search-sift .sift-box dl dt{text-align:center;font-size:12px;height:30px;line-height:30px;background:#f3f3f3;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 5px}.xianhuo .search-cont .search-sift .sift-box dl dt i{font-size:12px;margin-left:5px}.xianhuo .search-cont .search-sift .sift-box dl dd{display:none;position:absolute;top:40px;left:0;width:100%;bottom:140px;z-index:3}.xianhuo .search-cont .search-sift .sift-box dl dd ul{background:#fff;padding-bottom:3px;height:200px;overflow-x:auto}.xianhuo .search-cont .search-sift .sift-box dl dd ul span{max-width:4.13333rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block}.xianhuo .search-cont .search-sift .sift-box dl dd .classify_left{width:4.66667rem;float:left;border-right:.02667rem solid #d6d7dc}.xianhuo .search-cont .search-sift .sift-box dl dd .classify_left li{width:97%;float:left;color:#333;font-size:14px;margin:0 2%;border:1px solid #fff;margin-top:3px;padding:0 10px;height:32px;line-height:32px}.xianhuo .search-cont .search-sift .sift-box dl dd .classify_right_box{width:5.33333rem;float:left;overflow:hidden}.xianhuo .search-cont .search-sift .sift-box dl dd .classify_right_box .classify_right{width:7.05333rem;overflow-y:auto}.xianhuo .search-cont .search-sift .sift-box dl dd .classify_right_box .classify_right li{width:72%;float:left;color:#333;font-size:14px;margin:0 2%;border:1px solid #fff;margin-top:3px;padding:0 10px;height:32px;line-height:32px}.xianhuo .search-cont .search-sift .sift-box dl dd .classify_right_box .classify_right li.check{border:1px solid #1080d0;color:#1080d0}.xianhuo .search-cont .search-sift .sift-box dl dd li{width:46%;float:left;color:#333;font-size:14px;margin:0 2%;border:1px solid #fff;margin-top:3px;padding:0 10px;height:32px;line-height:32px}.xianhuo .search-cont .search-sift .sift-box dl dd li.check{border:1px solid #1080d0;color:#1080d0}.xianhuo .search-cont .search-sift .sift-box dl dd .button{border-top:1px solid #d6d7dc;height:40px;line-height:40px;background:#fff;-webkit-box-shadow:0 2px 5px #eee;box-shadow:0 2px 5px #eee}.xianhuo .search-cont .search-sift .sift-box dl dd .button a{width:50%;font-size:14px;height:39px;line-height:39px;display:block;float:left;text-align:center}.xianhuo .search-cont .search-sift .sift-box dl dd .button a.cancel{color:#333;border-radius:5px}.xianhuo .search-cont .search-sift .sift-box dl dd .button a.confirm{background:#1080d0;color:#fff;text-decoration:none;border:none}
\ 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-0152a94c.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0528a41a.b6a6f279.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0ccaff37.9a3ef394.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0d688f2e.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0ea3b7e0.d25a53d4.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-111df22d.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-13b2a374.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-15480d0d.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-158c3ed4.fe46872f.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-178fc040.dcbf5852.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-1c9625fe.746ec6f3.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-22e40ede.f7670042.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-23e7944a.c8649411.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-2d4f397c.2ba08771.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-2f5da85a.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-34076066.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-3479b5a0.80056bad.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-3765c3c6.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-41226dfb.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-4631de92.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-50997173.2a594d86.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-5474cc08.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-5cf16964.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-6be99e9a.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-73b3e1a8.e137fec1.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-7ca9fe78.46303413.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-8aab87ce.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-8ce0ddd0.22356d82.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-978da802.b12435d8.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-a99dec30.58a2ea9a.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-c308643c.a742f79a.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-f9d0f84e.5dae5cb6.css rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0152a94c.97911438.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0528a41a.14b0d3dd.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0ccaff37.5070e2e9.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0d688f2e.a0978d9d.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0ea3b7e0.4ab1a2eb.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-111df22d.c46b4aa7.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-13b2a374.91ed3640.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-15480d0d.6b4a832a.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-158c3ed4.f94f87c9.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-178fc040.af18f8ef.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-1c9625fe.350b3f45.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-22e40ede.f719bb67.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-23e7944a.0226b5e8.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-2d4f397c.46ce3167.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-2f5da85a.82a9eea1.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-34076066.c4aa6957.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-3479b5a0.c2fa3eab.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-3765c3c6.d032a023.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-41226dfb.cafe85da.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-4631de92.d6d50813.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-50997173.90db7718.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-5474cc08.508aadba.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-5cf16964.1e790e2e.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-6be99e9a.e9bdaa6d.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-73b3e1a8.0c18344d.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-7ca9fe78.37e26d7a.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-8aab87ce.b5c1e1e7.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-8ce0ddd0.652bd984.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-978da802.42957bde.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-a99dec30.0e006717.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-c308643c.b57e8ff3.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-f9d0f84e.600042df.js rel=prefetch><link href=//h5static.ichunt.com/css/app.3dbc66df.css rel=preload as=style><link href=//h5static.ichunt.com/css/chunk-vendors.4a9b0375.css rel=preload as=style><link href=//h5static.ichunt.com/js/app.13b15d25.js rel=preload as=script><link href=//h5static.ichunt.com/js/chunk-vendors.5239a044.js rel=preload as=script><link href=//h5static.ichunt.com/css/chunk-vendors.4a9b0375.css rel=stylesheet><link href=//h5static.ichunt.com/css/app.3dbc66df.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,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-0152a94c.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0528a41a.b6a6f279.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0ccaff37.9a3ef394.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0d688f2e.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-0ea3b7e0.d25a53d4.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-111df22d.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-13b2a374.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-15480d0d.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-158c3ed4.fe46872f.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-178fc040.dcbf5852.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-1c9625fe.746ec6f3.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-22e40ede.f7670042.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-23e7944a.c8649411.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-2d4f397c.2ba08771.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-2f5da85a.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-34076066.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-3479b5a0.80056bad.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-3765c3c6.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-41226dfb.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-44668be2.cfd3edf0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-4631de92.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-50997173.2a594d86.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-5474cc08.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-5cf16964.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-6be99e9a.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-73b3e1a8.e137fec1.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-7ca9fe78.46303413.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-8aab87ce.92647ec0.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-8ce0ddd0.22356d82.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-978da802.b12435d8.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-a99dec30.58a2ea9a.css rel=prefetch><link href=//h5static.ichunt.com/css/chunk-f9d0f84e.5dae5cb6.css rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0152a94c.97911438.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0528a41a.14b0d3dd.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0ccaff37.5070e2e9.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0d688f2e.a0978d9d.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-0ea3b7e0.4ab1a2eb.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-111df22d.c46b4aa7.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-13b2a374.91ed3640.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-15480d0d.6b4a832a.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-158c3ed4.f94f87c9.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-178fc040.af18f8ef.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-1c9625fe.350b3f45.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-22e40ede.f719bb67.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-23e7944a.0226b5e8.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-2d4f397c.46ce3167.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-2f5da85a.82a9eea1.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-34076066.c4aa6957.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-3479b5a0.c2fa3eab.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-3765c3c6.d032a023.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-41226dfb.cafe85da.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-44668be2.63fa1a33.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-4631de92.d6d50813.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-50997173.90db7718.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-5474cc08.508aadba.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-5cf16964.1e790e2e.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-6be99e9a.e9bdaa6d.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-73b3e1a8.0c18344d.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-7ca9fe78.37e26d7a.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-8aab87ce.b5c1e1e7.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-8ce0ddd0.652bd984.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-978da802.42957bde.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-a99dec30.0e006717.js rel=prefetch><link href=//h5static.ichunt.com/js/chunk-f9d0f84e.600042df.js rel=prefetch><link href=//h5static.ichunt.com/css/app.3dbc66df.css rel=preload as=style><link href=//h5static.ichunt.com/css/chunk-vendors.4a9b0375.css rel=preload as=style><link href=//h5static.ichunt.com/js/app.93a695df.js rel=preload as=script><link href=//h5static.ichunt.com/js/chunk-vendors.5239a044.js rel=preload as=script><link href=//h5static.ichunt.com/css/chunk-vendors.4a9b0375.css rel=stylesheet><link href=//h5static.ichunt.com/css/app.3dbc66df.css rel=stylesheet></head><body class=boxsiz><noscript><strong>网站出现了一点小问题,正在紧急修复中.......</strong></noscript><div id=app></div><script>function SetCookie(name, value, time, domain) {
domain = domain ? ";domain=" + domain : "";
var Days = time;
var exp = new Date();
......@@ -224,4 +224,4 @@
user_rank: '0'
});
sensors.quick('autoTrack');
}</script><script src=//h5static.ichunt.com/js/chunk-vendors.5239a044.js></script><script src=//h5static.ichunt.com/js/app.13b15d25.js></script></body></html>
\ No newline at end of file
}</script><script src=//h5static.ichunt.com/js/chunk-vendors.5239a044.js></script><script src=//h5static.ichunt.com/js/app.93a695df.js></script></body></html>
\ No newline at end of file
(function(t){function e(e){for(var n,i,c=e[0],s=e[1],d=e[2],u=0,l=[];u<c.length;u++)i=c[u],o[i]&&l.push(o[i][0]),o[i]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(t[n]=s[n]);f&&f(e);while(l.length)l.shift()();return r.push.apply(r,d||[]),a()}function a(){for(var t,e=0;e<r.length;e++){for(var a=r[e],n=!0,i=1;i<a.length;i++){var c=a[i];0!==o[c]&&(n=!1)}n&&(r.splice(e--,1),t=s(s.s=a[0]))}return t}var n={},i={app:0},o={app:0},r=[];function c(t){return s.p+"js/"+({}[t]||t)+"."+{"chunk-0528a41a":"14b0d3dd","chunk-0ccaff37":"5070e2e9","chunk-0ea3b7e0":"4ab1a2eb","chunk-158c3ed4":"f94f87c9","chunk-178fc040":"af18f8ef","chunk-1c9625fe":"350b3f45","chunk-22e40ede":"f719bb67","chunk-23e7944a":"0226b5e8","chunk-2d4f397c":"46ce3167","chunk-3479b5a0":"c2fa3eab","chunk-50997173":"90db7718","chunk-73b3e1a8":"0c18344d","chunk-7ca9fe78":"37e26d7a","chunk-8ce0ddd0":"652bd984","chunk-978da802":"42957bde","chunk-0152a94c":"97911438","chunk-0d688f2e":"a0978d9d","chunk-111df22d":"c46b4aa7","chunk-13b2a374":"91ed3640","chunk-15480d0d":"6b4a832a","chunk-2f5da85a":"82a9eea1","chunk-34076066":"c4aa6957","chunk-3765c3c6":"d032a023","chunk-41226dfb":"cafe85da","chunk-4631de92":"d6d50813","chunk-5474cc08":"508aadba","chunk-5cf16964":"1e790e2e","chunk-6be99e9a":"e9bdaa6d","chunk-8aab87ce":"b5c1e1e7","chunk-a99dec30":"0e006717","chunk-c308643c":"b57e8ff3","chunk-f9d0f84e":"600042df"}[t]+".js"}function s(e){if(n[e])return n[e].exports;var a=n[e]={i:e,l:!1,exports:{}};return t[e].call(a.exports,a,a.exports,s),a.l=!0,a.exports}s.e=function(t){var e=[],a={"chunk-0528a41a":1,"chunk-0ccaff37":1,"chunk-0ea3b7e0":1,"chunk-158c3ed4":1,"chunk-178fc040":1,"chunk-1c9625fe":1,"chunk-22e40ede":1,"chunk-23e7944a":1,"chunk-2d4f397c":1,"chunk-3479b5a0":1,"chunk-50997173":1,"chunk-73b3e1a8":1,"chunk-7ca9fe78":1,"chunk-8ce0ddd0":1,"chunk-978da802":1,"chunk-0152a94c":1,"chunk-0d688f2e":1,"chunk-111df22d":1,"chunk-13b2a374":1,"chunk-15480d0d":1,"chunk-2f5da85a":1,"chunk-34076066":1,"chunk-3765c3c6":1,"chunk-41226dfb":1,"chunk-4631de92":1,"chunk-5474cc08":1,"chunk-5cf16964":1,"chunk-6be99e9a":1,"chunk-8aab87ce":1,"chunk-a99dec30":1,"chunk-c308643c":1,"chunk-f9d0f84e":1};i[t]?e.push(i[t]):0!==i[t]&&a[t]&&e.push(i[t]=new Promise(function(e,a){for(var n="css/"+({}[t]||t)+"."+{"chunk-0528a41a":"b6a6f279","chunk-0ccaff37":"9a3ef394","chunk-0ea3b7e0":"d25a53d4","chunk-158c3ed4":"fe46872f","chunk-178fc040":"dcbf5852","chunk-1c9625fe":"746ec6f3","chunk-22e40ede":"f7670042","chunk-23e7944a":"c8649411","chunk-2d4f397c":"2ba08771","chunk-3479b5a0":"80056bad","chunk-50997173":"2a594d86","chunk-73b3e1a8":"e137fec1","chunk-7ca9fe78":"46303413","chunk-8ce0ddd0":"22356d82","chunk-978da802":"b12435d8","chunk-0152a94c":"92647ec0","chunk-0d688f2e":"92647ec0","chunk-111df22d":"92647ec0","chunk-13b2a374":"92647ec0","chunk-15480d0d":"92647ec0","chunk-2f5da85a":"92647ec0","chunk-34076066":"92647ec0","chunk-3765c3c6":"92647ec0","chunk-41226dfb":"92647ec0","chunk-4631de92":"92647ec0","chunk-5474cc08":"92647ec0","chunk-5cf16964":"92647ec0","chunk-6be99e9a":"92647ec0","chunk-8aab87ce":"92647ec0","chunk-a99dec30":"58a2ea9a","chunk-c308643c":"a742f79a","chunk-f9d0f84e":"5dae5cb6"}[t]+".css",o=s.p+n,r=document.getElementsByTagName("link"),c=0;c<r.length;c++){var d=r[c],u=d.getAttribute("data-href")||d.getAttribute("href");if("stylesheet"===d.rel&&(u===n||u===o))return e()}var l=document.getElementsByTagName("style");for(c=0;c<l.length;c++){d=l[c],u=d.getAttribute("data-href");if(u===n||u===o)return e()}var f=document.createElement("link");f.rel="stylesheet",f.type="text/css",f.onload=e,f.onerror=function(e){var n=e&&e.target&&e.target.src||o,r=new Error("Loading CSS chunk "+t+" failed.\n("+n+")");r.code="CSS_CHUNK_LOAD_FAILED",r.request=n,delete i[t],f.parentNode.removeChild(f),a(r)},f.href=o;var h=document.getElementsByTagName("head")[0];h.appendChild(f)}).then(function(){i[t]=0}));var n=o[t];if(0!==n)if(n)e.push(n[2]);else{var r=new Promise(function(e,a){n=o[t]=[e,a]});e.push(n[2]=r);var d,u=document.createElement("script");u.charset="utf-8",u.timeout=120,s.nc&&u.setAttribute("nonce",s.nc),u.src=c(t),d=function(e){u.onerror=u.onload=null,clearTimeout(l);var a=o[t];if(0!==a){if(a){var n=e&&("load"===e.type?"missing":e.type),i=e&&e.target&&e.target.src,r=new Error("Loading chunk "+t+" failed.\n("+n+": "+i+")");r.type=n,r.request=i,a[1](r)}o[t]=void 0}};var l=setTimeout(function(){d({type:"timeout",target:u})},12e4);u.onerror=u.onload=d,document.head.appendChild(u)}return Promise.all(e)},s.m=t,s.c=n,s.d=function(t,e,a){s.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:a})},s.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},s.t=function(t,e){if(1&e&&(t=s(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var a=Object.create(null);if(s.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)s.d(a,n,function(e){return t[e]}.bind(null,n));return a},s.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return s.d(e,"a",e),e},s.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},s.p="//h5static.ichunt.com/",s.oe=function(t){throw t};var d=window["webpackJsonp"]=window["webpackJsonp"]||[],u=d.push.bind(d);d.push=e,d=d.slice();for(var l=0;l<d.length;l++)e(d[l]);var f=u;r.push([0,"chunk-vendors"]),a()})({0:function(t,e,a){t.exports=a("56d7")},"365c":function(t,e,a){"use strict";a.d(e,"a",function(){return l}),a.d(e,"b",function(){return g});var n,i,o,r,c,s=a("3f47"),d=a("7f43"),u=a.n(d);switch(window.location.hostname){case"m.ichunt.com":o="https://www.ichunt.com/v3/",i="https://m.ichunt.com/v3/",n="https://api.ichunt.com/",r="https://so12.ichunt.com",c="https://so12.ichunt.com";break;case"szm.ichunt.com":n="https://szapi.ichunt.com/",i="https://szm.ichunt.com/v3/",o="https://sz.ichunt.com/v3/",r="https://tso.ichunt.com",c="https://szso.ichunt.com";break;case"tm.ichunt.com":i="https://tm.ichunt.com/v3/",n="https://api.ichunt.com/",o="https://t.ichunt.com/v3/",r="https://tso.ichunt.com",c="https://szso.ichunt.com";break;case"m.liexin.com":i="http://m.liexin.com/v3/",n="http://api.liexin.com/",o="http://www.liexin.com/v3/",r="https://so12.ichunt.com",c="https://szso.ichunt.com";break;default:i="/m/v3/",n="/apis/"}var l=o,f=i,h=n,m={index:f+"index",loginCheck:h+"login/check",cartCount:h+"cart/count",customsrService:h+"public/customsrservice",getCommonParams:f+"getcommonparams",wxaccess:f+"api/wxaccess",checkAccountExists:h+"public/checkAccountExists",customSmsVerify:h+"public/customSmsVerify",chainFind:f+"Service/chainFind",wechatArticle:h+"Wechat/WechatArticleJinJi/article",newsArticle:h+"Article/Article/index",newsArticleDetail:h+"Article/Article/details",newsArticleDetailAd:f+"api/newsdetailad",actionLogin:h+"login/action",smsVerify:h+"public/smsVerify",feedback:h+"help/help/feedback",getUserCurrentPoint:h+"/point/getUserCurrentPoint",isSignInToday:h+"signIn/isSignInToday",signIn:h+"signIn/signIn",checkMktScore:h+"user/checkMktScore",getPointPrize:h+"point/getPointPrize",exchangePrize:h+"point/exchangePrize",getUserPointExchangeDetail:h+"point/getUserPointExchangeDetail",recvlist:h+"address/recvlist",pointruleApi:f+"api/pointrule",getUserPointDetail:h+"point/getUserPointDetail",getUserPointExchangeList:h+"point/getUserPointExchangeList",getWalletInfo:h+"wallet/info",activateWallet:h+"wallet/activate",sendSafesms:h+"wallet/safesms",verifyResetsms:h+"wallet/verifyresetsms",changeWalletpwd:h+"wallet/changepwd",walletListLog:h+"wallet/log",walletRecordList:h+"wallet/lists",verifySafeMobile:h+"wallet/verifysafe",getBindBankmsg:h+"wallet/getbankmsg",bindBankCard:h+"wallet/bindbankcard",walletRecharge:h+"wallet/recharge",walletWithdraw:h+"wallet/withdraw",rechargeWithdrawOrderIfo:h+"wallet/orderinfo",payTodo:h+"pay/todo",orderInfo:h+"order/info",getAboutUsData:f+"api/aboutData",searchZy:r+"/search/ZiYing/zy",searchLy:c+"/search/getData/index",searchLyEs:c+"/search/es/index"},g={index:function(t){return u.a.post(m.index,t)},loginCheck:function(t){return u.a.get(m.loginCheck,{params:Object(s["a"])({},t)})},smsVerify:function(t){return u.a.post(m.smsVerify,t)},actionLogin:function(t){return u.a.post(m.actionLogin,t)},feedback:function(t){return u.a.post(m.feedback,t)},cartCount:function(t){return u.a.get(m.cartCount,{params:Object(s["a"])({},t)})},customsrService:function(t){return u.a.get(m.customsrService,{params:Object(s["a"])({},t)})},getCommonParams:function(t){return u.a.post(m.getCommonParams,t)},wxaccess:function(t){return u.a.post(m.wxaccess,t)},checkAccountExists:function(t){return u.a.post(m.checkAccountExists,t)},customSmsVerify:function(t){return u.a.post(m.customSmsVerify,t)},chainFind:function(t){return u.a.post(m.chainFind,t)},wechatArticle:function(t){return u.a.post(m.wechatArticle,t)},newsArticle:function(t){return u.a.post(m.newsArticle,t)},newsArticleDetail:function(t){return u.a.post(m.newsArticleDetail,t)},newsArticleDetailAd:function(t){return u.a.post(m.newsArticleDetailAd,t)},getUserCurrentPoint:function(t){return u.a.post(m.getUserCurrentPoint,t)},isSignInToday:function(t){return u.a.post(m.isSignInToday,t)},signIn:function(t){return u.a.post(m.signIn,t)},checkMktScore:function(t){return u.a.post(m.checkMktScore,t)},getPointPrize:function(t){return u.a.post(m.getPointPrize,t)},exchangePrize:function(t){return u.a.post(m.exchangePrize,t)},recvlist:function(t){return u.a.post(m.recvlist,t)},getUserPointExchangeDetail:function(t){return u.a.post(m.getUserPointExchangeDetail,t)},pointruleApi:function(t){return u.a.post(m.pointruleApi,t)},getUserPointDetail:function(t){return u.a.post(m.getUserPointDetail,t)},getUserPointExchangeList:function(t){return u.a.post(m.getUserPointExchangeList,t)},getAboutUsData:function(t){return u.a.post(m.getAboutUsData,t)},getWalletInfo:function(t){return u.a.get(m.getWalletInfo,{params:Object(s["a"])({},t)})},activateWallet:function(t){return u.a.post(m.activateWallet,t)},sendSafesms:function(t){return u.a.post(m.sendSafesms,t)},verifyResetsms:function(t){return u.a.post(m.verifyResetsms,t)},walletListLog:function(t){return u.a.post(m.walletListLog,t)},changeWalletpwd:function(t){return u.a.post(m.changeWalletpwd,t)},walletRecordList:function(t){return u.a.post(m.walletRecordList,t)},verifySafeMobile:function(t){return u.a.post(m.verifySafeMobile,t)},getBindBankmsg:function(t){return u.a.post(m.getBindBankmsg,t)},bindBankCard:function(t){return u.a.post(m.bindBankCard,t)},walletRecharge:function(t){return u.a.post(m.walletRecharge,t)},walletWithdraw:function(t){return u.a.post(m.walletWithdraw,t)},rechargeWithdrawOrderIfo:function(t){return u.a.post(m.rechargeWithdrawOrderIfo,t)},payTodo:function(t){return u.a.post(m.payTodo,t)},orderInfo:function(t){return u.a.post(m.orderInfo,t)},getZyData:function(t){return u.a.post(m.searchZy,t)},getLyData:function(t){return u.a.post(m.searchLy,t)},getLyEsData:function(t){return u.a.post(m.searchLyEs,t)}}},4260:function(t,e,a){"use strict";a("b06f"),a("f91a"),a("ab56");var n=a("997e"),i=a.n(n),o=(a("612f"),a("208e")),r=a.n(o),c=(a("ea65"),0),s=8;function d(t){return p(u(g(t),t.length*s))}function u(t,e){t[e>>5]|=128<<24-e%32,t[15+(e+64>>9<<4)]=e;for(var a=Array(80),n=1732584193,i=-271733879,o=-1732584194,r=271733878,c=-1009589776,s=0;s<t.length;s+=16){for(var d=n,u=i,g=o,p=r,v=c,b=0;b<80;b++){a[b]=b<16?t[s+b]:m(a[b-3]^a[b-8]^a[b-14]^a[b-16],1);var w=h(h(m(n,5),l(b,i,o,r)),h(h(c,a[b]),f(b)));c=r,r=o,o=m(i,30),i=n,n=w}n=h(n,d),i=h(i,u),o=h(o,g),r=h(r,p),c=h(c,v)}return Array(n,i,o,r,c)}function l(t,e,a,n){return t<20?e&a|~e&n:t<40?e^a^n:t<60?e&a|e&n|a&n:e^a^n}function f(t){return t<20?1518500249:t<40?1859775393:t<60?-1894007588:-899497514}function h(t,e){var a=(65535&t)+(65535&e),n=(t>>16)+(e>>16)+(a>>16);return n<<16|65535&a}function m(t,e){return t<<e|t>>>32-e}function g(t){for(var e=Array(),a=(1<<s)-1,n=0;n<t.length*s;n+=s)e[n>>5]|=(t.charCodeAt(n/s)&a)<<24-n%32;return e}function p(t){for(var e=c?"0123456789ABCDEF":"0123456789abcdef",a="",n=0;n<4*t.length;n++)a+=e.charAt(t[n>>2]>>8*(3-n%4)+4&15)+e.charAt(t[n>>2]>>8*(3-n%4)&15);return a}var v=a("fed1");e["a"]={setCookie:function(t,e,a,n){n=n?";domain="+n:"";var i=a,o=new Date;return o.setTime(o.getTime()+24*i*60*60*1e3),document.cookie=t+"="+encodeURIComponent(e)+";expires="+o.toGMTString()+";path=/"+n,!0},getCookie:function(t){for(var e=document.cookie,a=e.split("; "),n=0;n<a.length;n++){var i=a[n].split("=");if(t==i[0])return i[1]}return null},delCookie:function(t){var e=new Date;e.setTime(e.getTime()-1);var a=this.getCookie(t);null!=a&&(document.cookie=t+"="+a+";expires="+e.toGMTString())},getParams:function(t){var e=this.getCookie("Yo4teW_gid"),a=this.getCookie("cache_time");if(null!=a)var n=Math.floor((new Date).getTime()/1e3);else{n=Math.floor((new Date).getTime()/1e3)+window.fwtimes;this.setCookie("cache_time",window.fwtimes,1,window.cookieHostname)}var o=[],c={},s="",u="",l="",f={pf:2,qwertyuiop:n,Yo4teW_gid:e},h=r()({},f,t);i()(h).forEach(function(t,e,a){o.push(t)}),o=o.sort(),o.forEach(function(t,e,a){c[o[e]]=h[o[e]]}),i()(c).forEach(function(t,e,a){s+=t+"="+c[t]}),u=s.replace(/[^0-9a-zA-Z]/g,""),u=u.toUpperCase();for(var m=0;m<u.length;m++)"A"!=u[m]&&"B"!=u[m]&&"C"!=u[m]&&(l+=u[m]);s=d(l);var g=r()({},t,{asdfghjkl:s},{qwertyuiop:n},{pf:2});return v.stringify(g)},isLogin:function(){var t=0;return this.getCookie("Yo4teW_uid")&&(t=2,this.getCookie("Yo4teW_skey")&&(t=1)),t},loginBack:function(){},compare:function(t,e){return function(a,n){var i=a[t],o=n[t];return e?i-o:o-i}},distinct:function(t){var e,a,n=t,i=[],o=n.length;for(e=0;e<o;e++){for(a=e+1;a<o;a++)n[e]===n[a]&&(a=++e);i.push(n[e])}return i},aggxde:function(t){if(t&&-1!=t.indexOf("font")){var e=t.split('class="');e.shift();for(var a="",n=[["asfgdqwer","asfgdtyhg","asfgdpolk","asfgdpoqw"],["asfgdrfdf","asfgderfd","asfgdwdsa","asfgdpoer"],["asfgdasde","asfgdqwsz","asfgdrtgd","asfgdpovv"],["asfgdwsxc","asfgdwsxz","asfgdrfvb","asfgdpoee"],["asfgdqazs","asfgdqasd","asfgdqwag","asfgdpogh"],["asfgdrtyh","asfgdyutr","asfgdeews","asfgdpotg"],["asfgdpluj","asfgdikjf","asfgdesgj","asfgdpfff"],["asfgdtrdb","asfgdiksf","asfgdsgkp","asfgdprty"],["asfgdpehl","asfgdstgb","asfgderll","asfgdpokf"],["asfgdpehg","asfgdstgf","asfgderlf","asfgdpogk"]],i=0;i<e.length;i++)for(var o=e[i].split(" ")[0],r=0;r<n.length;r++)-1!=n[r].indexOf(o)&&(a+=r);return Number(a)}}}},"49b7":function(t,e){},"56d7":function(t,e,a){"use strict";a.r(e);var n=a("3f46"),i=a.n(n),o=a("3f47"),r=a("997e"),c=a.n(r),s=(a("612f"),a("53da"),a("40f8"),a("6e6d")),d=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{attrs:{id:"app"}},[a("keep-alive",{attrs:{exclude:"newsDetail,pointchange,wallet,walletRetrieve,walletDetail,walletRecord,walletStatus,walletWithdraw,walletRecharge"}},[a("router-view",{staticClass:"router-view"})],1)],1)},u=[],l={name:"app"},f=l,h=a("17cc"),m=Object(h["a"])(f,d,u,!1,null,null,null),g=m.exports,p=a("7f43"),v=a.n(p),b=(a("3a23"),a("1e6f")),w=function(t){return a.e("chunk-8ce0ddd0").then(function(){var e=[a("9553")];t.apply(null,e)}.bind(this)).catch(a.oe)},y=function(t){return a.e("chunk-73b3e1a8").then(function(){var e=[a("2500")];t.apply(null,e)}.bind(this)).catch(a.oe)},_=function(t){return a.e("chunk-178fc040").then(function(){var e=[a("9055")];t.apply(null,e)}.bind(this)).catch(a.oe)},k=function(t){return a.e("chunk-50997173").then(function(){var e=[a("bd04")];t.apply(null,e)}.bind(this)).catch(a.oe)},C=function(t){return a.e("chunk-22e40ede").then(function(){var e=[a("2536")];t.apply(null,e)}.bind(this)).catch(a.oe)},S=function(t){return a.e("chunk-a99dec30").then(function(){var e=[a("832f")];t.apply(null,e)}.bind(this)).catch(a.oe)},P=function(t){return a.e("chunk-0ccaff37").then(function(){var e=[a("f825")];t.apply(null,e)}.bind(this)).catch(a.oe)},x=function(t){return a.e("chunk-23e7944a").then(function(){var e=[a("9c63")];t.apply(null,e)}.bind(this)).catch(a.oe)},D=function(t){return a.e("chunk-7ca9fe78").then(function(){var e=[a("c46d")];t.apply(null,e)}.bind(this)).catch(a.oe)},O=function(t){return a.e("chunk-f9d0f84e").then(function(){var e=[a("ca8b")];t.apply(null,e)}.bind(this)).catch(a.oe)},A=function(t){return a.e("chunk-158c3ed4").then(function(){var e=[a("4835")];t.apply(null,e)}.bind(this)).catch(a.oe)},j=function(t){return a.e("chunk-1c9625fe").then(function(){var e=[a("0224")];t.apply(null,e)}.bind(this)).catch(a.oe)},I=function(t){return a.e("chunk-3479b5a0").then(function(){var e=[a("9646")];t.apply(null,e)}.bind(this)).catch(a.oe)},L=function(t){return a.e("chunk-0528a41a").then(function(){var e=[a("ffc5")];t.apply(null,e)}.bind(this)).catch(a.oe)},T=function(t){return a.e("chunk-2d4f397c").then(function(){var e=[a("0696")];t.apply(null,e)}.bind(this)).catch(a.oe)},W=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-13b2a374")]).then(function(){var e=[a("7526")];t.apply(null,e)}.bind(this)).catch(a.oe)},z=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-111df22d")]).then(function(){var e=[a("e175")];t.apply(null,e)}.bind(this)).catch(a.oe)},U=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-15480d0d")]).then(function(){var e=[a("51d9")];t.apply(null,e)}.bind(this)).catch(a.oe)},E=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-0d688f2e")]).then(function(){var e=[a("f9f6")];t.apply(null,e)}.bind(this)).catch(a.oe)},F=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-0152a94c")]).then(function(){var e=[a("bdad")];t.apply(null,e)}.bind(this)).catch(a.oe)},R=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-5474cc08")]).then(function(){var e=[a("6a6c")];t.apply(null,e)}.bind(this)).catch(a.oe)},B=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-6be99e9a")]).then(function(){var e=[a("c96d")];t.apply(null,e)}.bind(this)).catch(a.oe)},M=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-34076066")]).then(function(){var e=[a("a34f")];t.apply(null,e)}.bind(this)).catch(a.oe)},V=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-5cf16964")]).then(function(){var e=[a("a619")];t.apply(null,e)}.bind(this)).catch(a.oe)},q=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-2f5da85a")]).then(function(){var e=[a("10b5")];t.apply(null,e)}.bind(this)).catch(a.oe)},N=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-8aab87ce")]).then(function(){var e=[a("2d18")];t.apply(null,e)}.bind(this)).catch(a.oe)},Y=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-4631de92")]).then(function(){var e=[a("4c69")];t.apply(null,e)}.bind(this)).catch(a.oe)},Z=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-3765c3c6")]).then(function(){var e=[a("a179")];t.apply(null,e)}.bind(this)).catch(a.oe)},G=function(t){return Promise.all([a.e("chunk-978da802"),a.e("chunk-41226dfb")]).then(function(){var e=[a("82d7")];t.apply(null,e)}.bind(this)).catch(a.oe)},H=function(t){return a.e("chunk-c308643c").then(function(){var e=[a("3fa7")];t.apply(null,e)}.bind(this)).catch(a.oe)},J=function(t){return a.e("chunk-0ea3b7e0").then(function(){var e=[a("c80a")];t.apply(null,e)}.bind(this)).catch(a.oe)};s["a"].use(b["a"]);var K=[{path:"/",component:w,meta:{title:"猎芯网"}},{path:"/smt",component:y,meta:{title:"SMT打样"}},{path:"/supplier",component:_,meta:{title:"猎芯网,猎芯网供应商,猎芯网合作伙伴,电子元器件采购,电子元器件商城,IC采购网"}},{path:"/wxlist",name:"Wxlist",component:k,meta:{title:"猎芯网"}},{path:"/news",name:"News",component:C,meta:{title:"猎芯网-新闻列表"}},{path:"/seo",name:"Seo",component:P,meta:{title:"猎芯网——京东战投元器件商城"}},{path:"/findthing",name:"Findthing",component:x,meta:{title:"猎芯网——快速找料"}},{path:"/pointmall",name:"Pointmall",component:D,meta:{title:"积分商城"}},{path:"/pointchange",name:"Pointchange",component:j,meta:{title:"兑换成功",back:!0}},{path:"/exchange",component:A,meta:{title:"兑换记录",back:!0}},{path:"/point",component:O,meta:{title:"积分明细",back:!0}},{path:"/pointrule",component:I,meta:{title:"积分规则"}},{path:"/chain",component:T,meta:{title:"猎芯供应链有限公司_专业IC电子元器件进口报关服务商"}},{path:"/news/detail/:art_id/:cat_id",name:"NewsDetail",component:S,meta:{title:"猎芯网-新闻详情"}},{path:"/aboutUs",name:"aboutUs",component:L,meta:{title:"关于我们"}},{path:"/wallet",component:W,meta:{title:"猎芯网-我的钱包"}},{path:"/wallet/status",component:z,meta:{title:"猎芯网-钱包状态"}},{path:"/wallet/activate",component:U,meta:{title:"猎芯网-激活钱包"}},{path:"/wallet/recharge",component:E,meta:{title:"猎芯网-钱包充值"}},{path:"/wallet/verify",component:F,meta:{title:"猎芯网-验证身份"}},{path:"/wallet/bind",component:R,meta:{title:"猎芯网-绑定银行账号"}},{path:"/wallet/withdraw",component:B,meta:{title:"猎芯网-钱包提现"}},{path:"/wallet/question",component:M,meta:{title:"猎芯网-常见问题"}},{path:"/wallet/walletdetail",component:V,meta:{title:"猎芯网-钱包明细"}},{path:"/wallet/accountdetail",component:q,meta:{title:"猎芯网-账单详情"}},{path:"/wallet/record",component:N,meta:{title:"猎芯网-充值提现记录"}},{path:"/wallet/withdrawdetail",component:Y,meta:{title:"猎芯网-充值提现详情"}},{path:"/wallet/retrieve",component:Z,meta:{title:"猎芯网-找回密码"}},{path:"/wallet/cashier",component:G,meta:{title:"猎芯网-收银台"}},{path:"/xianhuo",component:H,meta:{title:"猎芯自营"}},{path:"/lxshop",component:J,meta:{title:"猎芯联营"}},{path:"*",redirect:"/"}];K.forEach(function(t){t.path=t.path||"/"+(t.name||"")});var $=new b["a"]({routes:K,scrollBehavior:function(t,e,a){return{x:0,y:0}}}),Q=a("52c1"),X=a("a4c0"),tt=a("365c"),et=a("4260"),at=a("fed1");s["a"].use(X["r"]);var nt={walletInfoData:{},verifyShowImgCode:!1,verifyCountDownFlag:!1,activateShowImgCode:!1,activateCountDownFlag:!1,retieveShowImgCode:!1,retieveCountDownFlag:!1,passwordToken:"",walletListData:[],walletRecordData:[],bankPasswordToken:"",bankCountDownFlag:!1,bindBankKey:"",bindBankData:"",amountRechargeID:"",amountWithdrawID:"",rechargeWithdrawOrderDetail:[],orderInfoData:[],amountWithdrawFlag:!1},it={getWalletInfo:function(t,e){t.walletInfoData=e.data},sendSafesms:function(t,e){t.verifyShowImgCode=!e.verifyCountDownFlag,t.verifyCountDownFlag=e.verifyCountDownFlag},smsVerifyActivate:function(t,e){t.activateShowImgCode=!e.activateCountDownFlag,t.activateCountDownFlag=e.activateCountDownFlag},smsVerifyRetrieve:function(t,e){t.retieveShowImgCode=!e.retieveCountDownFlag,t.retieveCountDownFlag=e.retieveCountDownFlag},verifyResetsms:function(t,e){t.passwordToken=e.data},walletListLog:function(t,e){t.walletListData=e.data},walletRecordList:function(t,e){t.walletRecordData=e.data},verifySafeMobile:function(t,e){t.bankPasswordToken=e.data,et["a"].setCookie("bankPasswordToken",e.data,1)},getBindBankmsg:function(t,e){t.bankCountDownFlag=e.bankCountDownFlag,t.bindBankKey=e.data.access_key,t.bindBankData=e.data.access_data},walletRecharge:function(t,e){t.amountRechargeID=e.data},walletWithdraw:function(t,e){},rechargeWithdrawOrderIfo:function(t,e){t.rechargeWithdrawOrderDetail=e.data},payTodo:function(t,e){t.rechargeWithdrawOrderDetail=e.data},orderInfo:function(t,e){t.orderInfoData=e.data}},ot={getWalletInfo:function(t,e){var a=t.commit,n={};tt["b"].getWalletInfo(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code&&a({type:"getWalletInfo",data:e.data})}).catch(function(t){})},smsVerifyActivate:function(t,e){var a=t.commit;X["r"].loading({message:"处理中..."});var n={mobile:e.mobile,verify:e.imgCode,channel:3};tt["b"].smsVerify(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"smsVerifyActivate",activateCountDownFlag:!0})):23019==e.err_code||11008==e.err_code||11011==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"smsVerifyActivate",activateCountDownFlag:!1})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){X["r"].clear()})},activateWallet:function(t,e){t.commit;var a={intl_code:"",safe_mobile:e.mobile,verify_code:e.verifyCode,pay_password:e.password,reconfirm:e.passwordConfirm};tt["b"].activateWallet(at.stringify(a)).then(function(t){var a=t.data;0==a.err_code?(Object(X["r"])({message:a.err_msg,duration:2e3}),e.referer?setTimeout(function(){window.location.href=e.referer},2e3):setTimeout(function(){window.location.href="/h5/view/#/wallet"},2e3)):(Object(X["r"])({message:a.err_msg,duration:2e3}),setTimeout(function(){window.location.href="/h5/view/#/wallet/activate"},2e3))}).catch(function(t){})},sendSafesms:function(t,e){var a=t.commit;X["r"].loading({message:"处理中..."});var n={verify:e.imgCode,channel:3};tt["b"].sendSafesms(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"sendSafesms",verifyCountDownFlag:!0})):23019==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"sendSafesms",verifyCountDownFlag:!1})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){X["r"].clear()})},smsVerifyRetrieve:function(t,e){var a=t.commit;X["r"].loading({message:"处理中..."});var n={verify:e.imgCode,channel:3};tt["b"].sendSafesms(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"smsVerifyRetrieve",retieveCountDownFlag:!0})):23019==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"smsVerifyRetrieve",retieveCountDownFlag:!1})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){X["r"].clear()})},verifyResetsms:function(t,e){var a=t.commit,n={verify_code:e.verify_code};tt["b"].verifyResetsms(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"verifyResetsms",data:e.data})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},changeWalletpwd:function(t,e){t.commit;var a={token:e.token,pay_password:e.pay_password,reconfirm:e.reconfirm,mode:e.mode};tt["b"].changeWalletpwd(at.stringify(a)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),setTimeout(function(){window.location.href="/h5/view/#/wallet"},2e3)):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},walletListLog:function(t,e){var a=t.commit;X["r"].loading({message:"加载中..."});var n={log_type:e.log_type,stime:e.stime,etime:e.etime};tt["b"].walletListLog(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(a({type:"walletListLog",data:e.data.list}),X["r"].clear()):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){X["r"].clear()})},walletRecordList:function(t,e){var a=t.commit;X["r"].loading({message:"加载中..."});var n={wallet_type:e.wallet_type,stime:e.stime,etime:e.etime};tt["b"].walletRecordList(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(a({type:"walletRecordList",data:e.data.list}),X["r"].clear()):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){X["r"].clear()})},verifySafeMobile:function(t,e){var a=t.commit,n={verify_code:e.verify_code,pay_password:e.pay_password};tt["b"].verifySafeMobile(at.stringify(n)).then(function(t){var e=t.data;X["r"].loading({message:"处理中..."}),0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"verifySafeMobile",data:e.data}),setTimeout(function(){window.location.href="/h5/view/#/wallet/bind"},2e3)):11030==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),setTimeout(function(){window.location.href="/h5/view/#/"},2e3)):Object(X["r"])({message:e.err_msg,duration:2e3})}).catch(function(t){X["r"].clear()})},getBindBankmsg:function(t,e){var a=t.commit,n={bank_user:e.bank_user,bank_id:e.bank_id,bank_account:e.bank_account,id_type:e.id_type,id_number:e.id_number,account_type:e.account_type,mobile:e.mobile,channel:3};tt["b"].getBindBankmsg(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"getBindBankmsg",bankCountDownFlag:!0,data:e.data})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},bindBankCard:function(t,e){t.commit;X["r"].loading({message:"处理中..."});var a={token:e.token,wallet_bank_id:e.wallet_bank_id,sms_code:e.sms_code,access_key:e.access_key,access_data:e.access_data};tt["b"].bindBankCard(at.stringify(a)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),setTimeout(function(){window.location.href="/h5/view/#/wallet"},2e3)):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){X["r"].clear()})},walletRecharge:function(t,e){var a=t.commit,n={amount:e.amount};tt["b"].walletRecharge(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?a({type:"walletRecharge",data:e.data}):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},walletWithdraw:function(t,e){t.commit;var a={amount:e.amount,pay_password:e.pay_password};X["r"].loading({message:"处理中..."}),nt.amountWithdrawFlag=!0,tt["b"].walletWithdraw(at.stringify(a)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:"提现申请成功,预计1个工作日后到账,节假日顺延,请耐心等待",duration:2e3}),setTimeout(function(){nt.amountWithdrawFlag=!1,window.location.href="/h5/view/#/wallet/record"},2e3)):(Object(X["r"])({message:e.err_msg,duration:2e3}),setTimeout(function(){nt.amountWithdrawFlag=!1},2e3))}).catch(function(t){X["r"].clear()})},rechargeWithdrawOrderIfo:function(t,e){var a=t.commit,n={wallet_id:e.wallet_id};tt["b"].rechargeWithdrawOrderIfo(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),a({type:"rechargeWithdrawOrderIfo",data:e.data})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},payTodo:function(t,e){t.commit;var a={pay_code:e.pay_code,rescue:e.rescue,types:e.types,site_type:e.site_type,order_id:e.order_id};tt["b"].payTodo(at.stringify(a)).then(function(t){var e=t.data;0==e.err_code?is_miniProgram()?wx.requestPayment(e.data):window.location.href=e.data:Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},orderInfo:function(t,e){var a=t.commit,n={order_id:e.order_id};tt["b"].orderInfo(at.stringify(n)).then(function(t){var e=t.data;0==e.err_code?a({type:"orderInfo",data:e.data}):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){})},walletPayTodo:function(t,e){t.commit;var a={pay_code:e.pay_code,pay_password:e.pay_password,types:e.types,order_id:e.order_id,site_type:e.site_type};tt["b"].payTodo(at.stringify(a)).then(function(t){var a=t.data;0==a.err_code?setTimeout(function(){window.location.href="/v3/pay/success?order_id="+e.order_id+"&types="+(e.types||0)},2e3):Object(X["r"])({message:a.err_msg,duration:3e3})}).catch(function(t){})}},rt={},ct={state:nt,mutations:it,actions:ot,getters:rt};s["a"].use(X["r"]);var st={index:{},loading:!0},dt={index:function(t,e){t.index=e.data}},ut={index:function(t,e){var a=t.commit;st.loading=!0;var n=et["a"].getParams();tt["b"].index(n).then(function(t){var e=t.data;st.loading=!1,0==e.err_code?a({type:"index",data:e.data}):2==e.err_code&&Object(X["r"])({message:"非常抱歉,当前客户端时间与服务器时间不一致,请校准您的时间",duration:3e3})}).catch(function(t){st.loading=!1})}},lt={},ft={state:st,mutations:dt,actions:ut,getters:lt};s["a"].use(X["r"]);var ht={cartCount:"",loginCheck:!1,phpParams:{}},mt={cartCount:function(t,e){t.cartCount=0==e.data?"":e.data},loginCheck:function(t,e){0==e.data.err_code?t.loginCheck=!0:11030==e.data.err_code?t.loginCheck=!0:t.loginCheck=!1},phpParams:function(t,e){t.phpParams=e.data.data}},gt={cartCount:function(t,e){var a=t.commit;tt["b"].cartCount().then(function(t){var e=t.data;0==e.err_code&&a({type:"cartCount",data:e.datacartCount})}).catch(function(t){})},loginCheck:function(t,e){var a=t.commit;tt["b"].loginCheck().then(function(t){var n=t.data;e.is_jump?11010==n.err_code?window.location.href="/h5/view/":11030==n.err_code&&(window.location.href="/v3/login"):a({type:"loginCheck",data:n})}).catch(function(t){})},customsrService:function(t,e){t.commit;var a={pf:window.lxpf,searchModel:""};tt["b"].customsrService(a).then(function(t){}).catch(function(t){})},getCommonParams:function(t,e){var a=t.commit,n=et["a"].getParams();tt["b"].getCommonParams(n).then(function(t){var e=t.data;a({type:"phpParams",data:e})}).catch(function(t){})}},pt={},vt={state:ht,mutations:mt,actions:gt,getters:pt},bt=a("fed1");s["a"].use(X["r"]);var wt={loading:!1},yt={index:function(t,e){t.index=e.data}},_t={checkAccountExists:function(t,e){t.commit;wt.loading=!0;var a={pf:2,type:2,account:e.account};tt["b"].checkAccountExists(bt.stringify(a)).then(function(t){var e=t.data;wt.loading=!1,0!=e.err_code&&Object(X["r"])({message:"该手机号尚未注册,我们将为您自动生成猎芯网帐号",duration:3e3})}).catch(function(t){wt.loading=!1})},customSmsVerify:function(t,e){t.commit;wt.loading=!0;var a={pf:2,verify:"",mobile:e.mobile};tt["b"].customSmsVerify(bt.stringify(a)).then(function(t){var e=t.data;wt.loading=!1,0==e.err_code?Object(X["r"])({message:e.err_msg,duration:2e3}):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){wt.loading=!1})},chainFind:function(t,e){t.commit;if(wt.loading=!0,1==e.types)var a={type:2,mobile:e.mobile,linkName:e.linkName,verifyCode:e.verifyCode,com_name:e.com_name,main_brand:e.main_brand,supplier_type:e.supplier_type};else if(3==e.types)a={type:3,mobile:e.mobile,linkName:e.linkName,verifyCode:e.verifyCode};tt["b"].chainFind(bt.stringify(a)).then(function(t){var a=t.data;wt.loading=!1,1==a.errcode?Object(X["r"])({message:a.errmsg,duration:3e3}):2==a.errcode?(Object(X["r"])({message:"已为您自动创建的猎芯网登录账号为"+e.mobile+"请使用免密码登录",duration:3e3}),setTimeout(function(){window.location.reload()},3e3)):(Object(X["r"])({message:"您已经提交成功,我们将会在2个工作日内联系您",duration:3e3}),setTimeout(function(){window.location.reload()},3e3))}).catch(function(t){wt.loading=!1,Object(X["r"])({message:"网络出现问题,请重试",duration:3e3})})}},kt={},Ct={state:wt,mutations:yt,actions:_t,getters:kt},St=a("fed1");s["a"].use(X["r"]);var Pt={loadStatus:!1,wechatArticle:{},wechatArticleList:[],finished:!1,limits:1},xt={wechatArticle:function(t,e){t.wechatArticle=e.data,t.wechatArticleList=t.wechatArticleList.concat(e.data.list),t.limits=Math.ceil(e.data.total/6),e.page>=t.limits&&(t.finished=!0)}},Dt={wechatArticle:function(t,e){var a=t.commit;Pt.loadStatus=!0;var n={type_id:e.type_id,page:e.page,limit:e.limit};tt["b"].wechatArticle(St.stringify(n)).then(function(t){var n=t.data;Pt.loadStatus=!1,0==n.err_code&&a({type:"wechatArticle",data:n.data,page:e.page,limit:e.limit})}).catch(function(t){Pt.loadStatus=!1})}},Ot={},At={state:Pt,mutations:xt,actions:Dt,getters:Ot},jt=(a("b06f"),a("fed1"));s["a"].use(X["r"]);var It={finished:!1,loadStatus:!1,cat_list:[],content_list:[],rollbanner:[],p:1,limit:10,totalLimit:0},Lt={newsArticle:function(t,e){t.rollbanner=e.data.rollbanner,t.cat_list=e.data.cat_list,1==t.p?t.content_list=e.data.content_list:t.content_list=t.content_list.concat(e.data.content_list),t.totalLimit=Math.ceil(Number(e.data.tatol_num)/t.limit),t.p>=t.totalLimit?t.finished=!0:t.finished=!1}},Tt={newsArticle:function(t,e){var a=t.commit;It.loadStatus=!0;var n={cat_id:e.cat_id,p:e.p,limit:e.limit};It.p=e.p,It.limit=e.limit,tt["b"].newsArticle(jt.stringify(n)).then(function(t){var e=t.data;It.loadStatus=!1,0==e.err_code&&a({type:"newsArticle",data:e.data})}).catch(function(t){It.loadStatus=!1})}},Wt={},zt={state:It,mutations:Lt,actions:Tt,getters:Wt},Ut=a("fed1");s["a"].use(X["r"]);var Et={loadStatus:!1,newsDetailObj:{},newsDetailAd:{}},Ft={newsArticleDetail:function(t,e){t.newsDetailObj=e.data},newsArticleDetailAd:function(t,e){t.newsDetailAd=e.data,et["a"].getCookie("newsdetailpop")?t.newsDetailAd.h5_news_ad_pop="":et["a"].setCookie("newsdetailpop","1",1)}},Rt={newsArticleDetail:function(t,e){var a=t.commit;Et.newsDetailObj={},Et.loadStatus=!0;var n={art_id:e.art_id};tt["b"].newsArticleDetail(Ut.stringify(n)).then(function(t){Et.loadStatus=!1;var e=t.data;0==e.err_code&&a({type:"newsArticleDetail",data:e.data})}).catch(function(t){Et.loadStatus=!1})},newsArticleDetailAd:function(t,e){var a=t.commit,n={cat_id:e.cat_id},i=et["a"].getParams(n);tt["b"].newsArticleDetailAd(i).then(function(t){var e=t.data;0==e.err_code&&a({type:"newsArticleDetailAd",data:e.data})}).catch(function(t){})}},Bt={},Mt={state:Et,mutations:Ft,actions:Rt,getters:Bt},Vt=a("fed1");s["a"].use(X["r"]);var qt={loading:!1,form1ImgShow:!1,form2ImgShow:!1,form1CodeStatus:!1,form2CodeStatus:!1,isRegLogin:!1},Nt={smsVerify:function(t,e){}},Yt={smsVerify:function(t,e){var a=t.commit;qt.form1CodeStatus=!1,qt.loading=!0;var n={mobile:e.mobile,verify:e.verify,channel:1};tt["b"].smsVerify(Vt.stringify(n)).then(function(t){var n=t.data;qt.loading=!1;var i="form2"==e.types?"form2":"form1";qt[i+"ImgShow"]=!1,0==n.err_code?(Object(X["r"])({message:n.err_msg,duration:2e3}),qt[i+"CodeStatus"]=!0,a({type:"smsVerify",data:n.data})):23019==n.err_code||11008==n.err_code||11011==n.err_code?(Object(X["r"])({message:n.err_msg,duration:2e3}),qt[i+"ImgShow"]=!0):Object(X["r"])({message:n.err_msg,duration:3e3})}).catch(function(t){qt.loading=!1})},actionLogin:function(t,e){var a=t.commit;qt.loading=!0,qt.isRegLogin=!1;var n={account:e.account,sms_verify:e.sms_verify};tt["b"].actionLogin(Vt.stringify(n)).then(function(t){var n=t.data;if(qt.loading=!1,0==n.err_code){if("form1"==e.form_name)return Object(X["r"])({message:"提交成功",duration:2e3}),void setTimeout(function(){window.location.href="/"},2e3);qt.isRegLogin=!0,a({type:"actionLogin",data:n.data})}else Object(X["r"])({message:n.err_msg,duration:3e3})}).catch(function(t){qt.loading=!1})},feedback:function(t,e){var a=t.commit;qt.loading=!0;var n={type:e.types,content:e.content,mobile:e.mobile,source:window.location.href};tt["b"].feedback(Vt.stringify(n)).then(function(t){var e=t.data;qt.loading=!1,0==e.err_code?(Object(X["r"])({message:"需求已提交成功,客服人员会尽快与您联系",duration:3e3}),setTimeout(function(){window.location.href="/"},3e3),a({type:"feedback",data:e.data})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){qt.loading=!1})}},Zt={},Gt={state:qt,mutations:Nt,actions:Yt,getters:Zt},Ht=a("fed1");s["a"].use(X["r"]);var Jt={loading:!1,form1ImgShow:!1,form1CodeStatus:!1,isRegLogin:!1},Kt={},$t={smsVerify1:function(t,e){var a=t.commit;Jt.form1CodeStatus=!1,Jt.loading=!0;var n={mobile:e.mobile,verify:e.verify,channel:1};tt["b"].smsVerify(Ht.stringify(n)).then(function(t){var e=t.data;Jt.loading=!1,Jt["form1ImgShow"]=!1,0==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),Jt["form1CodeStatus"]=!0,a({type:"smsVerify",data:e.data})):23019==e.err_code||11008==e.err_code||11011==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),Jt["form1ImgShow"]=!0):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){Jt.loading=!1})},actionLogin1:function(t,e){var a=t.commit;Jt.loading=!0,Jt.isRegLogin=!1;var n={account:e.account,sms_verify:e.sms_verify};tt["b"].actionLogin(Ht.stringify(n)).then(function(t){var e=t.data;Jt.loading=!1,0==e.err_code?(Jt.isRegLogin=!0,a({type:"actionLogin",data:e.data})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){Jt.loading=!1})},feedback1:function(t,e){var a=t.commit;Jt.loading=!0;var n={type:e.types,content:e.content,mobile:e.mobile,source:window.location.href};tt["b"].feedback(Ht.stringify(n)).then(function(t){var e=t.data;Jt.loading=!1,0==e.err_code?(Object(X["r"])({message:"需求已提交成功,客服人员会尽快与您联系",duration:3e3}),setTimeout(function(){window.location.href="/"},3e3),a({type:"feedback",data:e.data})):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){Jt.loading=!1})}},Qt={},Xt={state:Jt,mutations:Kt,actions:$t,getters:Qt},te=(a("ab56"),a("f91a"),a("fed1"));s["a"].use(X["r"]);var ee={loginUrl:"/v3/login?referer="+encodeURIComponent(window.location.href),userInfo:"",loading:!1,getUserCurrentPoint:0,isSignInToday:!1,isSignInTodayStateGo:!1,checkInfoState:!1,navlist:[],listdata:[]},ae={getPointPrize:function(t,e){var a=e.data||[];if(a.length>0){for(var n=[],i=[],o=[],r=[],c=0;c<a.length;c++)n.push(a[c]["prize_type"]),r.push(a[c]["prize_sort"]),i.push(a[c]["prize_type_text"].replace(/\s/g,""));n=et["a"].distinct(n),i=et["a"].distinct(i),r=et["a"].distinct(r);for(var s=0;s<n.length;s++)o.push({prise_type:n[s],prise_type_text:i[s],prize_sort:r[s]});o=o.sort(et["a"].compare("prise_type",1)),t.navlist=o,t.listdata=a}}},ne={getPointPrize:function(t,e){var a=t.commit;ee.loading=!0;var n={limit:1e3};tt["b"].getPointPrize(te.stringify(n)).then(function(t){ee.loading=!1;var e=t.data;0==e.errcode&&a({type:"getPointPrize",data:e.data.data})}).catch(function(t){ee.loading=!1})},loginCheckp:function(t,e){t.commit;tt["b"].loginCheck().then(function(t){var e=t.data;0!=e.err_code&&11030!=e.err_code||(ee.userInfo=e.data)})},getUserCurrentPoint:function(t,e){t.commit;var a={user_id:et["a"].getCookie("Yo4teW_uid")};tt["b"].getUserCurrentPoint(te.stringify(a)).then(function(t){var e=t.data;0==e.errcode&&(ee.getUserCurrentPoint=e.data)})},isSignInToday:function(t,e){t.commit;tt["b"].isSignInToday().then(function(t){var e=t.data;0==e.err_code&&(ee.isSignInToday=e.data)})},signIn:function(t,e){t.commit;ee.loading=!0,tt["b"].signIn().then(function(t){ee.loading=!1;var e=t.data;0==e.err_code&&(ee.isSignInToday=!0,ee.isSignInTodayStateGo=!0,Object(X["r"])({message:"签到完成,恭喜您获得100个积分!",duration:3e3}))}).catch(function(t){ee.loading=!1})},checkMktScore:function(t,e){t.commit;ee.loading=!0,tt["b"].checkMktScore().then(function(t){ee.loading=!1;var e=t.data;0==e.err_code&&(1==e.data?ee.checkInfoState=!0:ee.checkInfoState=!1)}).catch(function(t){ee.loading=!1})},exchangePrize:function(t,e){t.commit;ee.loading=!0;var a={user_id:et["a"].getCookie("Yo4teW_uid"),point_prize_id:e.point_prize_id};tt["b"].exchangePrize(te.stringify(a)).then(function(t){ee.loading=!1;var e=t.data;if(0==e.errcode){var a=e.data.point_exchange_id;window.location.href="/h5/view/#/pointchange?point_exchange_id="+a+"&prize_type="+e.data.prize_type}else Object(X["r"])({message:e.errmsg,duration:2500})}).catch(function(t){ee.loading=!1})}},ie={},oe={state:ee,mutations:ae,actions:ne,getters:ie},re=a("fed1");s["a"].use(X["r"]);var ce={loading:!1,prize_info:"",prize_types:"",address_id:"",address_info:"",adressApiState:!1},se={},de={getUserPointExchangeDetail:function(t,e){t.commit;ce.loading=!0;var a={point_exchange_id:e.point_exchange_id};tt["b"].getUserPointExchangeDetail(re.stringify(a)).then(function(t){ce.loading=!1;var e=t.data;0==e.errcode&&(ce.prize_info=e.data.prize_info,ce.prize_types=e.data.prize_info.prize_type,e.data.address_info?(ce.address_info=e.data.address_info,ce.address_info.point_addressp=1,ce.address_id=e.data.prize_info.address_id):ce.adressApiState=!0)}).catch(function(t){ce.loading=!1})},recvlist:function(t,e){t.commit;tt["b"].recvlist().then(function(t){var e=t.data;if(0==e.err_code){var a=e.data||[];if(a.length>0)for(var n=0;n<a.length;n++)1==a[n].is_default&&(ce.address_info=a[n],ce.address_id=a[n].address_id)}})}},ue={},le={state:ce,mutations:se,actions:de,getters:ue};s["a"].use(X["r"]);var fe={loading:!1,ruledata:""},he={},me={pointruleApi:function(t,e){t.commit;fe.loading=!0,tt["b"].pointruleApi().then(function(t){fe.loading=!1;var e=t.data;0==e.err_code&&(fe.ruledata=e.data.data[0])}).catch(function(t){fe.loading=!1})}},ge={},pe={state:fe,mutations:he,actions:me,getters:ge},ve=a("fed1");s["a"].use(X["r"]);var be={finished:!1,loadStatus:!1,getUserCurrentPoint:0,detaillist:[],totalLimit:0},we={getUserPointDetail:function(t,e){1==e.data.current_page?t.detaillist=e.data.data:t.detaillist=t.detaillist.concat(e.data.data),t.totalLimit=e.data.last_page,e.data.current_page>=e.data.last_page?t.finished=!0:t.finished=!1}},ye={getUserPointDetail:function(t,e){var a=t.commit;be.loadStatus=!0;var n={page:e.page,limit:e.limit,user_id:et["a"].getCookie("Yo4teW_uid"),flow_type:e.flow_type};1==e.page&&(be.finished=!1,be.detaillist=[]),tt["b"].getUserPointDetail(ve.stringify(n)).then(function(t){var e=t.data;be.loadStatus=!1,0==e.errcode&&a({type:"getUserPointDetail",data:e.data})}).catch(function(t){be.loadStatus=!1})},getUserCurrentPointdetail:function(t,e){t.commit;var a={user_id:et["a"].getCookie("Yo4teW_uid")};tt["b"].getUserCurrentPoint(ve.stringify(a)).then(function(t){var e=t.data;0==e.errcode&&(be.getUserCurrentPoint=e.data)})}},_e={},ke={state:be,mutations:we,actions:ye,getters:_e},Ce=a("fed1");s["a"].use(X["r"]);var Se={finished:!1,loadStatus:!1,getUserCurrentPoint:0,detaillist:[],totalLimit:0},Pe={getUserPointExchangeList:function(t,e){1==e.data.current_page?t.detaillist=e.data.data:t.detaillist=t.detaillist.concat(e.data.data),t.totalLimit=e.data.last_page,e.data.current_page>=e.data.last_page?t.finished=!0:t.finished=!1}},xe={getUserPointExchangeList:function(t,e){var a=t.commit;Se.loadStatus=!0;var n={page:e.page,limit:e.limit,user_id:et["a"].getCookie("Yo4teW_uid"),prize_type:e.prize_type};1==e.page&&(Se.finished=!1,Se.detaillist=[]),tt["b"].getUserPointExchangeList(Ce.stringify(n)).then(function(t){var e=t.data;Se.loadStatus=!1,0==e.errcode&&a({type:"getUserPointExchangeList",data:e.data})}).catch(function(t){Se.loadStatus=!1})}},De={},Oe={state:Se,mutations:Pe,actions:xe,getters:De};a("fed1");s["a"].use(X["r"]);var Ae={loading:!1,aboutdata:""},je={getAboutUsData:function(){var t=X["r"].loading({message:"加载中...",duration:0});tt["b"].getAboutUsData().then(function(e){t.clear();var a=e.data;0==a.err_code&&(Ae.aboutdata=a.data.data[0])}).catch(function(e){t.clear()})}},Ie={state:Ae,actions:je};s["a"].use(X["r"]);var Le=a("fed1"),Te={loading:!1,formCodeStatus:!1,formImgShow:!1},We={},ze={chainSmsVerify:function(t,e){t.commit;Te.loading=!0,Te.formCodeStatus=!1;var a={verify:e.verify,mobile:e.mobile};tt["b"].smsVerify(Le.stringify(a)).then(function(t){Te.loading=!1,Te.formImgShow=!1;var e=t.data;0==e.err_code?(Te.formCodeStatus=!0,Object(X["r"])({message:e.err_msg,duration:2e3})):23019==e.err_code||11008==e.err_code||11011==e.err_code?(Object(X["r"])({message:e.err_msg,duration:2e3}),Te["formImgShow"]=!0):Object(X["r"])({message:e.err_msg,duration:3e3})}).catch(function(t){Te.loading=!1})},chainFindBg:function(t,e){t.commit;Te.loading=!0;var a={need:e.need,mobile:e.mobile,linkName:e.linkName,verifyCode:e.verifyCode};tt["b"].chainFind(Le.stringify(a)).then(function(t){Te.loading=!1;var e=t.data;1==e.errcode?Object(X["r"])({message:e.errmsg,duration:2e3}):(e.errcode,Object(X["r"])({message:"您的需求已经提交成功!我们将会在30分钟内联系您!",duration:3e3}),setTimeout(function(){history.go(0)},2500))}).catch(function(t){Te.loading=!1})}},Ue={},Ee={state:Te,mutations:We,actions:ze,getters:Ue},Fe=a("fed1");s["a"].use(X["r"]);var Re={zyFilter:!1,zyClass:!1,zyRank:!1,classData:[],classLight:{},zyFilterData:{}},Be={xianhuo:function(t,e){"filter"==e.type?(t.zyFilter=e.bool,t.zyFilterData=e.data):"rank"==e.type?t.zyRank=e.bool:"class"==e.type?(t.zyClass=e.bool,t.classData=e.data):"class_light"==e.type&&(t.classLight=e.data)}},Me={getZyData:function(t,e){var a=t.commit;tt["b"].getZyData(Fe.stringify(e.data)).then(function(t){var e=t.data;0==e.error_code&&(e.data.aggs&&a("xianhuo",{type:"filter",bool:!0,data:e.data.aggs}),e.data.class&&a("xianhuo",{type:"class",bool:!0,data:e.data.class}),e.data.class_light&&a("xianhuo",{type:"class_light",data:e.data.class_light}),0!==e.data.total&&a("xianhuo",{type:"rank",bool:!0,data:e.data.aggs}))}).catch(function(t){})}},Ve={state:Re,actions:Me,mutations:Be},qe=a("49b7"),Ne=a.n(qe);s["a"].use(Q["a"]);var Ye=new Q["a"].Store({modules:{wallet:ct,home:ft,common:vt,smt:Ct,wxlist:At,news:zt,newsdetail:Mt,seo:Gt,findthing:Xt,pointmall:oe,pointchange:le,pointrule:pe,pointdetail:ke,exchange:Oe,aboutus:Ie,chain:Ee,xianhuo:Ve,lxshop:Ne.a}}),Ze=function(t,e){var a=t;return-1==a.indexOf("ptag")&&(a=a.indexOf("?")>-1?a+"&ptag="+e:a+"?ptag="+e),a},Ge=function(t){return encodeURIComponent(t)},He=function(t){return t.indexOf("?")>-1?t+"&ptag=index-dynamic":t+"?ptag=index-dynamic"},Je=function(t,e){var a=new Date(1e3*t);function n(t){return t<10&&(t="0"+t),t}var i=a.getFullYear(),o=a.getMonth()+1,r=a.getDate(),c=a.getHours(),s=a.getMinutes(),d=a.getSeconds();return i+"-"+n(o)+"-"+n(r)+" "+n(c)+":"+n(s)+":"+n(d)},Ke={dateTimeFormate:Je,urlParams:He,urlPatg:Ze,urlEncode:Ge},$e={bind:function(t,e){t.addEventListener("click",function(){var t=document.querySelector(".container-wrap").scrollTop,e=(t/100).toFixed(0),a=setInterval(function(){t-=e,t<=0&&(t=0,clearInterval(a)),document.querySelector(".container-wrap").scrollTop=t},1)},!1)}},Qe={bind:function(t,e){t.addEventListener("click",function(t){var e=document.documentElement.scrollTop||document.body.scrollTop,a=(e/100).toFixed(0),n=setInterval(function(){e-=a,e<=0&&(e=0,clearInterval(n)),document.documentElement.scrollTop?document.documentElement.scrollTop=e:document.body.scrollTop?document.body.scrollTop=e:document.querySelector("html,body").scrollTop=e},1)},!1)}},Xe={bind:function(t,e){var a=tt["a"]+"public/verify?"+(new Date).getTime();t.setAttribute("src",a),t.addEventListener("click",function(){var e=tt["a"]+"public/verify?"+(new Date).getTime();t.setAttribute("src",e)},!1)}},ta={install:function(t){t.directive("backTop",$e),t.directive("backTopWindow",Qe),t.directive("imgCode",Xe)}},ea=a("897d"),aa=a.n(ea),na=a("5482"),ia=a.n(na);a("39b3"),a("bfd9");s["a"].config.productionTip=!1;var oa="production";if("production"!=oa)new ia.a;c()(Ke).forEach(function(t){return s["a"].filter(t,Ke[t])}),s["a"].use(ta);var ra=et["a"].getCookie("Yo4teW_csrf")||"";s["a"].prototype.$http=v.a,v.a.defaults.headers.post["Content-Type"]="application/x-www-form-urlencoded",v.a.defaults.withCredentials=!0,v.a.interceptors.request.use(function(t){if("post"==t.method)t.data?-1==t.data.indexOf("&pf=2")&&(t.data+="&pf="+window.lxpf+"&csrf="+ra):t.data="pf="+window.lxpf+"&csrf="+ra;else if("get"==t.method){var e=c()(t.params);e.length?-1==e.indexOf("pf")&&(t.params=Object(o["a"])({pf:window.lxpf,csrf:ra},t.params)):t.params={pf:window.lxpf,csrf:ra}}return t},function(t){return i.a.reject(t)});var ca=et["a"].getCookie("Yo4teW_gid"),sa=(new Date).getTime()+Math.random();if(null==ca){var da=aa()(sa);et["a"].setCookie("Yo4teW_gid",da,1,window.cookieHostname)}var ua={urlhash:window.location.hash};ua=et["a"].getParams(ua),tt["b"].wxaccess(ua).then(function(t){var e=t.data;0==e.err_code&&e.data&&(window.location.href=e.data)}),$.beforeEach(function(t,e,a){var n=t.meta&&t.meta.title;n&&(document.title=n);var i=t.meta.back||"";if(i){var o=!!et["a"].isLogin();o?a():window.location.href="/v3/login?referer="+encodeURIComponent(window.location.href)}else a()}),new s["a"]({router:$,store:Ye,render:function(t){return t(g)}}).$mount("#app")},bfd9:function(t,e,a){}});
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-c308643c"],{"3b79":function(t,a,i){"use strict";var s=i("673c"),n=i.n(s);n.a},"3fa7":function(t,a,i){"use strict";i.r(a);var s=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("div",[i("Header",{attrs:{inputShow:!0,meaushow:!0},on:{toSearch:t.toSearch}}),i("div",{staticClass:"xianhuo"},[i("div",{staticClass:"search-cont"},[i("div",{staticClass:"search-list"},[i("div",{staticClass:"self-ichunt"},[i("div",{staticClass:"search-sift"},[i("div",{directives:[{name:"show",rawName:"v-show",value:t.zyRank,expression:"zyRank"}],staticClass:"title-cut"},[t._m(0),i("ul",{staticClass:"total-rank"},[i("li",{class:{act:0==t.zyRankInit},on:{click:function(a){return t.changezyRankInit(0)}}},[t._v("综合")]),i("li",{class:{act:1==t.zyRankInit||2==t.zyRankInit},on:{click:function(a){return t.changezyRankInit("kc")}}},[t._v("\n 库存\n "),i("span",[i("i",{class:{"icon-top":!0,bright:1==t.zyRankInit}}),i("i",{class:{"icon-bot":!0,bright:2==t.zyRankInit}})])]),i("li",{class:{act:3==t.zyRankInit||4==t.zyRankInit},on:{click:function(a){return t.changezyRankInit("jg")}}},[t._v("\n 价格\n "),i("span",[i("i",{class:{"icon-top":!0,bright:3==t.zyRankInit}}),i("i",{class:{"icon-bot":!0,bright:4==t.zyRankInit}})])])])]),i("div",{directives:[{name:"show",rawName:"v-show",value:t.zyFilter||t.zyClass,expression:"zyFilter||zyClass"}],staticClass:"sift-box"},[i("dl",{class:{p_act:0==t.zyFilterInit}},[i("dt",{on:{click:function(a){return t.changeZyFilterInit(0)}}},[t._v(t._s(t.classFilter))]),i("dd",{style:{display:0==t.zyFilterInit?"block":"none"}},[i("ul",[i("ul",{staticClass:"classify_left"},[t.classData.length?t._l(t.classData,function(a,s){return i("li",{class:{check:a.flag||t.firstCheckId==a.class_id1},on:{click:function(i){return t.getClassSecond(a)}}},[i("span",[t._v(t._s(a.class_id1_name+"("+a.class_id1_num+")"))])])}):t._e()],2),i("div",{staticClass:"classify_right_box"},[i("ul",{staticClass:"classify_right"},[t.secondClass?t._l(t.secondClass,function(a,s){return i("li",{class:{check:a.flag},on:{click:function(i){return t.getSecondData(a)}}},[i("span",[t._v(t._s(a.class_id2_name+"("+a.class_id2_num+")"))])])}):t._e()],2)])]),i("div",{staticClass:"button"},[i("a",{staticClass:"cancel",on:{click:t.resetClass}},[t._v("重置")]),i("a",{staticClass:"confirm",on:{click:function(a){return t.addPostData("class")}}},[t._v("确定")])])])]),i("dl",{class:{p_act:1==t.zyFilterInit}},[i("dt",{on:{click:function(a){return t.changeZyFilterInit(1)}}},[t._v(t._s(t.brand))]),i("dd",{style:{display:1==t.zyFilterInit?"block":"none"}},[i("ul",[t.zyFilterData.brand_id?t._l(t.zyFilterData.brand_id.list,function(a,s){return i("li",{class:{check:a.check},on:{click:function(a){return t.addFilterData(s,"brand_id")}}},[i("span",[t._v(t._s(a.name+"("+a.num+")"))])])}):t._e()],2),i("div",{staticClass:"button"},[i("a",{staticClass:"cancel",on:{click:function(a){return t.reset("brand")}}},[t._v("重置")]),i("a",{staticClass:"confirm",on:{click:function(a){return t.addPostData("brand")}}},[t._v("确定")])])])]),i("dl",{class:{p_act:2==t.zyFilterInit}},[i("dt",{on:{click:function(a){return t.changeZyFilterInit(2)}}},[t._v(t._s(t.encap))]),i("dd",{style:{display:2==t.zyFilterInit?"block":"none"}},[i("ul",[t.zyFilterData.encap?t._l(t.zyFilterData.encap.list,function(a,s){return i("li",{class:{check:a.check},on:{click:function(a){return t.addFilterData(s,"encap")}}},[i("span",[t._v(t._s(a.name+"("+a.num+")"))])])}):t._e()],2),i("div",{staticClass:"button"},[i("a",{staticClass:"cancel",on:{click:function(a){return t.reset("encap")}}},[t._v("重置")]),i("a",{staticClass:"confirm",on:{click:function(a){return t.addPostData("encap")}}},[t._v("确定")])])])]),i("dl",{class:{p_act:3==t.zyFilterInit}},[i("dt",{on:{click:function(a){return t.changeZyFilterInit(3)}}},[t._v(t._s(t.packing))]),i("dd",{style:{display:3==t.zyFilterInit?"block":"none"}},[i("ul",[t.zyFilterData.packing?t._l(t.zyFilterData.packing.list,function(a,s){return i("li",{class:{check:a.check},on:{click:function(a){return t.addFilterData(s,"packing")}}},[i("span",[t._v(t._s(a.name+"("+a.num+")"))])])}):t._e()],2),i("div",{staticClass:"button"},[i("a",{staticClass:"cancel",on:{click:function(a){return t.reset("packing")}}},[t._v("重置")]),i("a",{staticClass:"confirm",on:{click:function(a){return t.addPostData("packing")}}},[t._v("确定")])])])])])])])])])])],1)},n=[function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("p",{staticClass:"fr xuan"},[i("span",{staticClass:"font"},[t._v("筛选")]),i("i",{staticClass:"icon iconfont icon-shaixuan"})])}],c=i("3f47"),e=i("57af"),l=i("a4c0"),r=i("52c1"),o={name:"xianhuo",components:{Header:e["a"],"van-icon":l["f"]},data:function(){return{zyFilterInit:-1,zyRankInit:0,classFilter:"分类筛选",brand:"制造商",encap:"封装规格",packing:"包装筛选",classStr:161,brandStr:"",encapStr:"",packingStr:"",secondClass:[],addClassStr:161,firstCheckId:""}},created:function(){this.getZyData()},computed:Object(c["a"])({},Object(r["b"])({zyFilter:function(t){return t.xianhuo.zyFilter},zyClass:function(t){return t.xianhuo.zyClass},zyRank:function(t){return t.xianhuo.zyRank},classData:function(t){return t.xianhuo.classData},classLight:function(t){return t.xianhuo.classLight},zyFilterData:function(t){return t.xianhuo.zyFilterData}})),watch:{zyRankInit:function(t){this.getZyData()},classLight:function(t){this.secondClass=t.class_id2_list,this.firstCheckId=t.class_id1}},methods:{toSearch:function(){},getClassSecond:function(t){this.firstCheckId="",this.classStr=t.class_id1;for(var a=0;a<this.classData.length;a++)this.classData[a].class_id1==t.class_id1?(this.classData[a].flag=!0,this.secondClass=this.classData[a].class_id2_list,this.getSecondData("")):this.classData[a].flag=!1},getSecondData:function(t){this.classStr=t.class_id2;for(var a=0;a<this.secondClass.length;a++)this.secondClass[a].class_id2==t.class_id2?this.secondClass[a].flag=!0:this.secondClass[a].flag=!1},getZyData:function(){var t={p:1,offset:10};this.addClassStr&&(t["class_id/condition"]=this.addClassStr),this.brandStr&&(t["brand_id/condition"]=this.brandStr),this.encapStr&&(t["encap/condition"]=this.encapStr),this.packingStr&&(t["packing/condition"]=this.packingStr),0==this.zyRankInit?t["com_rank"]=1:1==this.zyRankInit?t["stock_rank"]=2:2==this.zyRankInit?t["stock_rank"]=1:3==this.zyRankInit?t["single_rank"]=1:4==this.zyRankInit&&(t["single_rank"]=2),this.$store.dispatch({type:"getZyData",data:t})},changezyRankInit:function(t){"kc"==t?1==this.zyRankInit?this.zyRankInit=2:this.zyRankInit=1:"jg"==t?3==this.zyRankInit?this.zyRankInit=4:this.zyRankInit=3:this.zyRankInit=t},changeZyFilterInit:function(t){this.zyFilterInit==t?this.zyFilterInit=-1:this.zyFilterInit=t},addFilterData:function(t,a){this.zyFilterData[a].list[t].check?(!1,this.$set(this.zyFilterData[a].list[t],"check",!1)):(!0,this.$set(this.zyFilterData[a].list[t],"check",!0))},resetClass:function(){this.classStr="",this.addClassStr="";for(var t=0;t<this.classData.length;t++)this.classData[t].flag&&(this.classData[t].flag=!1);for(var a=0;a<this.secondClass.length;a++)this.secondClass[a].flag&&(this.secondClass[a].flag=!1)},reset:function(t){for(var a=0;a<this.zyFilterData[t].list.length;a++)this.$set(this.zyFilterData[t].list[a],"check",!1);"brand"==t?this.brandStr="":"encap"==t?this.encapStr="":"packing"==t&&(this.packingStr="")},addPostData:function(t){if(this.zyFilterInit=-1,"class"==t)this.addClassStr=this.classStr;else if("brand"==t){this.brandStr="";for(var a=0;a<this.zyFilterData["brand_id"].list.length;a++)this.zyFilterData["brand_id"].list[a].check&&(this.brandStr+=this.zyFilterData["brand_id"].list[a].id+",");this.brandStr=this.brandStr.slice(0,-1)}else if("encap"==t){this.encapStr="";for(var i=0;i<this.zyFilterData["encap"].list.length;i++)this.zyFilterData["encap"].list[i].check&&(this.encapStr+=this.zyFilterData["encap"].list[i].id+",");this.encapStr=this.encapStr.slice(0,-1)}else if("packing"==t){this.packingStr="";for(var s=0;s<this.zyFilterData["packing"].list.length;s++)this.zyFilterData["packing"].list[s].check&&(this.packingStr+=this.zyFilterData["packing"].list[s].id+",");this.packingStr=this.packingStr.slice(0,-1)}this.getZyData()}}},h=o,u=(i("cb25"),i("17cc")),d=Object(u["a"])(h,s,n,!1,null,null,null);a["default"]=d.exports},4607:function(t,a,i){},"47d3":function(t,a,i){},"57af":function(t,a,i){"use strict";var s=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("section",{staticClass:"head-dom"},[i("div",{staticClass:"header-page clr"},[i("i",{staticClass:"icon iconfont icon-xiangzuo fl",on:{click:t.historyback}}),t.inputShow?i("div",{staticClass:"search"},[i("van-icon",{attrs:{name:"search",size:"18px",color:"#666"}}),i("van-field",{attrs:{placeholder:"请输入元器件型号、参数,查找全站库存数据"},on:{focus:t.toSearch}})],1):i("h3",{staticClass:"title fl"},[t._v(t._s(t.title))]),t.meaushow?i("Menu",{attrs:{color:t.color}}):t._e()],1)])},n=[],c=i("7272"),e=i("a4c0"),l={name:"header-page",props:{color:{type:String,default:""},inputShow:{type:Boolean,default:!1},title:{type:String,default:"猎芯网"},meaushow:{type:Boolean,default:!1}},data:function(){return{}},mounted:function(){},methods:{historyback:function(){history.go(-1)},toSearch:function(){this.$emit("toSearch")}},components:{"van-field":e["e"],"van-icon":e["f"],Menu:c["a"]}},r=l,o=(i("c4ad"),i("17cc")),h=Object(o["a"])(r,s,n,!1,null,"87442ebc",null);a["a"]=h.exports},"673c":function(t,a,i){},7272:function(t,a,i){"use strict";var s=function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("div",[t.flag?i("div",{staticClass:"menu-fade",on:{click:function(a){t.flag=!1}}}):t._e(),i("div",{staticClass:"menu clr"},[i("b",{staticClass:"iconfont icon-liedanbiao fr",style:{color:t.color},on:{click:function(a){t.flag=!t.flag}}}),t.flag?i("div",[i("i",{staticClass:"popover-arrow"}),t._m(0)]):t._e()])])},n=[function(){var t=this,a=t.$createElement,i=t._self._c||a;return i("ul",{staticClass:"menu-view"},[i("li",[i("a",{attrs:{href:"/v3?ptag=selfshop-topnav"}},[i("i",{staticClass:"icon iconfont icon-shouye"}),t._v("首页")])]),i("li",[i("a",{attrs:{href:"/v3/lxshop?ptag=selfshop-topnav"}},[i("i",{staticClass:"icon iconfont icon-lianying"}),t._v("联营商城")])]),i("li",[i("a",{attrs:{href:"/v3/xianhuo?ptag=selfshop-topnav"}},[i("i",{staticClass:"icon iconfont icon-liexinziying"}),t._v("自营现货")])]),i("li",[i("a",{attrs:{href:"/v3/brand/map?ptag=selfshop-topnav"}},[i("i",{staticClass:"icon iconfont icon-pinpai"}),t._v("品牌之家")])]),i("li",{staticClass:"mui-table-view-cell "},[i("a",{staticClass:"zytabgo",attrs:{href:"/v3/joincart?ptag=selfshop-topnav"}},[i("i",{staticClass:"icon iconfont icon-gouwuche1"}),t._v("购物车")])]),i("li",[i("a",{attrs:{href:"/v3/user?ptag=selfshop-topnav"}},[i("i",{staticClass:"icon iconfont icon-huiyuanzhongxin"}),t._v("会员中心")])])])}],c={name:"menus",props:{color:{type:String,default:"#666"}},data:function(){return{flag:!1}}},e=c,l=(i("3b79"),i("17cc")),r=Object(l["a"])(e,s,n,!1,null,null,null);a["a"]=r.exports},c4ad:function(t,a,i){"use strict";var s=i("47d3"),n=i.n(s);n.a},cb25:function(t,a,i){"use strict";var s=i("4607"),n=i.n(s);n.a}}]);
\ No newline at end of file
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