react-native-timacare 1.0.16 → 1.0.18
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/commonjs/screens/digital-lending/Step1.js +1 -1
- package/lib/commonjs/screens/digital-lending/Step1.js.flow +3 -1
- package/lib/commonjs/screens/digital-lending/Step1.js.map +1 -1
- package/lib/commonjs/screens/digital-lending/Step6.js +1 -1
- package/lib/commonjs/screens/digital-lending/Step6.js.flow +16 -2
- package/lib/commonjs/screens/digital-lending/Step6.js.map +1 -1
- package/lib/module/screens/digital-lending/Step1.js +1 -1
- package/lib/module/screens/digital-lending/Step1.js.map +1 -1
- package/lib/module/screens/digital-lending/Step6.js +1 -1
- package/lib/module/screens/digital-lending/Step6.js.map +1 -1
- package/lib/typescript/screens/digital-lending/Step1.d.ts.map +1 -1
- package/lib/typescript/screens/digital-lending/Step6.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/screens/digital-lending/Step1.tsx +3 -1
- package/src/screens/digital-lending/Step6.tsx +16 -2
|
@@ -224,7 +224,13 @@ export const Step6 = observer(function Step6() {
|
|
|
224
224
|
}}
|
|
225
225
|
>
|
|
226
226
|
<IConCamera />
|
|
227
|
-
<MText
|
|
227
|
+
<MText
|
|
228
|
+
style={{
|
|
229
|
+
color: '#FF8E4F',
|
|
230
|
+
marginLeft: 2,
|
|
231
|
+
fontSize: 12,
|
|
232
|
+
}}
|
|
233
|
+
>
|
|
228
234
|
Chụp lại mặt trước
|
|
229
235
|
</MText>
|
|
230
236
|
</TouchableOpacity>
|
|
@@ -280,7 +286,13 @@ export const Step6 = observer(function Step6() {
|
|
|
280
286
|
}}
|
|
281
287
|
>
|
|
282
288
|
<IConCamera />
|
|
283
|
-
<MText
|
|
289
|
+
<MText
|
|
290
|
+
style={{
|
|
291
|
+
color: '#FF8E4F',
|
|
292
|
+
marginLeft: 2,
|
|
293
|
+
fontSize: 12,
|
|
294
|
+
}}
|
|
295
|
+
>
|
|
284
296
|
Chụp lại mặt sau
|
|
285
297
|
</MText>
|
|
286
298
|
</TouchableOpacity>
|
|
@@ -595,6 +607,7 @@ export const Step6 = observer(function Step6() {
|
|
|
595
607
|
onPress={() => {
|
|
596
608
|
if (step === 1) {
|
|
597
609
|
setStep(2);
|
|
610
|
+
setShowModal(false);
|
|
598
611
|
navigation.push(ScreenNames.Camera, {
|
|
599
612
|
front: false,
|
|
600
613
|
callback: (photo) => {
|
|
@@ -611,6 +624,7 @@ export const Step6 = observer(function Step6() {
|
|
|
611
624
|
});
|
|
612
625
|
digitalLendingStore.uploadCavet(formData, () => {
|
|
613
626
|
setBackPhoto(photo);
|
|
627
|
+
setShowModal(true);
|
|
614
628
|
});
|
|
615
629
|
},
|
|
616
630
|
});
|