1
李凌
2025-10-09 c17311ba1351cd5e64654c3fc7b2fe765b1e7382
src/components/normal-head/index.vue
@@ -1,10 +1,6 @@
<template>
  <div id="normalHead">
    <van-nav-bar
        :border="false"
        :title="title"
        left-arrow
        @click-left="onClickLeft">
    <van-nav-bar :border="false" :title="title" left-arrow @click-left="onClickLeft">
      <template #right>
        <slot></slot>
      </template>
@@ -22,7 +18,7 @@
        this.$router.push('/');
      } else if (this.goAssetsCenter) {
        this.$router.push('/assetsCenter/assets');
      }else if (this.goPerpetualContract){
      } else if (this.goPerpetualContract) {
        this.$router.go(-2);
      } else if (this.backFunc) {
        this.backFunc()
@@ -35,7 +31,9 @@
</script>
<style lang="scss" scoped>
::v-deep .van-nav-bar__title{
  color: #333;
::v-deep .van-nav-bar__title {
  @include themify() {
    color: themed("textColor");
  }
}
</style>