Showing
1 changed file
with
19 additions
and
14 deletions
| ... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
| 46 | </el-col> | 46 | </el-col> |
| 47 | <el-col :span="6"> | 47 | <el-col :span="6"> |
| 48 | <el-form-item label="运单号"> | 48 | <el-form-item label="运单号"> |
| 49 | - <el-input class="formItem" type="textarea" placeholder="请输入运单号(回车分割)" :rows="1" :maxlength="12000" | 49 | + <el-input class="formItem" type="textarea" :rows="1" placeholder="请输入运单号(回车分割)" :maxlength="12000" |
| 50 | v-model="formData.waybillNo" clearable></el-input> | 50 | v-model="formData.waybillNo" clearable></el-input> |
| 51 | </el-form-item> | 51 | </el-form-item> |
| 52 | </el-col> | 52 | </el-col> |
| ... | @@ -83,13 +83,15 @@ | ... | @@ -83,13 +83,15 @@ |
| 83 | <el-col :span="6"> | 83 | <el-col :span="6"> |
| 84 | <el-form-item label="重量区间"> | 84 | <el-form-item label="重量区间"> |
| 85 | <el-row> | 85 | <el-row> |
| 86 | - <el-col :span="11"> | 86 | + <el-col :span="10"> |
| 87 | - <el-input-number class="formItem" size="mini" v-model="formData.minWeight" :controls="false" :min="0" | 87 | + <el-input-number class="formItem wid100" size="mini" v-model="formData.minWeight" :controls="false" |
| 88 | - :precision="2" clearable></el-input-number> | 88 | + :min="0" :precision="2" clearable></el-input-number> |
| 89 | </el-col> | 89 | </el-col> |
| 90 | + <el-col :span="1"></el-col> | ||
| 90 | <el-col class="line" :span="2">-</el-col> | 91 | <el-col class="line" :span="2">-</el-col> |
| 91 | - <el-col :span="11"> | 92 | + <el-col :span="1"></el-col> |
| 92 | - <el-input-number class="formItem" size="mini" v-model="formData.maxWeight" :controls="false" | 93 | + <el-col :span="10"> |
| 94 | + <el-input-number class="formItem wid100" size="mini" v-model="formData.maxWeight" :controls="false" | ||
| 93 | :min="formData.minWeight" :precision="2" clearable></el-input-number> | 95 | :min="formData.minWeight" :precision="2" clearable></el-input-number> |
| 94 | </el-col> | 96 | </el-col> |
| 95 | </el-row> | 97 | </el-row> |
| ... | @@ -98,13 +100,15 @@ | ... | @@ -98,13 +100,15 @@ |
| 98 | <el-col :span="6"> | 100 | <el-col :span="6"> |
| 99 | <el-form-item label="件数区间"> | 101 | <el-form-item label="件数区间"> |
| 100 | <el-row> | 102 | <el-row> |
| 101 | - <el-col :span="11"> | 103 | + <el-col :span="10"> |
| 102 | - <el-input-number class="formItem" size="mini" v-model="formData.minNumber" :controls="false" :min="0" | 104 | + <el-input-number class="formItem wid100" size="mini" v-model="formData.minNumber" :controls="false" |
| 103 | - clearable></el-input-number> | 105 | + :min="0" clearable></el-input-number> |
| 104 | </el-col> | 106 | </el-col> |
| 107 | + <el-col :span="1"></el-col> | ||
| 105 | <el-col class="line" :span="2">-</el-col> | 108 | <el-col class="line" :span="2">-</el-col> |
| 106 | - <el-col :span="11"> | 109 | + <el-col :span="1"></el-col> |
| 107 | - <el-input-number class="formItem" size="mini" v-model="formData.maxNumber" :controls="false" | 110 | + <el-col :span="10"> |
| 111 | + <el-input-number class="formItem wid100" size="mini" v-model="formData.maxNumber" :controls="false" | ||
| 108 | :min="formData.minNumber" clearable></el-input-number> | 112 | :min="formData.minNumber" clearable></el-input-number> |
| 109 | </el-col> | 113 | </el-col> |
| 110 | </el-row> | 114 | </el-row> |
| ... | @@ -161,9 +165,10 @@ | ... | @@ -161,9 +165,10 @@ |
| 161 | </div> | 165 | </div> |
| 162 | </el-form> | 166 | </el-form> |
| 163 | <Tables ref="newTables" ductName="cargo" :data="tableData" :headerData="tableHeader" :totalCount="totalCount" | 167 | <Tables ref="newTables" ductName="cargo" :data="tableData" :headerData="tableHeader" :totalCount="totalCount" |
| 164 | - :loading="loading" :selection="true" :limitSize="size" :limitStart="formData.limitStart" :page="page" | 168 | + :loading="loading" :selection="true" :order="true" :limitSize="size" :limitStart="formData.limitStart" |
| 165 | - :shiftKey="shiftKey" :height="tableHeight" :pageSizes="[100]" @sizeChange="sizeChange" @tableSelect="tableSelect" | 169 | + :page="page" :shiftKey="shiftKey" :height="tableHeight" :pageSizes="[100]" @sizeChange="sizeChange" |
| 166 | - @tableSelectAll="tableSelectAll" @currentChange="currentChange" @sortChange="sortChange"></Tables> | 170 | + @tableSelect="tableSelect" @tableSelectAll="tableSelectAll" @currentChange="currentChange" |
| 171 | + @sortChange="sortChange"></Tables> | ||
| 167 | <Dialog :tableData="tableSelection" :dialogVisible="dialogVisible" @dialogBeforeClose="dialogBeforeClose"></Dialog> | 172 | <Dialog :tableData="tableSelection" :dialogVisible="dialogVisible" @dialogBeforeClose="dialogBeforeClose"></Dialog> |
| 168 | </div> | 173 | </div> |
| 169 | </template> | 174 | </template> | ... | ... |
-
Please register or login to post a comment