MicroCommunityWeb/public/components/property/prestoreAccount/prestoreAccount.js
2021-06-17 00:21:02 +08:00

128 lines
4.3 KiB
JavaScript

(function (vc) {
vc.extends({
data: {
prestoreAccountInfo: {
tel: '',
ownerId: '',
owners: [],
amount: '',
remark: ''
}
},
_initMethod: function () {
},
_initEvent: function () {
vc.on('prestoreAccount', 'openAddModal', function () {
$('#prestoreAccountModel').modal('show');
});
},
methods: {
prestoreAccountValidate() {
return vc.validate.validate({
prestoreAccountInfo: vc.component.prestoreAccountInfo
}, {
'prestoreAccountInfo.ownerId': [
{
limit: "required",
param: "",
errInfo: "业主不能为空"
}
],
'prestoreAccountInfo.amount': [
{
limit: "required",
param: "",
errInfo: "金额不能为空"
},
{
limit: "money",
param: "",
errInfo: "金额格式错误"
},
],
'prestoreAccountInfo.remark': [
{
limit: "maxLength",
param: "200",
errInfo: "备注长度不能超过200位"
}
]
});
},
savePrestoreAccountInfo: function () {
if (!vc.component.prestoreAccountValidate()) {
vc.toast(vc.validate.errInfo);
return;
}
vc.component.prestoreAccountInfo.communityId = vc.getCurrentCommunity().communityId;
vc.http.apiPost(
'/account/ownerPrestoreAccount',
JSON.stringify(vc.component.prestoreAccountInfo),
{
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
if (res.status == 200) {
//关闭model
$('#prestoreAccountModel').modal('hide');
vc.component.clearPrestoreAccountInfo();
vc.emit('accountManage', 'listshopAccount', {});
vc.toast('预存成功');
return;
}
vc.component.prestoreAccountInfo.errorInfo = json;
},
function (errInfo, error) {
console.log('请求失败处理');
vc.component.prestoreAccountInfo.errorInfo = errInfo;
});
},
clearPrestoreAccountInfo: function () {
vc.component.prestoreAccountInfo = {
tel: '',
ownerId: '',
owners: [],
amount: '',
remark: ''
};
},
_changeTel: function () {
var param = {
params: {
communityId: vc.getCurrentCommunity().communityId,
row: 50,
page: 1,
link: $that.prestoreAccountInfo.tel,
ownerTypeCd:'1001'
}
}
//发送get请求
vc.http.get('listOwner',
'list',
param,
function (json, res) {
var listOwnerData = JSON.parse(json);
vc.component.prestoreAccountInfo.owners = listOwnerData.owners;
}, function (errInfo, error) {
console.log('请求失败处理');
vc.component.prestoreAccountInfo.owners = [];
}
);
}
}
});
})(window.vc);