From a8da38115220a0677442899ecf7bf75fd1ef325c Mon Sep 17 00:00:00 2001 From: tj <1378534974@qq.com> Date: 星期二, 25 三月 2025 14:22:39 +0800 Subject: [PATCH] 1.支付 --- app/src/main/java/com/example/firstapp/database/service/ApiService.kt | 6 +++++- app/src/main/res/layout/fragment_notifications.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletions(-) diff --git a/app/src/main/java/com/example/firstapp/database/service/ApiService.kt b/app/src/main/java/com/example/firstapp/database/service/ApiService.kt index 691f7ab..d38137e 100644 --- a/app/src/main/java/com/example/firstapp/database/service/ApiService.kt +++ b/app/src/main/java/com/example/firstapp/database/service/ApiService.kt @@ -2,6 +2,7 @@ import com.example.firstapp.database.entity.ApiResponse import com.example.firstapp.database.entity.KeywordConfig +import com.example.firstapp.database.response.AlipayOrderInfoResponse import com.example.firstapp.database.response.ContentResponse import com.example.firstapp.database.response.DictResponse import com.example.firstapp.database.response.LoginResponse @@ -41,6 +42,9 @@ @GET("config-security/enable-list-all") suspend fun getSecurityList(): SecurityResponse + @GET("alipay/pay-order-info") + suspend fun getPayOrderInfo(): AlipayOrderInfoResponse + @GET("flower/api/supplier/info/{phone}") suspend fun getUserInfo(@Path("phone") phone: String): ApiResponse<UserInfo> @@ -55,7 +59,7 @@ // 创建Retrofit实例(单例) object RetrofitClient{ - private const val BASE_URL ="http://192.168.1.213:8080/" + private const val BASE_URL ="http://192.168.1.198:8888/jshERP-boot/" //添加Gson解析器,用于自动将JSON响应转换为Kotlin/Java对象 private val retrofit = Retrofit.Builder().baseUrl(BASE_URL).addConverterFactory(GsonConverterFactory.create()).build() diff --git a/app/src/main/res/layout/fragment_notifications.xml b/app/src/main/res/layout/fragment_notifications.xml index d0b76ad..6e60a3b 100644 --- a/app/src/main/res/layout/fragment_notifications.xml +++ b/app/src/main/res/layout/fragment_notifications.xml @@ -156,6 +156,50 @@ android:paddingHorizontal="8dp" android:paddingVertical="4dp"> + <!-- 会员 --> + <RelativeLayout + android:id="@+id/memberVip" + style="@style/PluginPay" + android:padding="16dp"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerVertical="true" + android:text="会员" + android:textColor="@android:color/black" + android:textSize="16sp" /> + + <ImageView + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_alignParentEnd="true" + android:layout_centerVertical="true" + android:src="@drawable/right_forward" /> + </RelativeLayout> + + <!-- 支付 --> + <RelativeLayout + android:id="@+id/payPlugin" + style="@style/PluginPay" + android:padding="16dp"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_centerVertical="true" + android:text="支付" + android:textColor="@android:color/black" + android:textSize="16sp" /> + + <ImageView + android:layout_width="24dp" + android:layout_height="24dp" + android:layout_alignParentEnd="true" + android:layout_centerVertical="true" + android:src="@drawable/right_forward" /> + </RelativeLayout> + <!-- 设置提醒 --> <LinearLayout android:id="@+id/layout_reminder" -- Gitblit v1.9.3