Commit 37f9880e authored by 郭志伟's avatar 郭志伟

fix: 文案调整

parent 897b9a08
This diff is collapsed.
......@@ -91,7 +91,7 @@ export default {
}
&-head {
position: absolute;
top: 0;
top: -1px;
left: 0;
width: 100%;
}
......
......@@ -12,7 +12,7 @@
{{ item.url }}
</a>
</card>
<protocol-iframe v-model="popupShow" :title="pupopData.title" :content="pupopData.list" />
<protocol-iframe v-model="popupShow" :title="pupopData.title" :url="pupopData.path" />
</div>
</template>
<script>
......@@ -36,10 +36,10 @@ export default {
computed: {
pupopData() {
const { detail, currentPupopIndex } = this;
const { title, list } = detail[currentPupopIndex] || { title: "", list: "" };
const { title, path } = detail[currentPupopIndex] || { title: "", path: "" };
return {
title: title.substring(0, title.length - 3),
list
path
};
}
},
......
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