Commit 510ae0bc by Giang Tran

update code

parent 145124eb
...@@ -132,7 +132,7 @@ android { ...@@ -132,7 +132,7 @@ android {
applicationId "com.dcv.invest" applicationId "com.dcv.invest"
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 8 versionCode 9
versionName "1.3" versionName "1.3"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }
......
...@@ -17,6 +17,7 @@ const ContractDescription = (props) => { ...@@ -17,6 +17,7 @@ const ContractDescription = (props) => {
showLoading(); showLoading();
const res = await getContractDescription(props.route.params.id); const res = await getContractDescription(props.route.params.id);
if (res.status === 200 && res.data.code === 200) { if (res.status === 200 && res.data.code === 200) {
console.log('Data', res.data.data);
setContractDescription(res.data.data); setContractDescription(res.data.data);
} else { } else {
showAlert(TYPE.ERROR, I18n.t('Notification'), res.data.message); showAlert(TYPE.ERROR, I18n.t('Notification'), res.data.message);
......
...@@ -280,4 +280,6 @@ export default { ...@@ -280,4 +280,6 @@ export default {
Count: 'Số lượng', Count: 'Số lượng',
Systemmaintenance: 'Hệ thống đang bảo trì', Systemmaintenance: 'Hệ thống đang bảo trì',
WaitUpdateCQG: 'Chờ cập nhật CQG', WaitUpdateCQG: 'Chờ cập nhật CQG',
FirstPriceRange: 'Giới hạn giá ban đầu',
ExpandPriceRange: 'Giới hạn giá mở rộng',
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment