|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<div class="allocateBillEdit-wrap">
|
|
<div class="allocateBillEdit-wrap">
|
|
- <div class="ant-spin-nested-loading">
|
|
|
|
|
|
+ <a-spin :spinning="spinning" tip="Loading...">
|
|
<a-page-header :ghost="false" :backIcon="false" class="allocateBillEdit-back" >
|
|
<a-page-header :ghost="false" :backIcon="false" class="allocateBillEdit-back" >
|
|
<!-- 自定义的二级文字标题 -->
|
|
<!-- 自定义的二级文字标题 -->
|
|
<template slot="subTitle">
|
|
<template slot="subTitle">
|
|
@@ -108,7 +108,7 @@
|
|
</div>
|
|
</div>
|
|
</a-card>
|
|
</a-card>
|
|
<!-- 选择产品 -->
|
|
<!-- 选择产品 -->
|
|
- <a-card size="small" title="选择产品" :bordered="false" class="allocateBillEdit-cont">
|
|
|
|
|
|
+ <a-card size="small" :bordered="false" class="allocateBillEdit-cont">
|
|
<!-- 筛选条件 -->
|
|
<!-- 筛选条件 -->
|
|
<div class="table-page-search-wrapper">
|
|
<div class="table-page-search-wrapper">
|
|
<a-form layout="inline" id="allocateBillDetail-form" @keyup.enter.native="$refs.table.refresh(true)">
|
|
<a-form layout="inline" id="allocateBillDetail-form" @keyup.enter.native="$refs.table.refresh(true)">
|
|
@@ -327,18 +327,17 @@
|
|
</template>
|
|
</template>
|
|
</s-table>
|
|
</s-table>
|
|
</a-card>
|
|
</a-card>
|
|
- </div>
|
|
|
|
- <div class="affix-cont" v-if="basicInfoData">
|
|
|
|
- <a-button
|
|
|
|
- type="primary"
|
|
|
|
- id="allocateBillEdit-submit"
|
|
|
|
- size="large"
|
|
|
|
- :loading="spinning"
|
|
|
|
- class="button-primary"
|
|
|
|
- @click="handleOpen"
|
|
|
|
- style="padding: 0 60px;">提交</a-button>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
|
|
+ <div class="affix-cont" v-if="basicInfoData">
|
|
|
|
+ <a-button
|
|
|
|
+ type="primary"
|
|
|
|
+ id="allocateBillEdit-submit"
|
|
|
|
+ size="large"
|
|
|
|
+ :loading="spinning"
|
|
|
|
+ class="button-primary"
|
|
|
|
+ @click="handleOpen"
|
|
|
|
+ style="padding: 0 60px;">提交</a-button>
|
|
|
|
+ </div>
|
|
|
|
+ </a-spin>
|
|
<!-- 导入产品 -->
|
|
<!-- 导入产品 -->
|
|
<importGuideModal :openModal="openGuideModal" :params="{allocateSn: $route.params.sn}" @close="openGuideModal=false" @ok="handleGuideOk" />
|
|
<importGuideModal :openModal="openGuideModal" :params="{allocateSn: $route.params.sn}" @close="openGuideModal=false" @ok="handleGuideOk" />
|
|
<!-- 打印导出 -->
|
|
<!-- 打印导出 -->
|
|
@@ -896,10 +895,13 @@ export default {
|
|
height: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
> .ant-spin-nested-loading {
|
|
> .ant-spin-nested-loading {
|
|
- position: relative;
|
|
|
|
height: 100%;
|
|
height: 100%;
|
|
- overflow: auto;
|
|
|
|
- padding-bottom: 50px;
|
|
|
|
|
|
+ > .ant-spin-container{
|
|
|
|
+ position: relative;
|
|
|
|
+ height: 100%;
|
|
|
|
+ overflow: auto;
|
|
|
|
+ padding-bottom: 60px;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.allocateBillEdit-back{
|
|
.allocateBillEdit-back{
|
|
margin-bottom: 6px;
|
|
margin-bottom: 6px;
|
|
@@ -925,5 +927,8 @@ export default {
|
|
margin-left: 15px;
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .affix-cont{
|
|
|
|
+ position: fixed;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|