修改部分

This commit is contained in:
gongjiale 2022-11-03 14:33:53 +08:00
parent 91b2f229ee
commit 7da4dc814a
2 changed files with 23 additions and 4 deletions

View File

@ -6,16 +6,31 @@
<script setup>
import { reactive, ref, watch, defineProps } from 'vue'
import { useRouter } from 'vue-router'
import { useStore } from 'vuex'
const store = useStore()
const router = useRouter()
console.log('router------------>', router)
const props = defineProps({
textColor: { type: String, default: '' },
})
const previousPage = () => {
window.history.go(-1)
// debugger
// let a =store.state.previousRouter
// if (store.state.previousRouter.name) {
// this.$router.push({name: this.$store.state.previousRouter.name});
// }
// // let val = router.go(-1)
window.history.go(-1)
}
// router.beforeEach((to, from, next) => {
// debugger
// // console.log('=========>', to, from, next)
// document.documentElement.scrollTop = 0
// document.body.scrollTop = 0
// next()
// })
</script>
<style scoped lang="less">

View File

@ -32,7 +32,7 @@
</div>
<div class="flex-row-center">
<div class="bg cjtd">
<a-image :preview="false" :src="bgImg" />
<img :preview="false" :src="bgImg" />
</div>
<div class="content" style="margin-left: 0.5rem">
@ -560,7 +560,11 @@
width: 5.75rem;
height: 3.4rem;
background: url('~@/assets/home/fn/cjtd.png') no-repeat;
background-size: 100%;
background-size: 100%;
}
.cjtd img{
width:100%;
height:100%
}
.content {