react_hsbc_teller 0.5.7 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/assets/img/inspection.png +0 -0
- package/packages/pages/foot/foot.jsx +1 -1
- package/packages/pages/foot/foot.less +4 -2
- package/packages/pages/index.jsx +1 -0
- package/packages/pages/video/video.jsx +145 -88
- package/packages/pages/video/video.less +67 -19
- package/src/index.js +2 -2
package/package.json
CHANGED
|
Binary file
|
|
@@ -144,7 +144,7 @@ export default class foot extends Component {
|
|
|
144
144
|
</div>
|
|
145
145
|
<div className='footHover' onClick={this.inspection.bind(this)}>
|
|
146
146
|
<div className="one">
|
|
147
|
-
<img className="imgClass" src={
|
|
147
|
+
<img className="imgClass" src={require("../../assets/img/inspection.png").default} alt="" />
|
|
148
148
|
<div className="text">
|
|
149
149
|
设备检测
|
|
150
150
|
</div>
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
.foot{
|
|
2
2
|
background: #fff;
|
|
3
|
-
height:
|
|
3
|
+
height: 60px;
|
|
4
4
|
display: inline-flex;
|
|
5
5
|
width: 100%;
|
|
6
|
+
// margin: 10px 0;
|
|
6
7
|
// position: absolute;
|
|
7
8
|
// bottom: 0;
|
|
8
9
|
// left: 0;
|
|
@@ -10,8 +11,9 @@ width: 100%;
|
|
|
10
11
|
.total{
|
|
11
12
|
display: inline-flex;
|
|
12
13
|
width: 33%;
|
|
13
|
-
|
|
14
|
+
height: 100%;
|
|
14
15
|
align-items: center;
|
|
16
|
+
margin: 10px 0;
|
|
15
17
|
.one{
|
|
16
18
|
padding-top: 5px;
|
|
17
19
|
display: flex;
|
package/packages/pages/index.jsx
CHANGED