Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-05-30 17:19:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ad5086ee2de1842b140dddb454ff0c4159dcd15b
ad5086ee
1 parent
627ee527
样式更新
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
14 deletions
src/views/allocationConfig/cargoAllocation/index.vue
src/views/allocationConfig/cargoAllocation/index.vue
View file @
ad5086e
...
...
@@ -46,7 +46,7 @@
</el-col>
<el-col :span="6">
<el-form-item label="运单号">
<el-input class="formItem" type="textarea"
placeholder="请输入运单号(回车分割)" :rows="1
" :maxlength="12000"
<el-input class="formItem" type="textarea"
:rows="1" placeholder="请输入运单号(回车分割)
" :maxlength="12000"
v-model="formData.waybillNo" clearable></el-input>
</el-form-item>
</el-col>
...
...
@@ -83,13 +83,15 @@
<el-col :span="6">
<el-form-item label="重量区间">
<el-row>
<el-col :span="1
1
">
<el-input-number class="formItem
" size="mini" v-model="formData.minWeight" :controls="false" :min="0
"
:precision="2" clearable></el-input-number>
<el-col :span="1
0
">
<el-input-number class="formItem
wid100" size="mini" v-model="formData.minWeight" :controls="false
"
:
min="0" :
precision="2" clearable></el-input-number>
</el-col>
<el-col :span="1"></el-col>
<el-col class="line" :span="2">-</el-col>
<el-col :span="11">
<el-input-number class="formItem" size="mini" v-model="formData.maxWeight" :controls="false"
<el-col :span="1"></el-col>
<el-col :span="10">
<el-input-number class="formItem wid100" size="mini" v-model="formData.maxWeight" :controls="false"
:min="formData.minWeight" :precision="2" clearable></el-input-number>
</el-col>
</el-row>
...
...
@@ -98,13 +100,15 @@
<el-col :span="6">
<el-form-item label="件数区间">
<el-row>
<el-col :span="1
1
">
<el-input-number class="formItem
" size="mini" v-model="formData.minNumber" :controls="false" :min="0
"
clearable></el-input-number>
<el-col :span="1
0
">
<el-input-number class="formItem
wid100" size="mini" v-model="formData.minNumber" :controls="false
"
:min="0"
clearable></el-input-number>
</el-col>
<el-col :span="1"></el-col>
<el-col class="line" :span="2">-</el-col>
<el-col :span="11">
<el-input-number class="formItem" size="mini" v-model="formData.maxNumber" :controls="false"
<el-col :span="1"></el-col>
<el-col :span="10">
<el-input-number class="formItem wid100" size="mini" v-model="formData.maxNumber" :controls="false"
:min="formData.minNumber" clearable></el-input-number>
</el-col>
</el-row>
...
...
@@ -161,9 +165,10 @@
</div>
</el-form>
<Tables ref="newTables" ductName="cargo" :data="tableData" :headerData="tableHeader" :totalCount="totalCount"
:loading="loading" :selection="true" :limitSize="size" :limitStart="formData.limitStart" :page="page"
:shiftKey="shiftKey" :height="tableHeight" :pageSizes="[100]" @sizeChange="sizeChange" @tableSelect="tableSelect"
@tableSelectAll="tableSelectAll" @currentChange="currentChange" @sortChange="sortChange"></Tables>
:loading="loading" :selection="true" :order="true" :limitSize="size" :limitStart="formData.limitStart"
:page="page" :shiftKey="shiftKey" :height="tableHeight" :pageSizes="[100]" @sizeChange="sizeChange"
@tableSelect="tableSelect" @tableSelectAll="tableSelectAll" @currentChange="currentChange"
@sortChange="sortChange"></Tables>
<Dialog :tableData="tableSelection" :dialogVisible="dialogVisible" @dialogBeforeClose="dialogBeforeClose"></Dialog>
</div>
</template>
...
...
Please
register
or
login
to post a comment