diff --git a/src/components/TabBar/index.vue b/src/components/TabBar/index.vue index 6e91521..29dd664 100644 --- a/src/components/TabBar/index.vue +++ b/src/components/TabBar/index.vue @@ -76,12 +76,12 @@ const state = reactive({ // path: "/pagesConfig/index", path: "/pagesHome/config", }, - { - text: "配置旧", - icon: "config.png", - activeIcon: "config_active.png", - path: "/pagesHome/index1", - }, + // { + // text: "配置旧", + // icon: "config.png", + // activeIcon: "config_active.png", + // path: "/pagesHome/index1", + // }, { text: "我的", icon: "profile.png", diff --git a/src/pagesConfig/components/avatar-input.vue b/src/pagesConfig/components/avatar-input.vue index edb1109..3166c04 100644 --- a/src/pagesConfig/components/avatar-input.vue +++ b/src/pagesConfig/components/avatar-input.vue @@ -3,7 +3,7 @@ @@ -31,7 +31,7 @@ const props = defineProps<{ }>(); const emit = defineEmits(["changeValue"]); const num = ref(props.value); -const handleInput = (event) => { +const handleInput = (event:any) => { const value = parseInt(event.target.value); if (!isNaN(value) && value >= 1) { num.value = value; @@ -59,7 +59,7 @@ const decrease = () => { align-items: center; justify-items: center; border: 1px solid rgba(0, 0, 0, 0.15); - padding: 0rpx 8rpx; + padding: 4px; border-radius: 5px; margin: 0rpx 16rpx; .uni-input { diff --git a/src/pagesConfig/otherConfig.vue b/src/pagesConfig/otherConfig.vue index e285a55..8270972 100644 --- a/src/pagesConfig/otherConfig.vue +++ b/src/pagesConfig/otherConfig.vue @@ -1,5 +1,5 @@