diff --git a/src/pages-sub/asset/index.vue b/src/pages-sub/asset/index.vue
index c4284a9..6ac7091 100644
--- a/src/pages-sub/asset/index.vue
+++ b/src/pages-sub/asset/index.vue
@@ -44,11 +44,13 @@
- {{ item.money }}
+
+ {{ item.action === 1 ? '+' : '-' }}{{ item.money }}
+
- 已到账
+ {{ item.action === 1 ? '已到账' : '已扣除' }}
diff --git a/src/pages-sub/realname/index.vue b/src/pages-sub/realname/index.vue
index d6c78a4..d0c871a 100644
--- a/src/pages-sub/realname/index.vue
+++ b/src/pages-sub/realname/index.vue
@@ -9,7 +9,47 @@
-
+
+
+ 您的实名认证正在审核中,请耐心等待
+
+
+
+
+
+ 恭喜您,实名认证成功
+
+
+
+
+
+
+ 您的实名认证审核未通过,请重新提交
+
+
+
+
@@ -45,38 +85,6 @@
-
-
- 您的实名认证正在审核中,请耐心等待
-
-
-
-
-
- 恭喜您,实名认证成功
-
-
-
-
@@ -87,7 +95,6 @@ import { showModal } from '@/utils'
import { ref } from 'vue'
const userStore = useUserStore()
-const notSubmit = ref(true)
const form = ref({
credentials_name: '',
@@ -98,13 +105,18 @@ const onBack = () => {
uni.navigateBack()
}
+const onReachBottom = () => {
+ userStore.userInfo.member_certification = null
+}
+
const onSubmit = async () => {
if (!form.value.credentials_name || !form.value.credentials_number) {
await showModal('请填写完整信息')
return
}
await createAuthUser(form.value)
- notSubmit.value = false
+ await showModal('提交成功')
+ userStore.loadUserInfo()
}