|
@@ -2,8 +2,8 @@
|
|
<template>
|
|
<template>
|
|
<div class="addInwardPlan">
|
|
<div class="addInwardPlan">
|
|
<page-title>新增计划</page-title>
|
|
<page-title>新增计划</page-title>
|
|
-<div class="form-box">
|
|
|
|
-<el-form class="demo-form-inline" label-width="80px" label-position="left">
|
|
|
|
|
|
+ <div class="carrier form">
|
|
|
|
+ <el-form class="demo-form-inline" label-width="80px" label-position="left">
|
|
<el-form-item label="承运商">
|
|
<el-form-item label="承运商">
|
|
<el-autocomplete
|
|
<el-autocomplete
|
|
class="inline-input"
|
|
class="inline-input"
|
|
@@ -19,11 +19,13 @@
|
|
</template>
|
|
</template>
|
|
</el-autocomplete>
|
|
</el-autocomplete>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form class="demo-form-inline" label-width="80px" label-position="left">
|
|
|
|
- <el-form-item label="车数">
|
|
|
|
|
|
+ <div class="truckNum">
|
|
|
|
+ <el-form class="demo-form-inline" label-width="80px" label-position="left">
|
|
|
|
+ <el-form-item label="车数">
|
|
<el-input v-model="planTruckNumber" placeholder="必填" class="input"></el-input>
|
|
<el-input v-model="planTruckNumber" placeholder="必填" class="input"></el-input>
|
|
- </el-form-item>
|
|
|
|
|
|
+ </el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
|
|
+ </div>
|
|
</el-form>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
<template>
|
|
<template>
|
|
@@ -139,11 +141,11 @@ export default {
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.addInwardPlan{
|
|
.addInwardPlan{
|
|
-.form-box{
|
|
|
|
|
|
+.carrier{
|
|
display: inline-block !important;
|
|
display: inline-block !important;
|
|
margin-left: 38%;
|
|
margin-left: 38%;
|
|
.el-input{
|
|
.el-input{
|
|
- width:288px
|
|
|
|
|
|
+ width:250px
|
|
}
|
|
}
|
|
.input{
|
|
.input{
|
|
margin-left: -10px;
|
|
margin-left: -10px;
|
|
@@ -152,8 +154,15 @@ export default {
|
|
padding: 10px;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+.truckNum {
|
|
|
|
+ .el-input{
|
|
|
|
+ width: 250px;
|
|
|
|
+ }
|
|
|
|
+}
|
|
.button-box
|
|
.button-box
|
|
{
|
|
{
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
margin-left: 25px !important;
|
|
margin-left: 25px !important;
|
|
}
|
|
}
|
|
}
|
|
}
|