parent
b38d26efe3
commit
650d39e5b6
@ -0,0 +1,252 @@ |
||||
<!-- start 面包屑 --> |
||||
<app-breadcrumb></app-breadcrumb> |
||||
<!-- end 面包屑 --> |
||||
<!--条件搜索--> |
||||
|
||||
<nz-spin [nzSpinning]="loadingObject.spinning" nzTip="{{loadingObject.msg}}"> |
||||
<div class="inner-content"> |
||||
<form nz-form [formGroup]="searchForm" (ngSubmit)="search(searchForm.value)"> |
||||
<div nz-row> |
||||
<div nz-col nzSpan="8" *ngIf="roleType == 5 && adminFlag == 1"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">部门</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select nzAllowClear formControlName="orgId"> |
||||
<nz-option *ngFor="let item of orgArray" nzLabel="{{item.name}}" nzValue="{{item.id}}"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">卡号</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="cardNo" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">联系人</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="contactName" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">联系电话</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="contactPhone" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">油卡状态</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select nzAllowClear formControlName="status"> |
||||
<nz-option nzValue="1" nzLabel="正常"></nz-option> |
||||
<nz-option nzValue="2" nzLabel="禁用"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">联系人设置</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select nzAllowClear formControlName="isConfigContact"> |
||||
<nz-option nzValue="false" nzLabel="未设置"></nz-option> |
||||
<nz-option nzValue="true" nzLabel="已设置"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">绑定状态</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-select nzAllowClear formControlName="bindStatus"> |
||||
<nz-option nzValue="0" nzLabel="未绑定"></nz-option> |
||||
<nz-option nzValue="1" nzLabel="已绑定"></nz-option> |
||||
</nz-select> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">绑定时间</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-range-picker |
||||
formControlName="bindTime" |
||||
[nzShowTime]="{ nzHideDisabledOptions: true}" |
||||
nzFormat="yyyy-MM-dd HH:mm:ss" |
||||
></nz-range-picker> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
<div nz-col nzSpan="8"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="8">生成时间</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-range-picker |
||||
formControlName="createTime" |
||||
[nzShowTime]="{ nzHideDisabledOptions: true}" |
||||
nzFormat="yyyy-MM-dd HH:mm:ss" |
||||
></nz-range-picker> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
<div nz-row> |
||||
<div nz-col nzSpan="24" class="search-button"> |
||||
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>搜索</button> |
||||
<button nz-button nzType="default" (click)="resetForm()"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button> |
||||
</div> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
|
||||
<div class="inner-content"> |
||||
<div *ngIf="roleType == 5 && adminFlag == 0" style="width: 100%;text-align: center;"> |
||||
<nz-row [nzGutter]="16"> |
||||
<nz-col [nzSpan]="24"> |
||||
<nz-statistic [nzValue]="accountObject['amounts']" [nzTitle]="'账户余额'"></nz-statistic> |
||||
</nz-col> |
||||
</nz-row> |
||||
</div> |
||||
<span>共计 {{dataObject.total?dataObject.total:0}} 条数据</span> |
||||
<div class="operating-button"> |
||||
<button nz-button nzType="primary" class="right-btn" (click)="showGenerateCardModal()" ><i nz-icon nzType="plus" nzTheme="outline"></i>生成油卡</button> |
||||
</div> |
||||
|
||||
<!--数组表格 --> |
||||
<nz-table #basicTable |
||||
[nzData]="dataObject.list" |
||||
[nzTotal]="dataObject.total" |
||||
[nzFrontPagination]="false" |
||||
[nzLoading]="tableLoading" |
||||
[nzPageIndex]="whereObject.pageNum" |
||||
(nzPageIndexChange)="requestData($event)" |
||||
[nzScroll]="{ x: '1100px'}"> |
||||
<thead> |
||||
<tr> |
||||
<th nzWidth="60px">序号</th> |
||||
<th nzWidth="80px" *ngIf="roleType == 5 && adminFlag == 1">部门</th> |
||||
<th nzWidth="160px">卡号</th> |
||||
<th nzWidth="110px">余额</th> |
||||
<th nzWidth="100px">联系人</th> |
||||
<th nzWidth="120px">联系电话</th> |
||||
<th nzWidth="100px">油卡状态</th> |
||||
<th nzWidth="100px">绑定状态</th> |
||||
<th nzWidth="160px">绑定时间</th> |
||||
<th nzWidth="80px">操作人</th> |
||||
<th nzWidth="160px">生成时间</th> |
||||
<th nzWidth="160px" nzRight="0px">操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let data of basicTable.data;let i = index"> |
||||
<td>{{i+1}}</td> |
||||
<td *ngIf="roleType == 5 && adminFlag == 1">{{data.orgName}}</td> |
||||
<td>{{data.cardNo}}</td> |
||||
<td>¥{{data.amount}}</td> |
||||
<td>{{data.contactName?data.contactName:'未设置'}}</td> |
||||
<td>{{data.contactPhone?data.contactPhone:'未设置'}}</td> |
||||
<td>{{data.status | oilCardStatus}}</td> |
||||
<td>{{data.bindStatus | oilCardBindStatus}}</td> |
||||
<td> |
||||
<span *ngIf="data.bindTime != null">{{data.bindTime | date : 'yyyy-MM-dd HH:mm:ss'}}</span> |
||||
<span *ngIf="data.bindTime == null">未绑定</span> |
||||
<td>{{data.opUserName}}</td> |
||||
<td>{{data.createTime | date : 'yyyy-MM-dd HH:mm:ss'}}</td> |
||||
<td nzRight="0px" class="table-td-operation"> |
||||
<a (click)="showRechargeModal(data.cardNo)"> 充值 </a> |
||||
<a nz-dropdown [nzDropdownMenu]="menu"> 操作列表 <i nz-icon nzType="down"></i> </a> |
||||
<nz-dropdown-menu #menu="nzDropdownMenu"> |
||||
<ul nz-menu nzSelectable> |
||||
<li nz-menu-item *ngIf="!data.contactPhone" (click)="showEditContactModal(data)"><a >设置联系人</a></li> |
||||
<li nz-menu-item *ngIf="data.contactPhone" (click)="showEditContactModal(data)"><a >更换联系人</a></li> |
||||
<li nz-menu-item *ngIf="data.status == 1" (click)="showDisabledConfirm(data.cardNo)"><a>禁用</a></li> |
||||
<li nz-menu-item *ngIf="data.status == 2" (click)="showEnableConfirm(data.cardNo)"><a>启用</a></li> |
||||
<li nz-menu-item><a>变更记录</a></li> |
||||
<li nz-menu-item><a>油卡流水</a></li> |
||||
</ul> |
||||
</nz-dropdown-menu> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
</div> |
||||
</nz-spin> |
||||
|
||||
<nz-modal [(nzVisible)]="generateCardModal" nzTitle="生成油卡" (nzOnCancel)="closeGenerateCardModal()" nzWidth="500px" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="generateCardForm"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >生成数量</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-input-number style="width: 100%" formControlName="generateNum" [nzMin]="1" [nzMax]="1000" [nzStep]="1"></nz-input-number> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitGenerateCard()">确定</button> |
||||
</div> |
||||
</form> |
||||
</nz-modal> |
||||
|
||||
<nz-modal [(nzVisible)]="editContactModal" nzTitle="设置联系人" (nzOnCancel)="closeEditContactModal()" nzWidth="500px" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="editContactForm"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >联系人</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="contactName" placeholder="请输入联系姓名" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >联系电话</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="contactPhone" placeholder="请输入联系电话" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitEditContact()">确定</button> |
||||
</div> |
||||
</form> |
||||
</nz-modal> |
||||
|
||||
<nz-modal [(nzVisible)]="rechargeModal" nzTitle="充值" (nzOnCancel)="closeRechargeModal()" nzWidth="500px" [nzFooter]="null"> |
||||
<form nz-form [formGroup]="rechargeForm"> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >卡号</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input nz-input formControlName="cardNo" disabled /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >充值金额</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<nz-input-number style="width: 100%" formControlName="price" [nzMin]="1" [nzMax]="1000" [nzStep]="1" [nzPrecision]="2"></nz-input-number> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<nz-form-item> |
||||
<nz-form-label [nzSpan]="6" nzRequired >二级密码</nz-form-label> |
||||
<nz-form-control [nzSpan]="14"> |
||||
<input type="password" formControlName="twoPwd" nz-input placeholder="请输入二级密码" /> |
||||
</nz-form-control> |
||||
</nz-form-item> |
||||
<div style="text-align: center;"> |
||||
<button nz-button nzType="primary" style="width: 150px;" (click)="submitRecharge()">确定</button> |
||||
</div> |
||||
</form> |
||||
</nz-modal> |
@ -0,0 +1,3 @@ |
||||
.table-td-operation a { |
||||
padding: 0px 5px; |
||||
} |
@ -0,0 +1,25 @@ |
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { OilCardListComponent } from './oil-card-list.component'; |
||||
|
||||
describe('OilCardListComponent', () => { |
||||
let component: OilCardListComponent; |
||||
let fixture: ComponentFixture<OilCardListComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ OilCardListComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(OilCardListComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,390 @@ |
||||
import { Component, OnInit } from '@angular/core'; |
||||
import {FormBuilder, FormGroup, Validators} from '_@angular_forms@9.0.7@@angular/forms'; |
||||
import {NzMessageService, NzModalService} from '_ng-zorro-antd@9.3.0@ng-zorro-antd'; |
||||
import {LocalStorageService} from '../../../services/local-storage.service'; |
||||
import {ADMIN_INFO_OBJECT} from '../../../services/local-storage.namespace'; |
||||
import {OilCardService} from '../../../services/oil-card.service'; |
||||
import {CompanyAccountService} from '../../../services/company-account.service'; |
||||
import {OrganizationService} from "../../../services/organization.service"; |
||||
import {NavigationComponent} from "../../navigation/navigation.component"; |
||||
|
||||
@Component({ |
||||
selector: 'app-oil-card-list', |
||||
templateUrl: './oil-card-list.component.html', |
||||
styleUrls: ['./oil-card-list.component.scss'] |
||||
}) |
||||
export class OilCardListComponent implements OnInit { |
||||
roleType; |
||||
adminFlag; |
||||
loadingObject = { |
||||
spinning: false, |
||||
msg: '加载中' |
||||
}; |
||||
|
||||
dataObject: any = {}; |
||||
tableLoading = true; |
||||
searchForm: FormGroup; |
||||
pageNum: number; |
||||
whereObject: any = {}; |
||||
|
||||
generateCardModal = false; |
||||
generateCardForm: FormGroup; |
||||
|
||||
editContactModal = false; |
||||
editContactForm: FormGroup; |
||||
|
||||
rechargeModal = false; |
||||
rechargeForm: FormGroup; |
||||
|
||||
orgArray = []; |
||||
accountObject = { |
||||
amounts: 0 |
||||
}; |
||||
|
||||
constructor(private modal: NzModalService, |
||||
private message: NzMessageService, |
||||
private store: LocalStorageService, |
||||
private oilCardService: OilCardService, |
||||
private organizationService: OrganizationService, |
||||
private navigationComponent: NavigationComponent, |
||||
private companyAccountService: CompanyAccountService, |
||||
private form: FormBuilder) { |
||||
this.roleType = Number(this.store.get(ADMIN_INFO_OBJECT)['secRole'].roleType); |
||||
this.adminFlag = Number(this.store.get(ADMIN_INFO_OBJECT)['secUser'].adminFlag); |
||||
} |
||||
|
||||
ngOnInit(): void { |
||||
this.searchForm = this.form.group({ |
||||
orgId: [null], |
||||
cardNo: [null], |
||||
contactName: [null], |
||||
contactPhone: [null], |
||||
createTime: [null], |
||||
createTimeS: [null], |
||||
createTimeE: [null], |
||||
bindTime: [null], |
||||
bindTimeS: [null], |
||||
bindTimeE: [null], |
||||
isConfigContact: [null], |
||||
status: [null], |
||||
bindStatus: [null], |
||||
}); |
||||
|
||||
this.editContactForm = this.form.group({ |
||||
cardNo: [null, [Validators.required]], |
||||
contactName: [null, [Validators.required]], |
||||
contactPhone: [null, [Validators.required]], |
||||
}); |
||||
|
||||
this.generateCardForm = this.form.group({ |
||||
generateNum: [1, [Validators.required]], |
||||
}); |
||||
|
||||
this.rechargeForm = this.form.group({ |
||||
cardNo: [{ value: null, disabled: true }, [Validators.required]], |
||||
price: [100, [Validators.required]], |
||||
twoPwd: [null, [Validators.required]], |
||||
}); |
||||
|
||||
if (this.roleType === 5 && this.adminFlag === 1) { |
||||
this.organizationService.getOrganizationList(this.store.get(ADMIN_INFO_OBJECT)['bsCompany']['id'], data => { |
||||
this.orgArray = data['return_data']; |
||||
}); |
||||
} |
||||
|
||||
if (this.roleType === 5 && this.adminFlag === 0) { |
||||
this.getAccount(); |
||||
} |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 请求数据 |
||||
*/ |
||||
requestData(pageNum) { |
||||
this.tableLoading = true; |
||||
this.whereObject['pageNum'] = pageNum; |
||||
this.whereObject['pageSize'] = 10; |
||||
this.oilCardService.getCardList(this.whereObject, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.dataObject = data['return_data']; |
||||
} else { |
||||
this.modal.error(data['return_msg']); |
||||
} |
||||
this.tableLoading = false; |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 查询账户 |
||||
*/ |
||||
getAccount() { |
||||
this.companyAccountService.getAccount(data => { |
||||
this.accountObject = data['return_data']; |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 搜索 |
||||
* @param whereObject 条件 |
||||
*/ |
||||
search(whereObject: object) { |
||||
this.whereObject = whereObject; |
||||
if (this.searchForm.value.createTime != null) { |
||||
this.searchForm.value.createTimeS = new Date(this.searchForm.value.createTime[0]).getTime(); |
||||
this.searchForm.value.createTimeE = new Date(this.searchForm.value.createTime[1]).getTime(); |
||||
} else { |
||||
this.searchForm.value.createTimeS = null; |
||||
this.searchForm.value.createTimeE = null; |
||||
} |
||||
if (this.searchForm.value.bindTime != null) { |
||||
this.searchForm.value.bindTimeS = new Date(this.searchForm.value.bindTime[0]).getTime(); |
||||
this.searchForm.value.bindTimeE = new Date(this.searchForm.value.bindTime[1]).getTime(); |
||||
} else { |
||||
this.searchForm.value.bindTimeS = null; |
||||
this.searchForm.value.bindTimeE = null; |
||||
} |
||||
this.requestData(1); |
||||
} |
||||
|
||||
/** |
||||
* 重置 |
||||
*/ |
||||
resetForm(): void { |
||||
this.searchForm.reset(); |
||||
} |
||||
|
||||
/** |
||||
* 展示生成油卡模态框 |
||||
*/ |
||||
showGenerateCardModal() { |
||||
this.generateCardModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭生成油卡模态框 |
||||
*/ |
||||
closeGenerateCardModal() { |
||||
this.generateCardModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 提交生成数量 |
||||
*/ |
||||
submitGenerateCard() { |
||||
for (const i in this.generateCardForm.controls) { |
||||
this.generateCardForm.controls[i].markAsDirty(); |
||||
this.generateCardForm.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.generateCardForm.status == null || this.generateCardForm.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
|
||||
this.loadingObject.spinning = true; |
||||
this.loadingObject.msg = '生成油卡中...'; |
||||
this.closeGenerateCardModal(); |
||||
|
||||
this.oilCardService.generateCard(this.generateCardForm.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '生成成功', |
||||
}); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
this.loadingObject.spinning = false; |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 展示编辑联系人模态框 |
||||
*/ |
||||
showEditContactModal(data: object) { |
||||
this.editContactForm.patchValue(data); |
||||
this.editContactModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭编辑联系人模态框 |
||||
*/ |
||||
closeEditContactModal() { |
||||
this.editContactForm.reset(); |
||||
this.editContactModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 提交编辑联系人 |
||||
*/ |
||||
submitEditContact() { |
||||
if (this.editContactForm.value['bindStatus'] === 1) { |
||||
this.modal.confirm({ |
||||
nzTitle: '警告', |
||||
nzContent: '油卡更换联系人后,油卡会自动与用户解绑!', |
||||
nzOkText: '是', |
||||
nzCancelText: '否', |
||||
nzOkType: 'danger', |
||||
nzOnOk: () => this.submitEditContactData() |
||||
}); |
||||
} else { |
||||
this.submitEditContactData(); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* 提交编辑联系人数据 |
||||
*/ |
||||
submitEditContactData() { |
||||
for (const i in this.editContactForm.controls) { |
||||
this.editContactForm.controls[i].markAsDirty(); |
||||
this.editContactForm.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.editContactForm.status == null || this.editContactForm.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
this.oilCardService.setContact(this.editContactForm.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '设置成功', |
||||
}); |
||||
this.closeEditContactModal(); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 弹出禁用对话框 |
||||
*/ |
||||
showDisabledConfirm(cardNo: string): void { |
||||
this.modal.confirm({ |
||||
nzTitle: '警告', |
||||
nzContent: '是否禁用油卡', |
||||
nzOkText: '是', |
||||
nzCancelText: '否', |
||||
nzOkType: 'danger', |
||||
nzOnOk: () => this.disabledData(cardNo) |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 禁用数据 |
||||
*/ |
||||
disabledData(cardNo: string) { |
||||
this.oilCardService.disabled({ cardNo: cardNo}, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.requestData(this.whereObject['pageNum']); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'] |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 弹出启用对话框 |
||||
*/ |
||||
showEnableConfirm(cardNo: string): void { |
||||
this.modal.confirm({ |
||||
nzTitle: '警告', |
||||
nzContent: '是否启用油卡', |
||||
nzOkText: '是', |
||||
nzCancelText: '否', |
||||
nzOkType: 'danger', |
||||
nzOnOk: () => this.enableData(cardNo) |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 启用数据 |
||||
*/ |
||||
enableData(cardNo: string) { |
||||
this.oilCardService.enable({ cardNo: cardNo}, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.requestData(this.whereObject['pageNum']); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'] |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 展示充值模态框 |
||||
*/ |
||||
showRechargeModal(cardNo: string) { |
||||
this.rechargeForm.patchValue({cardNo: cardNo}); |
||||
this.rechargeModal = true; |
||||
} |
||||
|
||||
/** |
||||
* 关闭充值模态框 |
||||
*/ |
||||
closeRechargeModal() { |
||||
this.rechargeModal = false; |
||||
} |
||||
|
||||
/** |
||||
* 提交充值 |
||||
*/ |
||||
submitRecharge() { |
||||
for (const i in this.rechargeForm.controls) { |
||||
this.rechargeForm.controls[i].markAsDirty(); |
||||
this.rechargeForm.controls[i].updateValueAndValidity(); |
||||
} |
||||
if (this.rechargeForm.status == null || this.rechargeForm.status !== 'VALID') { |
||||
this.modal.warning({ |
||||
nzTitle: '提示', |
||||
nzContent: '请填写所有必填项', |
||||
}); |
||||
return; |
||||
} |
||||
this.rechargeForm.value['cardNo'] = this.rechargeForm.controls['cardNo']['value']; |
||||
this.oilCardService.recharge(this.rechargeForm.value, data => { |
||||
if (data['return_code'] === '000000') { |
||||
this.modal.success({ |
||||
nzTitle: '提示', |
||||
nzContent: '充值成功', |
||||
}); |
||||
this.closeRechargeModal(); |
||||
this.getAccount(); |
||||
this.requestData(this.whereObject['pageNum']); |
||||
|
||||
} else if (data['return_code'] === '102136') { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
this.closeRechargeModal(); |
||||
this.navigationComponent.openSetTowPwd(); |
||||
} else { |
||||
this.modal.error({ |
||||
nzTitle: '提示', |
||||
nzContent: data['return_msg'], |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
} |
@ -0,0 +1,13 @@ |
||||
import { NgModule } from '@angular/core'; |
||||
import { Routes, RouterModule } from '@angular/router'; |
||||
import {OilCardListComponent} from './oil-card-list/oil-card-list.component'; |
||||
|
||||
const routes: Routes = [ |
||||
{ path: 'list', component: OilCardListComponent} |
||||
]; |
||||
|
||||
@NgModule({ |
||||
imports: [RouterModule.forChild(routes)], |
||||
exports: [RouterModule] |
||||
}) |
||||
export class OilCardRoutingModule { } |
@ -0,0 +1,26 @@ |
||||
import { NgModule } from '@angular/core'; |
||||
import { CommonModule } from '@angular/common'; |
||||
|
||||
import { OilCardRoutingModule } from './oil-card-routing.module'; |
||||
import { OilCardListComponent } from './oil-card-list/oil-card-list.component'; |
||||
import {NgZorroAntdModule} from '_ng-zorro-antd@9.3.0@ng-zorro-antd'; |
||||
import {FormsModule, ReactiveFormsModule} from '_@angular_forms@9.0.7@@angular/forms'; |
||||
import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module'; |
||||
import {AppCommonModule} from '../../app-common.module'; |
||||
import {NgxEchartsModule} from '_ngx-echarts@4.2.2@ngx-echarts'; |
||||
|
||||
|
||||
@NgModule({ |
||||
declarations: [OilCardListComponent], |
||||
imports: [ |
||||
CommonModule, |
||||
OilCardRoutingModule, |
||||
NgZorroAntdModule, |
||||
ReactiveFormsModule, |
||||
FormsModule, |
||||
BreadcrumbModule, |
||||
AppCommonModule, |
||||
NgxEchartsModule, |
||||
] |
||||
}) |
||||
export class OilCardModule { } |
@ -0,0 +1,16 @@ |
||||
import { Pipe, PipeTransform } from '@angular/core'; |
||||
|
||||
@Pipe({ |
||||
name: 'oilCardBindStatus' |
||||
}) |
||||
export class OilCardBindStatusPipe implements PipeTransform { |
||||
|
||||
transform(value: number): string { |
||||
switch (value) { |
||||
case 0: |
||||
return '未绑定'; |
||||
case 1: |
||||
return '已绑定'; |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,19 @@ |
||||
import { Pipe, PipeTransform } from '@angular/core'; |
||||
|
||||
@Pipe({ |
||||
name: 'oilCardStatus' |
||||
}) |
||||
export class OilCardStatusPipe implements PipeTransform { |
||||
|
||||
transform(value: number): string { |
||||
switch (value) { |
||||
case 0: |
||||
return '删除'; |
||||
case 1: |
||||
return '正常'; |
||||
case 2: |
||||
return '禁用'; |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,51 @@ |
||||
import { Injectable } from '@angular/core'; |
||||
import {HttpClient} from '_@angular_common@9.0.7@@angular/common/http'; |
||||
import {CommonsService} from './commons.service'; |
||||
import {environment} from '../../environments/environment'; |
||||
|
||||
@Injectable({ |
||||
providedIn: 'root' |
||||
}) |
||||
export class CompanyTwoPwdService { |
||||
|
||||
constructor( |
||||
private http: HttpClient, |
||||
private common: CommonsService |
||||
) { } |
||||
|
||||
/** |
||||
* 是否设置二级密码 |
||||
* |
||||
* @param paramsObject 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public isSetTwoPwd(callBack) { |
||||
this.http.post(environment.baseUrl + 'companyTwoPwd/isSetTwoPwd', null).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 设置二级密码 |
||||
* |
||||
* @param paramsObject 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public setTwoPwd(paramsObject: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'companyTwoPwd/setTwoPwd', paramsObject).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 修改二级密码 |
||||
* |
||||
* @param paramsObject 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public updateTwoPwd(paramsObject: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'companyTwoPwd/updateTwoPwd', paramsObject).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
} |
@ -0,0 +1,87 @@ |
||||
import { Injectable } from '@angular/core'; |
||||
import {HttpClient} from '_@angular_common@9.0.7@@angular/common/http'; |
||||
import {CommonsService} from './commons.service'; |
||||
import {environment} from '../../environments/environment'; |
||||
|
||||
@Injectable({ |
||||
providedIn: 'root' |
||||
}) |
||||
export class OilCardService { |
||||
|
||||
constructor( |
||||
private http: HttpClient, |
||||
private common: CommonsService |
||||
) { } |
||||
|
||||
/** |
||||
* 油卡充值 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public recharge(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'oilCard/recharge', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 生成油卡 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public generateCard(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'oilCard/generateCard', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 设置联系人 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public setContact(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'oilCard/setContact', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 禁用 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public disabled(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'oilCard/disabled', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 启用 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public enable(param: object, callBack) { |
||||
this.http.post(environment.baseUrl + 'oilCard/enable', param).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
|
||||
/** |
||||
* 油卡列表 |
||||
* |
||||
* @param param 参数对象 |
||||
* @param callBack 回调 |
||||
*/ |
||||
public getCardList(param: object, callBack) { |
||||
this.http.get(environment.baseUrl + 'oilCard/getCardList?' + this.common.getWhereCondition(param)).subscribe(data => { |
||||
callBack(data); |
||||
}); |
||||
} |
||||
} |
Loading…
Reference in new issue