2018-01-15

1 倒立三角

  triangle: {
    width: 0,
    height: 0,
    borderWidth: 7,
    borderTopColor: "#fff",
    borderStyle: "solid",
    color: "transparent",
    marginLeft: 10,
    marginBottom: 10,
  },

2 stockTransfer 修复 Receiving store & Departing store list 选择下拉框

2018-01-15_第1张图片

3 外边borderRadius 里边scrollY

2018-01-15_第2张图片
屏幕快照 2018-01-15 11.40.11.png

4 切换store

  handleCheck(id: number) {
    let {pathname} = this.props.location
    const secondSlashIdx = pathname.indexOf("/", 1)
    pathname = `/${id}${pathname.substring(secondSlashIdx)}`
    this.props.push({pathname})
    this.props.toggle()
  }

5
2018-01-15_第3张图片
购物车

你可能感兴趣的:(2018-01-15)