Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2022-05-13 18:55:42 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7c0897b108d04dc2c2e4266b62b219363815bb65
7c0897b1
1 parent
34c9afbc
fix
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
15 deletions
src/views/client/bookDetail.vue
src/views/client/chooseBook.vue
src/views/client/finishUpload.vue
src/views/client/bookDetail.vue
View file @
7c0897b
...
...
@@ -122,7 +122,7 @@ import icon_unsubscribe from '@images/icon-dingyue02@2x.png'
import ShortcutFixed from '@/components/ShortcutFixed/index.vue'
import tools from '@/common/tool'
import { ref,
reactive, onMounted, nextTick, onActivated, triggerRef
} from 'vue'
import { ref,
nextTick, onActivated
} from 'vue'
import { useRoute, useRouter, onBeforeRouteLeave } from 'vue-router'
import axios from '@/utils/axios';
import $ from 'jquery'
...
...
src/views/client/chooseBook.vue
View file @
7c0897b
...
...
@@ -3,11 +3,17 @@
<div class="modify-top"></div>
<div class="belong-school">
<template v-if="kg_id">
<van-image round width="2rem" height="2rem" lazy-load :src="kgInfo.logo"
style="vertical-align: text-bottom;">
<template v-slot:error>加载失败</template>
</van-image>
<p class="title">{{ kgInfo.name }}</p>
<van-row align="center" justify="center" style="position: relative; top: 50%; transform: translateY(-50%);">
<van-col span="2">
<van-image round width="2rem" height="2rem" lazy-load :src="kgInfo.logo"
style="vertical-align: text-bottom;">
<template v-slot:error>加载失败</template>
</van-image>
</van-col>
<van-col span="22">
<p class="title">{{ kgInfo.name }}</p>
</van-col>
</van-row>
</template>
</div>
<div style="position: relative;">
...
...
@@ -139,7 +145,7 @@ export default {
.choose-book-page {
.belong-school {
padding: 1.5rem;
height: 3rem;
.title {
color: #222222;
display: inline-block;
...
...
src/views/client/finishUpload.vue
View file @
7c0897b
...
...
@@ -29,10 +29,8 @@ import DonateBook from '@/components/DonateBook/index.vue'
import { useDefaultPerf } from '@/composables/useDefaultPerf.js'
import { ref
, reactive, onMounted
} from 'vue'
import { ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import axios from '@/utils/axios';
import $ from 'jquery'
import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
...
...
@@ -66,11 +64,6 @@ const goBack = () => {
}
})
}
onMounted(() => {
})
</script>
<script>
...
...
Please
register
or
login
to post a comment