class="language-java">// } 944
//                    }, 1500);
945
//                }
946
//            }
947
//        });
948
//    }
949
//
950
//
951
//}

+ 0 - 68
app/src/main/java/com/electric/chargingpile/activity/TLDLoadingActivity.java

@ -113,38 +113,6 @@ public class TLDLoadingActivity extends Activity {
113 113
114 114
            @Override
115 115
            public void onResponse(final String response) {
116
//                AlertDialog.Builder builder = new AlertDialog.Builder(TLDLoadingActivity.this);
117
//                builder.setTitle("提示");
118
//                builder.setMessage(response);
119
//                builder.setCancelable(false);
120
//                builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
121
//                    @Override
122
//                    public void onClick(DialogInterface dialogg, int which) {
123
//                        if (EmptyUtils.isNotEmpty(response)){
124
//                            LogUtils.e("query:"+response);
125
//                            String rtnCode = JsonUtils.getKeyResult(response,"rtnCode");
126
//                            String rtnMsg = JsonUtils.getKeyResult(response,"rtnMsg");
127
//                            if ("01".equals(rtnCode)){
128
//                                String data = JsonUtils.getKeyResult(response,"data");
129
//                                ChargingBean chargingBean = JsonUtils.parseToObjectBean(data,ChargingBean.class);
130
//                                if (chargingBean.getStatus() == 1) {
131
//                                    MainApplication.isAppStart = true;
132
//                                    ProfileManager.getInstance().setAppStart(getApplicationContext(), MainApplication.isAppStart);
133
//                                    Intent intent = new Intent(getApplicationContext(), ChargingStatusActivity.class);
134
//                                    intent.putExtra(ChargingConstants.ORDERID, orderId);
135
//                                    startActivity(intent);
136
//                                }else {
137
//                                    ToastUtil.showToast(getApplicationContext(),"当前终端无响应,请拔枪重试或更换其他充电桩",Toast.LENGTH_SHORT);
138
//                                }
139
//                            }else {
140
//                                ToastUtil.showToast(getApplicationContext(), rtnMsg, Toast.LENGTH_SHORT);
141
//                            }
142
//                            finish();
143
//                        }
144
//                    }
145
//                });
146
//                builder.setNegativeButton("取消", null);
147
//                builder.create().show();
148 116
149 117
                if (EmptyUtils.isNotEmpty(response)) {
150 118
                    LogUtils.e("query:" + response);
@ -171,40 +139,4 @@ public class TLDLoadingActivity extends Activity {
171 139
        });
172 140
    }
173 141
174
175
//    private void startCharging(String pile_code,String group_id,String type,int time){
176
//        long appTime1 = System.currentTimeMillis() / 1000;
177
//        long updatetime = appTime1 - MainMapActivity.cha - 3;
178
//        String token = String.valueOf(updatetime);
179
//        String s = "group_id="+group_id+"&password="+MainApplication.userPassword+"&pile_code="+pile_code+"&timer="+token+"&type="+type+"&user_id="+MainApplication.userId+"&key=661f9efdcb4f46fe7ab5f2e78a705a2a";
180
//        String url = MainApplication.url+"/zhannew/basic/web/index.php/interface/start_v2?" +
181
//                "ver=1.0&type="+type+"&timer="+token+"&user_id="+MainApplication.userId+"&pile_code="
182
//                +pile_code+"&group_id="+group_id+"&password="+MainApplication.userPassword+"&sign="+ Md5Util.md5(s);
183
////        Log.e(TAG, "startHssy: url="+url );
184
//        OkHttpUtils.get().url(url).build().connTimeOut(time*1000).readTimeOut(time*1000).execute(new StringCallback() {
185
//            @Override
186
//            public void onError(Call call, Exception e) {
187
//                ToastUtil.showToast(getApplicationContext(),"网络异常,请检查您的网络连接",Toast.LENGTH_SHORT);
188
//                CrashReport.postCatchedException(e);
189
//            }
190
//
191
//            @Override
192
//            public void onResponse(String response) {
193
//                LogUtils.e(response);
194
//                String code = JsonUtils.getKeyResult(response,"code");
195
//                if (code.equals("200")){
196
//                    MainApplication.isAppStart = true;
197
//                    ProfileManager.getInstance().setAppStart(getApplicationContext(),MainApplication.isAppStart);
198
//                    startActivity(new Intent(getApplicationContext(),ChargingStatusActivity.class));
199
//                    finish();
200
//                }else {
201
//                    String error_message = JsonUtils.getKeyResult(response,"error_message");
202
//                    ToastUtil.showToast(getApplicationContext(), error_message, Toast.LENGTH_SHORT);
203
//                    finish();
204
//                }
205
//            }
206
//        });
207
//    }
208
209
210 142
}

BIN
app/src/main/res/drawable-hdpi/bg_charging_orange.png


BIN
app/src/main/res/drawable-hdpi/icon_zhan_name_orange.png


BIN
app/src/main/res/drawable-mdpi/bg_charging_orange.png


BIN
app/src/main/res/drawable-mdpi/icon_zhan_name_orange.png


BIN
app/src/main/res/drawable-xhdpi/bg_charging_orange.png


BIN
app/src/main/res/drawable-xhdpi/icon_zhan_name_orange.png


BIN
app/src/main/res/drawable-xxhdpi/bg_charging_orange.png


BIN
app/src/main/res/drawable-xxhdpi/icon_zhan_name_orange.png


BIN
app/src/main/res/drawable-xxxhdpi/bg_charging_orange.png


BIN
app/src/main/res/drawable-xxxhdpi/icon_zhan_name_orange.png


+ 10 - 0
app/src/main/res/drawable/bg_tv_stop_green.xml

@ -0,0 +1,10 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
<shape xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:shape="rectangle">
4
5
    <!-- 表示shape的四个角的角度。只适用于矩形shape,这里的角度是指圆角的程度 -->
6
    <corners android:radius="5dp" />
7
8
    <!-- 这个标签表示纯色填充,通过android:color即可指定shape中填充的颜色 -->
9
    <solid android:color="#1BB637" />
10
</shape>

+ 10 - 0
app/src/main/res/drawable/bg_tv_stop_orange.xml

@ -0,0 +1,10 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
<shape xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:shape="rectangle">
4
5
    <!-- 表示shape的四个角的角度。只适用于矩形shape,这里的角度是指圆角的程度 -->
6
    <corners android:radius="5dp" />
7
8
    <!-- 这个标签表示纯色填充,通过android:color即可指定shape中填充的颜色 -->
9
    <solid android:color="#FF985A" />
10
</shape>

+ 73 - 74
app/src/main/res/layout/activity_charging_status.xml

@ -1,19 +1,19 @@
1 1
<?xml version="1.0" encoding="utf-8"?>
2 2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    xmlns:app="http://schemas.android.com/apk/res-auto"
3 4
    xmlns:tools="http://schemas.android.com/tools"
4 5
    android:layout_width="match_parent"
5 6
    android:layout_height="match_parent"
6
    android:orientation="vertical"
7 7
    android:background="@color/white"
8
    xmlns:app="http://schemas.android.com/apk/res-auto"
8
    android:orientation="vertical"
9 9
    tools:context="com.electric.chargingpile.activity.ChargingStatusActivity">
10 10
11 11
    <RelativeLayout
12 12
        android:id="@+id/rl_title"
13 13
        android:layout_width="match_parent"
14 14
        android:layout_height="44dp"
15
        android:layout_alignParentLeft="true"
16 15
        android:layout_alignParentStart="true"
16
        android:layout_alignParentLeft="true"
17 17
        android:layout_alignParentTop="true"
18 18
        android:background="@color/white">
19 19
@ -41,114 +41,112 @@
41 41
            android:layout_width="wrap_content"
42 42
            android:layout_height="match_parent"
43 43
            android:layout_alignParentRight="true"
44
            android:text="充电帮助"
45
            android:textSize="16sp"
46
            android:textColor="@color/lvse"
47 44
            android:gravity="center"
45
            android:paddingLeft="16dp"
48 46
            android:paddingRight="16dp"
49
            android:paddingLeft="16dp"/>
47
            android:text="充电帮助"
48
            android:textColor="@color/lvse"
49
            android:textSize="15sp" />
50 50
51 51
    </RelativeLayout>
52 52
53 53
    <LinearLayout
54 54
        android:id="@+id/ll_charginginfo"
55
        android:layout_height="44dp"
56 55
        android:layout_width="match_parent"
56
        android:layout_height="44dp"
57
        android:layout_below="@+id/rl_circle"
57 58
        android:layout_marginLeft="12dp"
58
        android:layout_marginRight="12dp"
59
        android:orientation="horizontal"
60 59
        android:layout_marginTop="26dp"
61
        android:layout_below="@+id/rl_circle">
60
        android:layout_marginRight="12dp"
61
        android:orientation="horizontal">
62 62
63 63
        <RelativeLayout
64
            android:layout_height="match_parent"
65 64
            android:layout_width="0dp"
65
            android:layout_height="match_parent"
66 66
            android:layout_weight="1">
67 67
68 68
            <TextView
69 69
                android:layout_width="wrap_content"
70 70
                android:layout_height="wrap_content"
71
                android:text="电流(安)"
72
                android:textColor="@color/ui_68"
73
                android:textSize="12sp"
74 71
                android:layout_alignParentTop="true"
75 72
                android:layout_centerHorizontal="true"
76
                android:layout_gravity="center" />
73
                android:layout_gravity="center"
74
                android:text="电流(安)"
75
                android:textColor="@color/ui_68"
76
                android:textSize="12sp" />
77 77
78 78
            <TextView
79 79
                android:id="@+id/tv_dianliu"
80 80
                android:layout_width="wrap_content"
81 81
                android:layout_height="wrap_content"
82
                android:text="--"
83 82
                android:layout_alignParentBottom="true"
84 83
                android:layout_centerHorizontal="true"
84
                android:text="--"
85 85
                android:textColor="@color/ui_65"
86 86
                android:textSize="17sp" />
87 87
88 88
89
90
91 89
        </RelativeLayout>
92 90
93 91
        <View
94 92
            android:layout_width="0.5dp"
95 93
            android:layout_height="match_parent"
96
            android:background="@color/ui_6d"/>
94
            android:background="@color/ui_6d" />
97 95
98 96
        <RelativeLayout
99
            android:layout_height="match_parent"
100 97
            android:layout_width="0dp"
98
            android:layout_height="match_parent"
101 99
            android:layout_weight="1">
102 100
103 101
            <TextView
104 102
                android:layout_width="wrap_content"
105 103
                android:layout_height="wrap_content"
104
                android:layout_alignParentTop="true"
105
                android:layout_centerHorizontal="true"
106 106
                android:text="电压(伏)"
107 107
                android:textColor="@color/ui_68"
108
                android:textSize="12sp"
109
                android:layout_alignParentTop="true"
110
                android:layout_centerHorizontal="true" />
108
                android:textSize="12sp" />
111 109
112 110
            <TextView
113 111
                android:id="@+id/tv_dianya"
114 112
                android:layout_width="wrap_content"
115 113
                android:layout_height="wrap_content"
114
                android:layout_alignParentBottom="true"
115
                android:layout_centerHorizontal="true"
116 116
                android:text="--"
117 117
                android:textColor="@color/ui_65"
118
                android:textSize="17sp"
119
                android:layout_alignParentBottom="true"
120
                android:layout_centerHorizontal="true"/>
118
                android:textSize="17sp" />
121 119
122 120
        </RelativeLayout>
123 121
124 122
        <View
125 123
            android:layout_width="0.5dp"
126 124
            android:layout_height="match_parent"
127
            android:background="@color/ui_6d"/>
125
            android:background="@color/ui_6d" />
128 126
129 127
        <RelativeLayout
130
            android:layout_height="match_parent"
131 128
            android:layout_width="0dp"
129
            android:layout_height="match_parent"
132 130
            android:layout_weight="1">
133 131
134 132
            <TextView
135 133
                android:layout_width="wrap_content"
136 134
                android:layout_height="wrap_content"
135
                android:layout_alignParentTop="true"
136
                android:layout_centerHorizontal="true"
137 137
                android:text="充电进程"
138 138
                android:textColor="@color/ui_68"
139
                android:textSize="12sp"
140
                android:layout_alignParentTop="true"
141
                android:layout_centerHorizontal="true" />
139
                android:textSize="12sp" />
142 140
143 141
            <TextView
144 142
                android:id="@+id/tv_jindu"
145 143
                android:layout_width="wrap_content"
146 144
                android:layout_height="wrap_content"
145
                android:layout_alignParentBottom="true"
146
                android:layout_centerHorizontal="true"
147 147
                android:text="--"
148 148
                android:textColor="@color/ui_65"
149
                android:textSize="17sp"
150
                android:layout_alignParentBottom="true"
151
                android:layout_centerHorizontal="true"/>
149
                android:textSize="17sp" />
152 150
153 151
        </RelativeLayout>
154 152
@ -159,33 +157,33 @@
159 157
        android:layout_width="172dp"
160 158
        android:layout_height="172dp"
161 159
        android:layout_centerHorizontal="true"
160
        android:layout_gravity="center_horizontal"
162 161
        android:layout_marginTop="40dp"
163
        android:background="@drawable/bg_charging"
164
        android:layout_gravity="center_horizontal">
162
        android:background="@drawable/bg_charging">
165 163
166 164
        <me.itangqi.waveloadingview.WaveLoadingView
167 165
            android:id="@+id/waveLoadingView"
168 166
            android:layout_width="match_parent"
169 167
            android:layout_height="match_parent"
170 168
            app:wlv_borderColor="#00ffffff"
171
            app:wlv_wave_background_Color="#00ffffff"
172 169
            app:wlv_borderWidth="1dp"
173
            app:wlv_shapeType="circle"
174 170
            app:wlv_round_rectangle="false"
171
            app:wlv_shapeType="circle"
175 172
            app:wlv_titleCenterStrokeColor="@android:color/holo_blue_dark"
176 173
            app:wlv_titleCenterStrokeWidth="3dp"
177 174
            app:wlv_waveAmplitude="60"
178
            app:wlv_waveColor="#3fffffff"/>
175
            app:wlv_waveColor="#3fffffff"
176
            app:wlv_wave_background_Color="#00ffffff" />
179 177
180 178
181 179
        <!--<com.loonggg.circleprogressbarlibrary.view.CircleProgressBar-->
182
            <!--android:id="@+id/pb"-->
183
            <!--android:layout_width="143dp"-->
184
            <!--android:layout_height="143dp"-->
185
            <!--android:visibility="gone"-->
186
            <!--android:layout_centerInParent="true"-->
187
            <!--loonggg:bgProgressBarColor="#efefef"-->
188
            <!--loonggg:circleStrokeWidth="5dp" />-->
180
        <!--android:id="@+id/pb"-->
181
        <!--android:layout_width="143dp"-->
182
        <!--android:layout_height="143dp"-->
183
        <!--android:visibility="gone"-->
184
        <!--android:layout_centerInParent="true"-->
185
        <!--loonggg:bgProgressBarColor="#efefef"-->
186
        <!--loonggg:circleStrokeWidth="5dp" />-->
189 187
190 188
        <LinearLayout
191 189
            android:layout_width="wrap_content"
@ -221,13 +219,13 @@
221 219
        android:layout_width="wrap_content"
222 220
        android:layout_height="wrap_content"
223 221
        android:layout_gravity="center_horizontal"
224
        android:gravity="center_vertical"
225
        android:textColor="@color/ui_62"
222
        android:layout_marginTop="33dp"
226 223
        android:drawableLeft="@drawable/icon_zhan_name"
227 224
        android:drawablePadding="8dp"
225
        android:gravity="center_vertical"
228 226
        android:text=""
229
        android:textSize="18sp"
230
        android:layout_marginTop="33dp" />
227
        android:textColor="@color/ui_62"
228
        android:textSize="18sp" />
231 229
232 230
    <LinearLayout
233 231
        android:layout_width="match_parent"
@ -243,28 +241,28 @@
243 241
            <TextView
244 242
                android:layout_width="wrap_content"
245 243
                android:layout_height="wrap_content"
244
                android:layout_alignParentTop="true"
245
                android:layout_centerHorizontal="true"
246 246
                android:text="充电时长"
247
                android:textSize="12sp"
248 247
                android:textColor="@color/ui_68"
249
                android:layout_alignParentTop="true"
250
                android:layout_centerHorizontal="true"/>
248
                android:textSize="12sp" />
251 249
252 250
            <TextView
253 251
                android:id="@+id/tv_time"
254 252
                android:layout_width="wrap_content"
255 253
                android:layout_height="wrap_content"
256 254
                android:layout_alignParentBottom="true"
255
                android:layout_centerHorizontal="true"
257 256
                android:text="--"
258
                android:textSize="21sp"
259 257
                android:textColor="@color/ui_62"
260
                android:layout_centerHorizontal="true"/>
258
                android:textSize="21sp" />
261 259
262 260
        </RelativeLayout>
263 261
264 262
        <View
265 263
            android:layout_width="0.5dp"
266 264
            android:layout_height="match_parent"
267
            android:background="@color/ui_6d"/>
265
            android:background="@color/ui_6d" />
268 266
269 267
        <RelativeLayout
270 268
            android:layout_width="0dp"
@ -274,11 +272,11 @@
274 272
            <TextView
275 273
                android:layout_width="wrap_content"
276 274
                android:layout_height="wrap_content"
275
                android:layout_alignParentTop="true"
276
                android:layout_centerHorizontal="true"
277 277
                android:text="充电金额"
278
                android:textSize="12sp"
279 278
                android:textColor="@color/ui_68"
280
                android:layout_alignParentTop="true"
281
                android:layout_centerHorizontal="true" />
279
                android:textSize="12sp" />
282 280
283 281
            <TextView
284 282
                android:id="@+id/tv_cost"
@ -286,17 +284,16 @@
286 284
                android:layout_height="wrap_content"
287 285
                android:layout_alignParentBottom="true"
288 286
                android:layout_centerHorizontal="true"
287
                android:layout_centerVertical="true"
289 288
                android:text="--"
290
                android:textSize="21sp"
291 289
                android:textColor="@color/ui_62"
292
                android:layout_centerVertical="true"/>
290
                android:textSize="21sp" />
293 291
294 292
        </RelativeLayout>
295 293
296 294
    </LinearLayout>
297 295
298 296
299
300 297
    <RelativeLayout
301 298
        android:layout_width="match_parent"
302 299
        android:layout_height="match_parent">
@ -309,7 +306,7 @@
309 306
            android:layout_alignParentRight="true"
310 307
            android:layout_marginTop="21dp"
311 308
            android:layout_marginRight="13dp"
312
            android:visibility="gone"/>
309
            android:visibility="gone" />
313 310
314 311
        <TextView
315 312
            android:id="@+id/tv_activity"
@ -319,22 +316,24 @@
319 316
            android:layout_centerHorizontal="true"
320 317
            android:paddingTop="20dp"
321 318
            android:paddingBottom="15dp"
322
            android:textSize="14sp"
323 319
            android:text=""
324 320
            android:textColor="#ffa900"
325
            android:visibility="visible"/>
321
            android:textSize="14sp"
322
            android:visibility="visible" />
326 323
327 324
        <TextView
328 325
            android:id="@+id/tv_stop"
329
            android:layout_width="165dp"
330
            android:layout_height="39dp"
331
            android:background="@drawable/bg_text_yuanlvline_whitebg"
332
            android:text="结束充电"
326
            android:layout_width="match_parent"
327
            android:layout_height="40dp"
328
            android:layout_alignParentBottom="true"
329
            android:layout_marginLeft="15dp"
330
            android:layout_marginRight="15dp"
331
            android:layout_marginBottom="15dp"
332
            android:background="@drawable/bg_tv_stop_green"
333 333
            android:gravity="center"
334
            android:layout_centerInParent="true"
335
            android:textSize="16sp"
336
            android:textColor="@color/lvse"/>
337
334
            android:text="结束充电"
335
            android:textColor="@color/white"
336
            android:textSize="16sp" />
338 337
    </RelativeLayout>
339 338
340 339
</LinearLayout>

+ 0 - 87
zxing/src/main/java/com/google/zxing/client/android/CaptureActivity.java

@ -1388,91 +1388,4 @@ public final class CaptureActivity extends Activity implements SurfaceHolder.Cal
1388 1388
            }
1389 1389
        });
1390 1390
    }
1391
1392
//    private void getChargingPile(final String result){
1393
//        String web_url = url+"/zhannew/basic/web/index.php/interface/info?flag=1&user_id="+user_id+"&url="+result;
1394
//        Log.e(TAG, web_url );
1395
//        OkHttpUtils.get().url(web_url).build().execute(new StringCallback() {
1396
//            @Override
1397
//            public void onError(Call call, Exception e) {
1398
//
1399
//            }
1400
//
1401
//            @Override
1402
//            public void onResponse(String response) {
1403
//                if (loadingDialog.isShowing()){
1404
//                    loadingDialog.dismiss();
1405
//                }
1406
//                Log.e(TAG, "onResponse: getChargingPile11="+response );
1407
//                String code = JsonUtils.getKeyResult(response,"code");
1408
//                if (code.equals("200")){
1409
//                    String group_id = JsonUtils.getKeyResult(response,"group_id");
1410
//                    String eletype = JsonUtils.getKeyResult(response,"eletype");
1411
//                    String type = JsonUtils.getKeyResult(response,"type");
1412
//                    String pile_code = JsonUtils.getKeyResult(response,"pile_code");
1413
//                    if (type.equals("jd")){
1414
//                        startHssy(pile_code,group_id,type);
1415
//                    }else {
1416
//                        Intent intent = new Intent();
1417
//                        intent.setClassName("com.electric.chargingpile", "com.electric.chargingpile.activity.TLDLoadingActivity");
1418
//                        intent.putExtra("type",type);
1419
//                        intent.putExtra("eletype",eletype);
1420
//                        intent.putExtra("chargingCode",pile_code);
1421
//                        intent.putExtra("group_id",group_id);
1422
//                        startActivity(intent);
1423
//                        finish();
1424
//                    }
1425
//
1426
//                }else {
1427
//                    String error_message = JsonUtils.getKeyResult(response,"error_message");
1428
////                    ToastUtils.showShort("");
1429
//                    ToastUtil.showToast(getApplicationContext(),error_message,Toast.LENGTH_SHORT);
1430
//                    new Handler().postDelayed(new Runnable() {
1431
//                        public void run() {
1432
//                            restartPreviewAfterDelay(0L);
1433
//                        }
1434
//                    }, 1500);
1435
//                }
1436
//            }
1437
//        });
1438
//    }
1439
//
1440
//    private void startHssy(String pile_code,String group_id,String type){
1441
//        long appTime1 = System.currentTimeMillis() / 1000;
1442
//        long updatetime = appTime1 - cha - 3;
1443
//        String token = String.valueOf(updatetime);
1444
//        String s = "group_id="+group_id+"&password="+user_password+"&pile_code="+pile_code+"&timer="+token+"&type="+type+"&user_id="+user_id+"&key=661f9efdcb4f46fe7ab5f2e78a705a2a";
1445
//        String web_url = url+"/zhannew/basic/web/index.php/interface/start_v2?" +
1446
//                "ver=1.0&type="+type+"&timer="+token+"&user_id="+user_id+"&pile_code="
1447
//                +pile_code+"&group_id="+group_id+"&password="+user_password+"&sign="+ Md5Util.md5(s);
1448
//        Log.e(TAG, "startHssy: url="+web_url );
1449
//        OkHttpUtils.get().url(web_url).build().execute(new StringCallback() {
1450
//            @Override
1451
//            public void onError(Call call, Exception e) {
1452
//
1453
//            }
1454
//
1455
//            @Override
1456
//            public void onResponse(String response) {
1457
//                Log.e(TAG, "onResponse: startHssy="+response );
1458
//                String code = JsonUtils.getKeyResult(response,"code");
1459
//                if (code.equals("200")){
1460
//                    Intent intent = new Intent();
1461
//                    intent.setClassName("com.electric.chargingpile", "com.electric.chargingpile.activity.ChargingStatusActivity");
1462
//                    startActivity(intent);
1463
//                    finish();
1464
//                }else {
1465
//                    String error_message = JsonUtils.getKeyResult(response,"error_message");
1466
//                    ToastUtil.showToast(getApplicationContext(),error_message,Toast.LENGTH_SHORT);
1467
//                    new Handler().postDelayed(new Runnable() {
1468
//                        public void run() {
1469
//                            restartPreviewAfterDelay(0L);
1470
//                        }
1471
//                    }, 1500);
1472
//                }
1473
//            }
1474
//        });
1475
//    }
1476
1477
1478 1391
}

dudu/cdzApp - Gogs: Go Git Service

1 Commity (master)

Autor SHA1 Wiadomość Data
  huyuguo 9014fe157a h5电话拨打问题解决 4 lat temu