king
2018-09-29 31573a0912c1971a9043b3f9294f643c7d60a2aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// 通用字典
const dict = {
  search: '搜索',
  confirm: '确定',
  cancel: '取消',
  recommend: '推荐',
  money: '¥',
  bottomtip: '我是有底线的',
  synthesis: '综合',
  sales_volume: '销量',
  price: '价格',
  discover: '发现',
  guess: '猜你喜欢',
  express: '快递'
}
// 首页字典项
const dicthome = {
  home: '首页',
  class: '分类',
  shoppingcar: '购物车',
  personal: '个人中心'
}
// 商品详情字典项
const dictgoodsdetail = {
  promotion: '促销',
  buyer_comments: '买家评论',
  view_all: '查看全部',
  goods_detail: '商品详情',
  goods_detail_specify_tip: '*以上由商家提供,仅供参考',
  chest_size: '胸围',
  waistline_size: '腰围',
  sleeve_size: '袖长',
  shoulder_size: '肩宽',
  collar_size: '领围',
  cloth_size: '衣长',
  customer_service: '客服',
  collect: '收藏',
  collected: '已收藏',
  add_cart: '加入购物车',
  shop_now: '立即购买',
  piece: '件',
  repertory: '库存'
}
export {
  dict,
  dicthome,
  dictgoodsdetail
}