添加备案号
This commit is contained in:
parent
4e38376f74
commit
dba86a51e9
@ -37,8 +37,8 @@ android {
|
|||||||
applicationId "com.arpa.hndahesudintocctmsdriver"
|
applicationId "com.arpa.hndahesudintocctmsdriver"
|
||||||
minSdkVersion 24
|
minSdkVersion 24
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 64
|
versionCode 65
|
||||||
versionName "3.3.4"
|
versionName "3.3.5"
|
||||||
flavorDimensions "CHANNEL_VALUE"
|
flavorDimensions "CHANNEL_VALUE"
|
||||||
flavorDimensions "app_icon"
|
flavorDimensions "app_icon"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
@ -74,6 +74,7 @@ public class UpBankActivity extends BaseAppCompatActivity implements OnLimitClic
|
|||||||
if (CacheGroup.cacheList.get("insBank") != null) {
|
if (CacheGroup.cacheList.get("insBank") != null) {
|
||||||
BaseBean bb = new Gson().fromJson(CacheGroup.cacheList.get("insBank"), BaseBean.class);
|
BaseBean bb = new Gson().fromJson(CacheGroup.cacheList.get("insBank"), BaseBean.class);
|
||||||
if (bb.getCode() == 200) {
|
if (bb.getCode() == 200) {
|
||||||
|
customDialog.dismiss();
|
||||||
Toast.makeText(con, "绑定成功", Toast.LENGTH_SHORT).show();
|
Toast.makeText(con, "绑定成功", Toast.LENGTH_SHORT).show();
|
||||||
finish();
|
finish();
|
||||||
} else {
|
} else {
|
||||||
@ -149,6 +150,8 @@ public class UpBankActivity extends BaseAppCompatActivity implements OnLimitClic
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void submit() {
|
public void submit() {
|
||||||
|
customDialog = new CustomDialog(con, "上传中,请稍后...");
|
||||||
|
customDialog.show();
|
||||||
String bankName = bank_name.getText().toString().trim();
|
String bankName = bank_name.getText().toString().trim();
|
||||||
String bankNumber = bank_number.getText().toString().trim();
|
String bankNumber = bank_number.getText().toString().trim();
|
||||||
if ("".equals(bankName) || "".equals(bankNumber)) {
|
if ("".equals(bankName) || "".equals(bankNumber)) {
|
||||||
|
@ -15,7 +15,7 @@ import java.util.Calendar;
|
|||||||
* @Description TODO
|
* @Description TODO
|
||||||
*/
|
*/
|
||||||
public class OnLimitClickHelper implements View.OnClickListener {
|
public class OnLimitClickHelper implements View.OnClickListener {
|
||||||
public static final int LIMIT_TIME = 1000;
|
public static final int LIMIT_TIME = 2000;
|
||||||
private long lastClickTime = 0;
|
private long lastClickTime = 0;
|
||||||
private OnLimitClickListener onLimitClickListener = null;
|
private OnLimitClickListener onLimitClickListener = null;
|
||||||
|
|
||||||
|
@ -275,11 +275,19 @@
|
|||||||
android:scaleType="fitXY"
|
android:scaleType="fitXY"
|
||||||
android:src="@mipmap/chevron" />
|
android:src="@mipmap/chevron" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="@dimen/dp_2"
|
android:layout_height="@dimen/dp_2"
|
||||||
android:background="#F6F6F9" />
|
android:background="#F6F6F9" />
|
||||||
|
<TextView
|
||||||
|
android:layout_marginTop="@dimen/dp_20"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="ICP备案号:豫ICP备09025418号-24A"
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
</androidx.core.widget.NestedScrollView>
|
</androidx.core.widget.NestedScrollView>
|
||||||
|
Loading…
Reference in New Issue
Block a user