|
|
@ -107,6 +107,17 @@
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-row style="display: inline-block">
|
|
|
|
|
|
|
|
<el-button round type="primary" @click="handleOneMonth"
|
|
|
|
|
|
|
|
>一个月内</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-button round type="primary" @click="handleHalfYear"
|
|
|
|
|
|
|
|
>半年内</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-button round type="primary" @click="handleOneYear"
|
|
|
|
|
|
|
|
>一年内</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 操作工具栏 -->
|
|
|
|
<!-- 操作工具栏 -->
|
|
|
@ -531,6 +542,7 @@ import {
|
|
|
|
getBankSlipPage,
|
|
|
|
getBankSlipPage,
|
|
|
|
exportBankSlipExcel,
|
|
|
|
exportBankSlipExcel,
|
|
|
|
downloadXml,
|
|
|
|
downloadXml,
|
|
|
|
|
|
|
|
getBankSlipPageTime,
|
|
|
|
} from "@/api/accounting/bankSlip";
|
|
|
|
} from "@/api/accounting/bankSlip";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
@ -604,6 +616,7 @@ export default {
|
|
|
|
form: {},
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
// 表单校验
|
|
|
|
rules: {},
|
|
|
|
rules: {},
|
|
|
|
|
|
|
|
time: "",
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
@ -620,6 +633,28 @@ export default {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
/** 查询列表2 */
|
|
|
|
|
|
|
|
getList2() {
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
|
// 执行查询
|
|
|
|
|
|
|
|
getBankSlipPageTime({ months: this.time }).then((response) => {
|
|
|
|
|
|
|
|
this.list = response.data.list;
|
|
|
|
|
|
|
|
this.total = response.data.total;
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleOneMonth() {
|
|
|
|
|
|
|
|
this.time = 1;
|
|
|
|
|
|
|
|
this.getList2();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleHalfYear() {
|
|
|
|
|
|
|
|
this.time = 6;
|
|
|
|
|
|
|
|
this.getList2();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleOneYear() {
|
|
|
|
|
|
|
|
this.time = 12;
|
|
|
|
|
|
|
|
this.getList2();
|
|
|
|
|
|
|
|
},
|
|
|
|
/** 取消按钮 */
|
|
|
|
/** 取消按钮 */
|
|
|
|
cancel() {
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.open = false;
|
|
|
|