feat: 完成前端业务闭环与后端联调
This commit is contained in:
@@ -107,7 +107,7 @@ const states = {
|
||||
const activeStatus = computed(() => states[statusState.value] || states.error);
|
||||
const pageTitle = computed(() => "成员状态");
|
||||
const hasValidContext = computed(() =>
|
||||
Boolean(genealogyId.value && personId.value),
|
||||
/^[1-9]\d*$/.test(genealogyId.value) && /^[1-9]\d*$/.test(personId.value),
|
||||
);
|
||||
const memberIdentityCopy = computed(() => {
|
||||
if (!member.value) return "";
|
||||
@@ -157,7 +157,7 @@ const handleAction = () => goBack();
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
flex-direction: column;
|
||||
padding-bottom: 34rpx;
|
||||
padding-bottom: calc(34rpx + env(safe-area-inset-bottom));
|
||||
box-sizing: border-box;
|
||||
background: $paper;
|
||||
}
|
||||
@@ -236,7 +236,7 @@ const handleAction = () => goBack();
|
||||
.status-action {
|
||||
display: grid;
|
||||
width: calc(100% - 72rpx);
|
||||
min-height: 76rpx;
|
||||
min-height: var(--app-touch-min);
|
||||
margin: 22rpx auto 0;
|
||||
}
|
||||
.status-action image,
|
||||
|
||||
Reference in New Issue
Block a user