FANGLH 8 years ago
parent
commit
74e7663d53

+ 3 - 3
WeiChat/version.properties

@@ -1,5 +1,5 @@
-#Tue Jan 02 14:19:10 CST 2018
-debugName=306
+#Wed Jan 03 11:49:03 CST 2018
+debugName=312
 versionName=613
 versionName=613
-debugCode=306
+debugCode=312
 versionCode=152
 versionCode=152

+ 3 - 3
app_core/common/src/main/res/layout/input_error_msg.xml

@@ -28,7 +28,7 @@
             android:layout_width="match_parent"
             android:layout_width="match_parent"
             android:layout_height="150dp"
             android:layout_height="150dp"
             android:background="@null"
             android:background="@null"
-            android:maxLines="3"
+            android:maxLines="5"
             android:maxLength="100"
             android:maxLength="100"
             android:hint="请输入你的问题"
             android:hint="请输入你的问题"
             android:textColor="@color/text_main"
             android:textColor="@color/text_main"
@@ -66,9 +66,9 @@
             android:textSize="@dimen/text_main"
             android:textSize="@dimen/text_main"
             android:layout_weight="1"
             android:layout_weight="1"
             android:layout_alignParentBottom="true"
             android:layout_alignParentBottom="true"
-            android:layout_marginBottom="30dp"
+            android:layout_marginBottom="10dp"
             android:layout_marginLeft="20dp"
             android:layout_marginLeft="20dp"
             android:layout_marginRight="20dp"
             android:layout_marginRight="20dp"
-            android:layout_marginTop="30dp"
+            android:layout_marginTop="10dp"
             /></LinearLayout>
             /></LinearLayout>
 </LinearLayout>
 </LinearLayout>

+ 1 - 0
app_modular/appme/src/main/java/com/uas/appme/settings/activity/FeedbackActivity.java

@@ -792,6 +792,7 @@ public class FeedbackActivity extends BaseActivity implements View.OnClickListen
         params.addBodyParameter("type", "common");
         params.addBodyParameter("type", "common");
         params.addBodyParameter("img", file == null ? new File(path) : file);
         params.addBodyParameter("img", file == null ? new File(path) : file);
         String url = CommonUtil.getAppBaseUrl(ct) + "mobile/uploadEmployeeAttach.action";
         String url = CommonUtil.getAppBaseUrl(ct) + "mobile/uploadEmployeeAttach.action";
+        Log.i("urlparams",url);
         final HttpUtils http = new HttpUtils();
         final HttpUtils http = new HttpUtils();
         http.send(HttpRequest.HttpMethod.POST, url, params, new RequestCallBack<String>() {
         http.send(HttpRequest.HttpMethod.POST, url, params, new RequestCallBack<String>() {
             @Override
             @Override

+ 2 - 1
app_modular/appme/src/main/java/com/uas/appme/settings/activity/WagesDetailsActivity.java

@@ -368,7 +368,8 @@ public class WagesDetailsActivity extends BaseActivity implements View.OnClickLi
         params.addBodyParameter("result","true");
         params.addBodyParameter("result","true");
         params.addQueryStringParameter("master", master);
         params.addQueryStringParameter("master", master);
         params.addBodyParameter("msg","");
         params.addBodyParameter("msg","");
-        if (needSignature != 1)
+        Log.i("urlparams",plainpath);
+        if (needSignature == 1)
             params.addBodyParameter("img",new File(plainpath));
             params.addBodyParameter("img",new File(plainpath));
         final HttpUtils http = new HttpUtils();
         final HttpUtils http = new HttpUtils();
         Log.i("urlparams",url+params+"");
         Log.i("urlparams",url+params+"");

+ 7 - 0
app_modular/appme/src/main/java/com/uas/appme/settings/adapter/WagesDetailsAdapter.java

@@ -1,6 +1,7 @@
 package com.uas.appme.settings.adapter;
 package com.uas.appme.settings.adapter;
 
 
 import android.content.Context;
 import android.content.Context;
+import android.text.TextPaint;
 import android.view.View;
 import android.view.View;
 import android.view.ViewGroup;
 import android.view.ViewGroup;
 import android.widget.BaseAdapter;
 import android.widget.BaseAdapter;
@@ -54,6 +55,12 @@ public class WagesDetailsAdapter extends BaseAdapter {
         } else {
         } else {
             wHolder = (WagesHolder) convertView.getTag();
             wHolder = (WagesHolder) convertView.getTag();
         }
         }
+        TextPaint tp = wHolder.value .getPaint();
+        if(position == modeList.size() - 1){
+            tp.setFakeBoldText(true);
+        }else {
+            tp.setFakeBoldText(false);
+        }
         wHolder.key.setText(modeList.get(position).getKey()+"");
         wHolder.key.setText(modeList.get(position).getKey()+"");
         wHolder.value.setText(modeList.get(position).getValue()+"");
         wHolder.value.setText(modeList.get(position).getValue()+"");
         return convertView;
         return convertView;