1
YM
2024-06-06 dd1b7a58b7ffc2153b284a7bfb8f568a2e2050f4
1
3个文件已修改
44 ■■■■ 已修改文件
src/pages/changePassword/changePassword.vue 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/character/detail.vue 32 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/static/initialize.css 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/changePassword/changePassword.vue
@@ -30,21 +30,24 @@
            justify-content: space-between;
            margin-bottom: 0.47rem;
            align-items: center;
            padding-top: 0.6rem;
          "
        >
          <!-- <view  style="color: #244A7B;padding-bottom: .47rem;font-size: .3rem;font-weight: bold;">用户注册</view> -->
          <view class="LoginBg"></view>
          <view
            @click="BacktoLogin"
            style="
              cursor: pointer;
              font-size: 0.14rem;
              color: #244a7b;
              font-weight: normal;
              position: absolute;
              left: 0.1rem;
              top: 0.1rem;
            "
          >
            返回
            < 返回
          </view>
        </view>
        <el-form
src/pages/character/detail.vue
@@ -290,11 +290,16 @@
              <span>相关附表/图像</span>
            </div>
            <view>
              <div class="flex">
              <div style="overflow: auto">
                <el-image
                  v-for="item in imageList"
                  :key="item"
                  style="width: 2.05rem; height: 2.4rem"
                  style="
                    width: 2.05rem;
                    height: 2.4rem;
                    margin-right: 0.2rem;
                    margin-bottom: 0.1rem;
                  "
                  :src="item"
                  fit="fill"
                ></el-image>
@@ -318,7 +323,7 @@
            >
              <span>现代研究</span>
            </div>
            <ul class="font-family" style="font-size: 0.13rem; line-height: 2">
            <ul class="fileul" style="font-size: 0.13rem; line-height: 2">
              <li
                style="cursor: pointer"
                v-for="(item, index) in personResearchList"
@@ -698,7 +703,11 @@
        this.biogData = res.list.map((item) => {
          return {
            content: item.content1,
            bookName: "《" + item.bookName + "》 " + "P " + item.pageNo // 这里只有bookid无法匹配到书名
            bookName:
              "《" +
              item.bookName +
              "》 " +
              (item.pageNo ? "P " + item.pageNo : "") // 这里只有bookid无法匹配到书名
          };
        });
      });
@@ -719,10 +728,10 @@
      });
    },
    getRelationship() {
      getRelationTypeTreeList().then(res=>{
        console.log(res,"getRelationTypeTreeList");
      getRelationTypeTreeList().then((res) => {
        console.log(res, "getRelationTypeTreeList");
        console.log(res);
      })
      });
      // getPersonRelationAtSchool({
      //   personId: this.detailId,
      // }).then((res) => {
@@ -740,8 +749,8 @@
        id: this.detailId,
        type: "PERSON_RELATIONS"
      }).then((res) => {
        this.tableData4
        console.log(res,"PERSON_RELATIONS");
        this.tableData4;
        console.log(res, "PERSON_RELATIONS");
      });
      // 社会关系
      getPersonRelationAtSchool({
@@ -837,6 +846,7 @@
          });
          this.markerList = data;
          // 时空地图
          // 这里只取了第一条,需要全部数据
          this.initMap(data[0]);
        }
@@ -1512,4 +1522,8 @@
    opacity: 0;
  }
}
.fileul li:hover {
  color: #597aa5;
}
</style>
src/static/initialize.css
@@ -127,3 +127,8 @@
  position: relative;
  z-index: 9999 !important;
}
.el-dropdown-menu{
  z-index: 999999999 !important;
}