Skip to content

Commit

Permalink
fix search
Browse files Browse the repository at this point in the history
  • Loading branch information
Keywos committed Mar 21, 2024
1 parent 273fd9a commit 269aef7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-store-front-end",
"version": "2.14.204",
"version": "2.14.205",
"private": true,
"scripts": {
"dev": "vite --host",
Expand Down
4 changes: 2 additions & 2 deletions src/views/SubEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
全屏编辑
<!-- 测试 后续再改效果 -->
</button>
<div style="margin-left: -15px; margin-right: -15px">
<div style="margin-left: -15px; margin-right: -15px;height: 60vh;overflow: auto;">
<cmView :isReadOnly="false" id="SubEditer"/>
</div>
</nut-form-item>
Expand Down Expand Up @@ -300,7 +300,7 @@
</nut-button>
</div>
</div>
<div v-else style="width: 100%">
<div v-else style="width: 100%;height: 95vh;">
<button class="cimg-button" @click="isDis = true">
<img src="" />
取消全屏
Expand Down
2 changes: 1 addition & 1 deletion src/views/editCode/cmView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ input[type="checkbox"]:checked {
}
.cm-panels.cm-panels-bottom {
background: transparent;
background: var(--card-color) !important;
box-shadow: 0 0 6px #919db687;
}
Expand Down
8 changes: 6 additions & 2 deletions src/views/editor/components/Script.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@

<div
v-if="value.mode === 'script'"
style="margin-left: -16px; margin-right: -16px"
style="
margin-left: -16px;
margin-right: -16px;
height: 80vh;
overflow: auto;
"
>
<!-- <div class="input-wrapper"> -->
<!-- <nut-textarea
Expand Down Expand Up @@ -245,7 +250,6 @@ watch(
// cmStore.setEditCode(id,value.code ? value.code : placeholders);
// router.push(`/edit/Script/${id}`);
// };
</script>

<style lang="scss" scoped>
Expand Down

0 comments on commit 269aef7

Please sign in to comment.