no message

This commit is contained in:
A1300399510 2024-11-18 17:25:58 +08:00
parent a94abe2b92
commit 1748828083
3 changed files with 23 additions and 20 deletions

View File

@ -707,7 +707,14 @@ body {
width: 16px;
height: 16px;
}
.my-project .my-box .manage-box .list .item .bottom .input {
.my-project .my-box .manage-box .list .item .bottom .drag-icon {
width: 16px;
height: 16px;
margin-top: 6px;
cursor: pointer;
-webkit-user-drag: none;
}
.manage-input {
padding-top: 4px;
border: none;
outline: none;
@ -717,13 +724,7 @@ body {
height: 34px;
padding-right: 10px;
font-size: 14px;
}
.my-project .my-box .manage-box .list .item .bottom .drag-icon {
width: 16px;
height: 16px;
margin-top: 6px;
cursor: pointer;
-webkit-user-drag: none;
width: 384px;
}
.empty-box {
flex-direction: column;

View File

@ -798,17 +798,6 @@ body {
height: 16px;
}
}
.input {
padding-top: 4px;
border: none;
outline: none;
background-color: transparent;
resize: none;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
height: 34px;
padding-right: 10px;
font-size: 14px;
}
.drag-icon {
width: 16px;
@ -824,6 +813,19 @@ body {
}
}
.manage-input {
padding-top: 4px;
border: none;
outline: none;
background-color: transparent;
resize: none;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
height: 34px;
padding-right: 10px;
font-size: 14px;
width: 384px;
}
.empty-box {
flex-direction: column;

View File

@ -336,7 +336,7 @@
<div class="edit flexcenter">
<img class="icon" src="/img/u1434.png" />
</div>
<textarea class="input flex1" :style="{height: item.inputHeight}" v-model="item.remarks" placeholder="添加备注…" maxlength="100" @blur="inputblur(index)" @input="inputInput(index)"></textarea>
<textarea class="manage-input flex1" :style="{height: item.inputHeight}" v-model="item.remarks" placeholder="添加备注…" maxlength="100" @blur="inputblur(index)" @input="inputInput(index)"></textarea>
<img class="drag-icon" src="/img/drag-icon.png" @mousedown="startDrag(index)" />
</div>
</div>