|
@@ -122,19 +122,17 @@
|
|
|
<el-button plain @click="cancel">取 消</el-button>
|
|
|
</el-row>
|
|
|
<!-- 应付账款信息 -->
|
|
|
- <el-dialog :title="payTitle" :visible.sync="open" width="1120px" append-to-body destroy-on-close>
|
|
|
+ <el-dialog class="zap-addcredit__dialog" :title="payTitle" :visible.sync="open" width="1120px" append-to-body destroy-on-close>
|
|
|
+ <search-bar :hiddenSetting="true" @query="handleQuerys" @reset="resetQuerys">
|
|
|
<el-form :model="queryParamsPay" ref="formQuery" :inline="true" label-width="68px" style="margin-bottom: -21px">
|
|
|
<el-form-item label="账款名称" prop="zbiName">
|
|
|
<el-input v-model="queryParamsPay.zbiName" placeholder="请输入账款名称" clearable maxlength="11" @keyup.enter.native="handleQuerys" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="应收企业" prop="receiveName">
|
|
|
+ <el-form-item label="应收企业" prop="receiveName" label-width="166px">
|
|
|
<el-input v-model="queryParamsPay.receiveName" placeholder="请输入应收企业" clearable maxlength="11" @keyup.enter.native="handleQuerys" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuerys">搜索</el-button>
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuerys">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
</el-form>
|
|
|
+ </search-bar>
|
|
|
<el-table
|
|
|
:data="payList"
|
|
|
ref="tablePay"
|
|
@@ -157,11 +155,10 @@
|
|
|
</el-table>
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParamsPay.pageNum" :limit.sync="queryParamsPay.pageSize" @pagination="getAccountsPay" />
|
|
|
|
|
|
- <span slot="footer" class="dialog-footer">
|
|
|
-
|
|
|
- <el-button size="mini" @click="cancelTicket">取消</el-button>
|
|
|
- <el-button size="mini" type="primary" @click="closeTicket">确认</el-button>
|
|
|
- </span>
|
|
|
+ <el-row class="mt32" slot="footer" type="flex" justify="center">
|
|
|
+ <el-button type="primary" @click="closeTicket">确定</el-button>
|
|
|
+ <el-button @click="cancelTicket">取消</el-button>
|
|
|
+ </el-row>
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 新增往来账款 -->
|
|
@@ -1240,3 +1237,16 @@ table th.star div::before {
|
|
|
padding-right: 0;
|
|
|
}
|
|
|
</style>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.zap-addcredit__dialog{
|
|
|
+ ::v-deep .el-dialog .el-dialog__body{
|
|
|
+ padding: 0 20px 20px;
|
|
|
+ }
|
|
|
+ ::v-deep .zap-search-bar{
|
|
|
+ padding-right: 0;
|
|
|
+ }
|
|
|
+ ::v-deep .zap-search-bar .zap-search-bar__control{
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|