| 12345678910111213141516171819202122232425262728293031323334 |
- $(function() {
- // $("#aboutUs").on('click')
- vm = new Vue({
- el:'#app',
- data:{
- name: '',
- adress: '',
- phone: '',
- about:'',
- bottom:'',
- statement:''
- }
- });
- var datas = {
- limit:10000
- // Lang:'en',
- };
- var ajaxUrl = 'http://lanbo.frp.liuniu946.com/apis/product';
- AJAX('get',ajaxUrl,datas,function(res){
- vm.bottom = res.data.list.filter(item => item.category_ids == "64")
- console.log(vm.bottom)
- })
-
- var ajaxUrl = 'http://lanbo.frp.liuniu946.com/apis/product';
- AJAX('get', ajaxUrl, datas, function(res) {
- vm.statement = res.data.list.filter(item => item.category_ids == "65")
- console.log(vm.statement)
- })
- // var ajaxUrl = 'http://lanbo.frp.liuniu946.com/apis/about/10';
- // AJAX('get', ajaxUrl, datas, function (res) {
- // vm.about = res.data.content;
-
- // })
- })
|