|
@@ -1,13 +1,31 @@
|
1
|
1
|
import { Component } from 'react'
|
2
|
2
|
import { View } from '@tarojs/components'
|
3
|
|
-import { Button } from '@antmjs/vantui'
|
|
3
|
+import { Cell, Row, Col } from '@antmjs/vantui'
|
4
|
4
|
import './index.less'
|
5
|
5
|
|
6
|
6
|
export default (props) => {
|
7
|
7
|
|
8
|
8
|
return (
|
9
|
9
|
<View>
|
10
|
|
- <Button type="warning">123</Button>
|
|
10
|
+ <Cell>
|
|
11
|
+ <Row>
|
|
12
|
+ <Col span="4">
|
|
13
|
+ <View >深松</View>
|
|
14
|
+ </Col>
|
|
15
|
+ <Col span="4">
|
|
16
|
+ <View >012346</View>
|
|
17
|
+ </Col>
|
|
18
|
+ <Col span="10">
|
|
19
|
+ <View >雷肯Smaragd整地机</View>
|
|
20
|
+ </Col>
|
|
21
|
+ <Col span="3">
|
|
22
|
+ <View >离线</View>
|
|
23
|
+ </Col>
|
|
24
|
+ <Col span="3">
|
|
25
|
+ <View >{'>>'}</View>
|
|
26
|
+ </Col>
|
|
27
|
+ </Row>
|
|
28
|
+ </Cell>
|
11
|
29
|
</View>
|
12
|
30
|
)
|
13
|
31
|
}
|