123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- export const POIS = {
- '/pois': {
- total: 2,
- list: [
- {
- id: 10000,
- user_id: 1,
- name: '测试品牌',
- branch_name: '测试分店',
- geo: 310105,
- country: '中国',
- province: '上海',
- city: '上海市',
- district: '长宁区',
- address: '中山公园',
- tel: '15900000000',
- categories: '美食,粤菜,湛江菜',
- lng: 121.41707989151003,
- lat: 31.218656214644792,
- recommend: '推荐品',
- special: '特色服务',
- introduction: '商户简介',
- open_time: '营业时间',
- avg_price: 260,
- reason: null,
- status: 1,
- status_str: '待审核',
- status_wx: 1,
- modified: 1505826527288,
- created: 1505826527288,
- },
- {
- id: 10001,
- user_id: 2,
- name: '测试品牌2',
- branch_name: '测试分店2',
- geo: 310105,
- country: '中国',
- province: '上海',
- city: '上海市',
- district: '长宁区',
- address: '中山公园',
- tel: '15900000000',
- categories: '美食,粤菜,湛江菜',
- lng: 121.41707989151003,
- lat: 31.218656214644792,
- recommend: '推荐品',
- special: '特色服务',
- introduction: '商户简介',
- open_time: '营业时间',
- avg_price: 260,
- reason: null,
- status: 1,
- status_str: '待审核',
- status_wx: 1,
- modified: 1505826527288,
- created: 1505826527288,
- },
- ],
- },
- };
|