Compare commits

..

No commits in common. '2cd3d955ea79a2acab26dacdfe7d4ae86f1428a2' and '3274ce07043cbbe1df3b4a9cd92f94e9c9b64752' have entirely different histories.

@ -90,7 +90,6 @@ export default {
halfChecked: [], halfChecked: [],
}, },
selectedKeys: [], selectedKeys: [],
activeKeys: [],
menus: [], // menus: [], //
actionsList: [], // actionsList: [], //
actions: { actions: {
@ -217,9 +216,7 @@ export default {
this.expandedKeys = e; this.expandedKeys = e;
}, },
onSelect(selectedKeys, info) { onSelect(selectedKeys, info) {
if(selectedKeys.length != 0) {
this.selectedKeys = selectedKeys; this.selectedKeys = selectedKeys;
}
getActions({ roleId: this.roleId, menusId: this.selectedKeys[0] }).then( getActions({ roleId: this.roleId, menusId: this.selectedKeys[0] }).then(
(res) => { (res) => {
this.actionsList = res.data; this.actionsList = res.data;

@ -30,13 +30,11 @@
</a-col> </a-col>
<a-col :span="8" v-if="form.identity == 1"> <a-col :span="8" v-if="form.identity == 1">
<a-form-model-item label="选择房屋" prop="estateId" :rules="[{ required: true, message: '请选择房屋' }]"> <a-form-model-item label="选择房屋" prop="estateId" :rules="[{ required: true, message: '请选择房屋' }]">
<!-- <a-select v-model="form.estateId" placeholder="请选择房屋" @change="getAppName"> <a-select v-model="form.estateId" placeholder="请选择房屋" @change="getAppName">
<a-select-option v-for="(item, index) in options.estateId" :key="index" :value="item.id"> <a-select-option v-for="(item, index) in options.estateId" :key="index" :value="item.id">
{{item.name}} {{item.name}}
</a-select-option> </a-select-option>
</a-select> --> </a-select>
<a-cascader v-model="casVal" @change="chooseHouse" :field-names="{label: 'name', value: 'id', children: 'childList' }" :options="options.estateId" placeholder="请选择房屋">
</a-cascader>
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
<a-col :span="8" v-else> <a-col :span="8" v-else>
@ -146,7 +144,6 @@ export default {
options, options,
applicantIds: [], applicantIds: [],
departmentIds: [], departmentIds: [],
casVal:[]
}; };
}, },
props: { props: {
@ -224,7 +221,7 @@ export default {
}, },
// //
getAppName(val) { getAppName(val) {
this.form.applicantId = undefined; form.applicantId = undefined;
findTenantByEstateId({estateId: val}).then(res => { findTenantByEstateId({estateId: val}).then(res => {
let data = res.data; let data = res.data;
this.applicantIds = data; this.applicantIds = data;
@ -236,12 +233,6 @@ export default {
let data = res.data.rows; let data = res.data.rows;
this.departmentIds = data this.departmentIds = data
}) })
},
//
chooseHouse(val) {
let v = val;
let index = val.length
this.form.estateId = v[index-1]
} }
}, },
watch: { watch: {

@ -1,7 +1,6 @@
import {houseList} from "@/api/basic/estate"; import {houseList} from "@/api/basic/estate";
import {departmentList} from "@/api/basic/department" import {departmentList} from "@/api/basic/department"
import {getAllWorkOrderType} from "@/api/basic/Workorder" import {getAllWorkOrderType} from "@/api/basic/Workorder"
import {findEstateCascade} from "@/api/basic/estate"
let applicantIds = [] let applicantIds = []
let estateIds = [] let estateIds = []
@ -36,21 +35,14 @@ departmentList().then(res => {
}); });
}) })
// houseList({pageNum: 1,size: 100000}).then(res => { houseList({pageNum: 1,size: 100000}).then(res => {
// let data = res.data.rows; let data = res.data.rows;
// data.forEach(ele => {
// let obj = {
// id: ele.id,
// name: ele.manageUnitName+'/'+ele.floorLocation+'楼/'+ele.name
// };
// estateIds.push(obj);
// })
// })
findEstateCascade().then(res => {
let data = res.data;
data.forEach(ele => { data.forEach(ele => {
estateIds.push(ele); let obj = {
id: ele.id,
name: ele.manageUnitName+'/'+ele.floorLocation+'楼/'+ele.name
};
estateIds.push(obj);
}) })
}) })

@ -2,9 +2,9 @@ export const formItem = [
{ {
type: 'select', type: 'select',
label:'账单类型', label:'账单类型',
prop:'type', prop:'',
option:[{ id:1,name:'手动生成'},{ id:2,name:'自动生成'}], option:[{ id:1,name:'手动生成'},{ id:2,name:'自动生成'}],
placeholder:'请选择账单类型' placeholder:'请选择'
}, },
] ]
export const columns = [ export const columns = [

@ -1,34 +1,7 @@
<template> <template>
<div> <div>
<div class="cardTitle">账单明细</div> <div class="cardTitle">账单明细</div>
<div class="search-form"> <searchForm :formItem="formItem" @getSearch="search($event)"></searchForm>
<a-form-model style="margin-left: 32px" layout='inline'>
<a-form-model-item label="流水号">
<a-select style="width: 150px" v-model="form.type" placeholder="请选择">
<a-select-option :value="1">
手动生成
</a-select-option>
<a-select-option :value="2">
自动生成
</a-select-option>
</a-select>
</a-form-model-item>
<a-form-model-item style="margin-left: 32px" label="关联房屋" >
<a-cascader v-model="casVal" @change="chooseHouse" :field-names="{label: 'name', value: 'id', children: 'childList' }" :options="houseInfo" style="width: 200px" placeholder="请选择">
</a-cascader>
</a-form-model-item>
<a-form-model-item style="margin-left: 32px" label="收费标准">
<a-select v-model="chargesVal" style="width: 150px" @change="chargeChoose">
<a-select-option v-for="(item) in chargeInfo" :key="item.id" :value="item.id">
{{item.name}}
</a-select-option>
</a-select>
</a-form-model-item>
</a-form-model>
<div class="btn-box"><a-button type="primary" @click="search"> </a-button>
<a-button style="margin-left: 10px" @click="resetForm"> </a-button></div>
</div>
<!-- <searchForm :formItem="formItem" @getSearch="search($event)"></searchForm> -->
<a-table :columns="columns" :data-source="tableData" :pagination="pagination" :scroll="{x: 1900}" @change="handlerPage"> <a-table :columns="columns" :data-source="tableData" :pagination="pagination" :scroll="{x: 1900}" @change="handlerPage">
<template slot="unitName" slot-scope="text, record"> <template slot="unitName" slot-scope="text, record">
{{record.buildingName}}/{{record.unitName}}/{{record.estateName}} {{record.buildingName}}/{{record.unitName}}/{{record.estateName}}
@ -112,8 +85,7 @@
<script> <script>
import { formItem, columns, pagination } from "./depend/config" import { formItem, columns, pagination } from "./depend/config"
import { getBillList, abolition, recover, findBillOrderList, offlinePayments } from "@/api/payment/billManagement" import { getBillList, abolition, recover, findBillOrderList, offlinePayments } from "@/api/payment/billManagement"
import {findEstateCascade} from "@/api/basic/estate"
import {chargesList} from "@/api/payment/chargeStandardManage"
export default { export default {
name: 'payInfo', name: 'payInfo',
data() { data() {
@ -121,11 +93,8 @@ export default {
form: { form: {
type: undefined, type: undefined,
estateId: undefined, estateId: undefined,
chargesIds: [] chargesIds: undefined
}, },
casVal: [],
chargesVal: undefined,
/////
tableData:[], tableData:[],
formItem, formItem,
columns, columns,
@ -176,27 +145,12 @@ export default {
offDetail: {}, offDetail: {},
// //
paymentShow: false, paymentShow: false,
//
houseInfo: [],
//
chargeInfo: []
} }
}, },
mounted() { mounted() {
this.getApi()
this.getData() this.getData()
}, },
methods: { methods: {
getApi() {
findEstateCascade().then(res => {
let data = res.data;
this.houseInfo = data;
})
chargesList({pageNum:1,size:1000}).then(res => {
let data = res.data;
this.chargeInfo = data.rows
})
},
getData() { getData() {
let obj = Object.assign({pageNum: this.pagination.current, size: this.pagination.pageSize},this.form) let obj = Object.assign({pageNum: this.pagination.current, size: this.pagination.pageSize},this.form)
getBillList(obj).then(res => { getBillList(obj).then(res => {
@ -205,27 +159,10 @@ export default {
this.pagination.total = data.total this.pagination.total = data.total
}) })
}, },
search() { search(data) {
this.form = data;
this.getData() this.getData()
}, },
resetForm() {
this.form = {
type: undefined,
estateId: undefined,
chargesIds: undefined
};
this.casVal = [];
this.chargesVal = undefined;
this.getData();
},
chooseHouse(val) {
let v = val;
let index = val.length
this.form.estateId = v[index-1]
},
chargeChoose(val) {
this.form.chargesIds = [val]
},
handlerPage(val) { handlerPage(val) {
this.pagination.current = val.current; this.pagination.current = val.current;
this.pagination.pageSize = val.pageSize; this.pagination.pageSize = val.pageSize;
@ -311,15 +248,6 @@ export default {
</script> </script>
<style lang="less"> <style lang="less">
.search-form {
text-align: left;
background: #f9f9f9;
padding-top: 25px;
padding-bottom: 1px;
}
.btn-box{
margin:10px 0 15px 100px;
}
.billTitle { .billTitle {
font-family: 'PingFang SC'; font-family: 'PingFang SC';
font-style: normal; font-style: normal;

@ -19,6 +19,10 @@
:data-source="tableData" :data-source="tableData"
:pagination="pagination" :pagination="pagination"
@change="handleTableChange" @change="handleTableChange"
:row-selection="{
selectedRowKeys: selectedRowKeys,
onChange: selectionChoosed,
}"
:row-key=" :row-key="
(record, index) => { (record, index) => {
return record.id; return record.id;

Binary file not shown.
Loading…
Cancel
Save