Commit f776106d authored by zhangderong's avatar zhangderong

修复标签切换时,页面抖动问题

parent 8a24eabc
<template> <template>
<div class="resumeDetail"> <div class="resumeDetail">
<div class="pdfShow" v-if="isShowPdf==true"> <div class="pdfShow" v-show="isShowPdf==true">
<div id="container" style="width:100%;height:100%" v-if="isShowPdf==true"></div> <div id="container" style="width:100%;height:100%;" v-if="isShowPdf==true"></div>
</div> </div>
<div class="resumeDetail-left" v-if="isShowPdf==false"> <div class="resumeDetail-left" v-if="isShowPdf==false">
<div class="personalInformation" v-show="JSON.stringify(resume)!=='{}'"> <div class="personalInformation" v-show="JSON.stringify(resume)!=='{}'">
...@@ -998,7 +998,7 @@ export default { ...@@ -998,7 +998,7 @@ export default {
</script> </script>
<style scoped> <style scoped>
.resumeDetail{ .resumeDetail{
width: 1100px; width: 1150px;
margin: 30px auto; margin: 30px auto;
color: #000000; color: #000000;
font-family: "\5FAE\8F6F\96C5\9ED1"; font-family: "\5FAE\8F6F\96C5\9ED1";
...@@ -1006,14 +1006,13 @@ export default { ...@@ -1006,14 +1006,13 @@ export default {
.resumeDetail-left{ .resumeDetail-left{
float: left; float: left;
width:860px; width:860px;
min-height: 200px min-height: 200px;
/* border: 1px solid #999 */ /* border: 1px solid #999 */
} }
.pdfShow{ .pdfShow{
float: left; float: left;
width:860px; width:900px;
min-height: 200px; min-height: 1200px;
/* border: 1px solid black */
} }
.pic img{ .pic img{
width: 60px; width: 60px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment