| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <script>
- import langMap from "@/map/langMap";
- import productBanner from "@/components/banner/productBanner";
- import qs from "qs"
- import axios from "axios"
- import handle from "~/until/handle";
- import {isMediaView} from "@/until/mediaView";
- import LucencyHeader from "~/components/header/lucencyHeader.vue";
- import DefaultFooter from "~/components/footer/defaultFooter.vue";
- import {apiMap, baseUrl} from "~/map/apiMap";
- export default {
- name: "index",
- props:['uLang','pType','pKey','pProduct','pPageData'],
- components:{
- DefaultFooter,
- LucencyHeader,
- productBanner
- },
- async asyncData(ctx){
- // 获取数据
- let url = baseUrl + apiMap.searchProduct.path;
- url += `?type=all&p=1`
- let [err,res] = await handle(axios.get( url));
- if(err){
- console.log(err);
- return {};
- }
- let result = res.data;
- if(result.code === 1){
- let pageData = {
- limit: result.limit,
- page: result.page,
- total: result.total,
- count: result.count,
- }
- return {
- products: result.data,
- basePageData: pageData,
- }
- }else{
- console.error(result.msg);
- console.log(result);
- return {products:[]}
- }
- },
- data(){
- return {
- lang: this.uLang?this.uLang:langMap.lang.cn,
- type: this.pType?this.pType:'all',
- key: this.pKey?this.pKey:'',
- page: 1,
- nowCount: 199,
- nowTotal: 2,
- products: this.pProduct?this.pProduct:[],
- basePageData: {},
- pageSave: {},
- isPhone: false
- }
- },
- beforeMount() {
- let pageData;
- if (this.pPageData){
- this.basePageData = this.pPageData
- }
- this.type = this.pType?this.pType:'all';
- pageData = this.basePageData;
- this.updatePageData(pageData);
- },
- mounted() {
- this.isPhone = isMediaView(0,1024);
- this.$root.$on('changeLang',this.switchLang);
- this.$root.$on('searchProductKey',this.changeProductKeyHandle);
- this.$root.$on('changeProductType',this.selectType);
- this.$root.$on('changePage',this.changePageHandle);
- // this.loadData();
- },
- methods:{
- switchLang(nextLang){
- if(nextLang){
- this.lang = nextLang;
- }else{
- if(this.lang === langMap.lang.cn){
- this.lang = langMap.lang.en
- }else{
- this.lang = langMap.lang.cn
- }
- }
- },
- selectType(nextType){
- console.log(nextType)
- this.type = nextType;
- this.page = 1;
- this.searchProduct();
- },
- changeProductKeyHandle(key){
- if(this.key === key){
- return 0;
- }
- this.key = key;
- this.page = 1;
- this.searchProduct();
- },
- changePageHandle(nextPage){
- this.page = nextPage;
- this.searchProduct();
- },
- async searchProduct(){
- // 获取数据
- let url = apiMap.searchProduct.path;
- url += `?key=${this.key}&type=${this.type}&p=${this.page}`
- let [err,res] = await handle(axios.get(url));
- if(err){ console.log(err); return null; }
- let result = res.data;
- if(result.code === 1){
- this.products = result.data;
- let pageData;
- if(result.total){
- // 更新页面信息
- pageData = {
- limit: result.limit,
- page: result.page,
- total: result.total,
- count: result.count,
- }
- }else if(this.pageSave[this.type] && this.pageSave[this.type][this.key]){
- pageData = this.pageSave[this.type][this.key]
- }
- this.updatePageData(pageData);
- }else{
- console.error(result.msg);
- console.log(result);
- }
- },
- updatePageData(pageData){
- if(!this.pageSave[this.type]){
- this.pageSave[this.type] = {}
- }
- if(!this.pageSave[this.type][this.key]){
- this.pageSave[this.type][this.key] = pageData;
- }
- let nowTotal = Math.ceil(pageData.total / pageData.limit);
- let nowCount = pageData.total;
- this.nowTotal = nowTotal;
- this.nowCount = nowCount;
- }
- }
- }
- </script>
- <template>
- <div class="">
- <lucency-header :lang="lang" page-key="product" :is-phone="isPhone"/>
- <!-- 推荐广告-->
- <product-banner :lang="lang" />
- <!-- 产品类别 -->
- <product-types :lang="lang" :type="type"></product-types>
- <!-- 产品列表 -->
- <product-list :lang="lang" :product-list="products"></product-list>
- <page-select :page="page" :count="nowCount" :total="nowTotal"></page-select>
- <default-footer :lang="lang"/>
- <site-bar wechat-src="/image/wechat.jpg"></site-bar>
- </div>
- </template>
- <style scoped>
- </style>
|