1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 空状态图片地址
- export default {
- state: {
- status: [{
- url: '/noData/no-data-1.png',
- name: '暂无订单',
- desc: '我的团购订单',
- type: 1
- },
- {
- url: '/noData/no-data-3.png',
- name: '暂无记录',
- desc: '提现记录',
- type: 3
- },
- {
- url: '/noData/no-data-4.png',
- name: '暂无记录',
- desc: '钱包零钱',
- type: 4
- },
- {
- url: '/noData/no-data-6.png',
- name: '暂无商品',
- desc: '团购大厅',
- type: 6
- },
- {
- url: '/noData/no-data-7.png',
- name: '购物车空空如也',
- decs: '购物车',
- type: 7
- },
- {
- url: '/noData/no-data-8.png',
- name: '暂无提货点',
- desc: '官方提货点',
- type: 8
- }
- ]
- },
- mutations: {},
- actions: {}
- }
|