Compare commits

..

No commits in common. "1cc5f6bb0a2ef8a22699fc6b63bf549f1fc09520" and "c0a4e5ba429698c01bcb560df7b2b12b83dd2a94" have entirely different histories.

2 changed files with 6 additions and 5 deletions

View File

@ -14,7 +14,7 @@ import Main from './component/Main';
.basic-layout { .basic-layout {
width: 100%; width: 100%;
min-width: 1200px; min-width: 1200px;
height: fit-content; height: 100%;
&-container { &-container {
position: relative; position: relative;
margin-left: 210px; margin-left: 210px;

View File

@ -85,8 +85,8 @@
</div> </div>
<div style="display: flex; justify-content: flex-start; text-align: left; margin-top: 20px"> <div style="display: flex; justify-content: flex-start; text-align: left; margin-top: 20px">
<div class="inputs" style="width: 100%"> <div class="inputs" style="width: 100%">
<span class="labels" style="padding-right: 12px">收货地址</span> <span class="labels" style="width: 14%">收货地址</span>
<el-input v-model="formData.address" maxlength="30" style="width: 87%" placeholder="请输入" show-word-limit type="textarea" /> <el-input v-model="formData.address" maxlength="30" style="width: 100%" placeholder="请输入" show-word-limit type="textarea" />
</div> </div>
</div> </div>
</el-form> </el-form>
@ -193,7 +193,7 @@ defineExpose({
.unit::after { .unit::after {
content: 'kg'; content: 'kg';
position: absolute; position: absolute;
right: 65px; /* 调整单位与输入框的距离 */ right: 10px; /* 调整单位与输入框的距离 */
color: #000; /* 单位颜色 */ color: #000; /* 单位颜色 */
pointer-events: none; /* 防止单位遮挡输入框 */ pointer-events: none; /* 防止单位遮挡输入框 */
} }
@ -207,7 +207,8 @@ defineExpose({
display: flex; display: flex;
align-items: center; align-items: center;
.labels { .labels {
padding-right: 12px; width: 25%;
margin-right: 10px;
} }
input { input {
width: calc(74% - 20px); width: calc(74% - 20px);