|
@@ -23,6 +23,7 @@ import com.kfzs.libs.DaggerFragment;
|
|
|
import com.kfzs.libs.IPresenter;
|
|
import com.kfzs.libs.IPresenter;
|
|
|
import com.kfzs.libs.IView;
|
|
import com.kfzs.libs.IView;
|
|
|
import com.kfzs.libs.widget.CompleteCommitEditText;
|
|
import com.kfzs.libs.widget.CompleteCommitEditText;
|
|
|
|
|
+import com.kfzs.libs.widget.TimeEditText;
|
|
|
import com.kfzs.libs.widget.alpha.AlphaButton;
|
|
import com.kfzs.libs.widget.alpha.AlphaButton;
|
|
|
import com.sheep.jiuyan.samllsheep.R;
|
|
import com.sheep.jiuyan.samllsheep.R;
|
|
|
import com.sheep.jiuyan.samllsheep.SheepApp;
|
|
import com.sheep.jiuyan.samllsheep.SheepApp;
|
|
@@ -53,17 +54,17 @@ public class ApplyForCreditCardDetailsFragment extends DaggerFragment implements
|
|
|
@BindView(R.id.et_education)
|
|
@BindView(R.id.et_education)
|
|
|
CompleteCommitEditText etEducation;
|
|
CompleteCommitEditText etEducation;
|
|
|
@BindView(R.id.et_company_name)
|
|
@BindView(R.id.et_company_name)
|
|
|
- CompleteCommitEditText etCompanyName;
|
|
|
|
|
|
|
+ TimeEditText etCompanyName;
|
|
|
@BindView(R.id.et_company_city)
|
|
@BindView(R.id.et_company_city)
|
|
|
CompleteCommitEditText etCompanyCity;
|
|
CompleteCommitEditText etCompanyCity;
|
|
|
@BindView(R.id.et_company_address)
|
|
@BindView(R.id.et_company_address)
|
|
|
- CompleteCommitEditText etCompanyAddress;
|
|
|
|
|
|
|
+ TimeEditText etCompanyAddress;
|
|
|
@BindView(R.id.et_company_phone_no)
|
|
@BindView(R.id.et_company_phone_no)
|
|
|
- CompleteCommitEditText etCompanyPhoneNo;
|
|
|
|
|
|
|
+ TimeEditText etCompanyPhoneNo;
|
|
|
@BindView(R.id.et_company_phone_q)
|
|
@BindView(R.id.et_company_phone_q)
|
|
|
- CompleteCommitEditText etCompanyPhoneQ;
|
|
|
|
|
|
|
+ TimeEditText etCompanyPhoneQ;
|
|
|
@BindView(R.id.et_company_phone_f)
|
|
@BindView(R.id.et_company_phone_f)
|
|
|
- CompleteCommitEditText etCompanyPhoneF;
|
|
|
|
|
|
|
+ TimeEditText etCompanyPhoneF;
|
|
|
@BindView(R.id.et_work_year)
|
|
@BindView(R.id.et_work_year)
|
|
|
CompleteCommitEditText etWorkYear;
|
|
CompleteCommitEditText etWorkYear;
|
|
|
@BindView(R.id.et_ir_name)
|
|
@BindView(R.id.et_ir_name)
|
|
@@ -609,6 +610,17 @@ public class ApplyForCreditCardDetailsFragment extends DaggerFragment implements
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
public void goNext() {
|
|
public void goNext() {
|
|
|
|
|
+ //记录信息
|
|
|
|
|
+ CreditCardInfosManager manager = CreditCardInfosManager.getInstance();
|
|
|
|
|
+ manager.comDetail = etCompanyAddress.getTotalFocusTime();
|
|
|
|
|
+ manager.companyName = etCompanyName.getTotalFocusTime();
|
|
|
|
|
+ manager.comDetail = etCompanyPhoneNo.getTotalFocusTime()+etCompanyPhoneF.getTotalFocusTime()+etCompanyPhoneQ.getTotalFocusTime();
|
|
|
|
|
+ manager.secondSumLong = System.currentTimeMillis() - startTime;
|
|
|
|
|
+
|
|
|
|
|
+// public float comDetail;//停留在单位地址上的时间
|
|
|
|
|
+// public float comTel;//停留在单位电话上的时间
|
|
|
|
|
+// public float companyName;//停留在公司名字上的时间
|
|
|
|
|
+// public float secondSumLong;//停留在页面2上的时间
|
|
|
onNextStepCallback.onNextStep(ApplyForCardTabFragment.STEP_DETAILS);
|
|
onNextStepCallback.onNextStep(ApplyForCardTabFragment.STEP_DETAILS);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|