master
parent
7193049796
commit
644bca4edd
@ -1,5 +1,5 @@ |
|||||||
export const backgroundImage = [ |
export const backgroundImage = [ |
||||||
"./assets/login/图片整理.png", |
"./assets/login/1.png", |
||||||
"./assets/login/多端协同.png", |
"./assets/login/2.png", |
||||||
"./assets/login/达成合作.png"]; |
"./assets/login/3.png"]; |
||||||
|
|
||||||
|
@ -0,0 +1,98 @@ |
|||||||
|
<form nz-form [formGroup]="searchForm" class="search_form" [nzLayout]="'vertical'"> |
||||||
|
<div nz-row [nzGutter]="24"> |
||||||
|
<div nz-col [nzSpan]="6"> |
||||||
|
<nz-form-item> |
||||||
|
<nz-form-label>品牌名称</nz-form-label> |
||||||
|
<nz-form-control> |
||||||
|
<input nzSize="large" nz-input formControlName="title" placeholder="请输入" /> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div nz-col [nzSpan]="6" class="search-area"> |
||||||
|
<button nz-button [nzType]="'primary'" (click)="getRequest(true)">查询</button> |
||||||
|
<button nz-button (click)="searchForm.reset()">重置</button> |
||||||
|
<button nz-button [nzType]="'primary'" (click)="showEdit()">创建</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
|
||||||
|
<nz-table #basicTable |
||||||
|
[nzBordered]="true" |
||||||
|
[nzFrontPagination]="false" |
||||||
|
[nzShowQuickJumper]="true" |
||||||
|
[nzShowTotal]="totalTemplate" |
||||||
|
[(nzPageIndex)]="tablePageNum" |
||||||
|
(nzPageIndexChange)="getRequest(false)" |
||||||
|
[nzTotal]="tableData.total" |
||||||
|
[nzData]="tableData.list" > |
||||||
|
<thead> |
||||||
|
<tr> |
||||||
|
<th nzWidth="80px">品牌名称</th> |
||||||
|
<th nzWidth="100px">品牌图片</th> |
||||||
|
<th nzWidth="50px">创建时间</th> |
||||||
|
<th nzWidth="50px">更新时间</th> |
||||||
|
<th nzWidth="70px">操作</th> |
||||||
|
</tr> |
||||||
|
</thead> |
||||||
|
<tbody> |
||||||
|
<tr *ngFor="let data of basicTable.data"> |
||||||
|
<td>{{data.title}}</td> |
||||||
|
<td> |
||||||
|
<img nz-image width="60px" height="60px" nzSrc="{{imageUrl + data.imgUrl }}" [nzFallback]="fallbackImg" alt="" /> |
||||||
|
</td> |
||||||
|
<td>{{ data.createTime | date: 'yyyy-MM-dd HH:mm'}}</td> |
||||||
|
<td>{{ data.updateTime | date: 'yyyy-MM-dd HH:mm'}}</td> |
||||||
|
<td> |
||||||
|
<a (click)="showEdit(data)">修改</a> |
||||||
|
<nz-divider nzType="vertical"></nz-divider> |
||||||
|
<a nz-popconfirm nzPopconfirmTitle="是否确认删除?" (nzOnConfirm)="delete(data.id)">删除</a> |
||||||
|
</td> |
||||||
|
</tr> |
||||||
|
</tbody> |
||||||
|
<ng-template #totalTemplate let-total>总计 {{ total }} 条</ng-template> |
||||||
|
|
||||||
|
|
||||||
|
<!--添加弹出框--> |
||||||
|
<nz-modal [(nzVisible)]="isVisibleEdit" [nzMaskClosable] = false nzTitle="编辑类目" (nzOnCancel)="isVisibleEdit = false" (nzOnOk)="handleEdit()"> |
||||||
|
<ng-container *nzModalContent> |
||||||
|
<form nz-form [formGroup]="editForm"> |
||||||
|
<nz-form-item > |
||||||
|
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired>标题</nz-form-label> |
||||||
|
<nz-form-control [nzSm]="14" [nzXs]="24" nzErrorTip="请输入标题!"> |
||||||
|
<input nzSize="large" nz-input formControlName="title" placeholder="请输入" /> |
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
|
||||||
|
<nz-form-item > |
||||||
|
<nz-form-label [nzSm]="6" [nzXs]="24" >上传图片</nz-form-label> |
||||||
|
<nz-form-control [nzSm]="14" [nzXs]="24"> |
||||||
|
<nz-upload |
||||||
|
nzAction="{{baseUrl}}fileUpload/fileUpload" |
||||||
|
nzListType="picture-card" |
||||||
|
[(nzFileList)]="imgUrl" |
||||||
|
[nzShowButton]="imgUrl.length < 1" |
||||||
|
[nzPreview]="handlePreview" |
||||||
|
nzAccept="image/*" |
||||||
|
> |
||||||
|
<div> |
||||||
|
<span nz-icon nzType="plus"></span> |
||||||
|
<div style="margin-top: 8px">上传图片</div> |
||||||
|
</div> |
||||||
|
</nz-upload> |
||||||
|
<nz-modal |
||||||
|
[nzVisible]="previewVisible" |
||||||
|
[nzContent]="modalContent" |
||||||
|
[nzFooter]="null" |
||||||
|
(nzOnCancel)="previewVisible = false" |
||||||
|
> |
||||||
|
<ng-template #modalContent> |
||||||
|
<img [src]="previewImage" [ngStyle]="{ width: '100%' }" alt=""/> |
||||||
|
</ng-template> |
||||||
|
</nz-modal> |
||||||
|
|
||||||
|
</nz-form-control> |
||||||
|
</nz-form-item> |
||||||
|
</form> |
||||||
|
</ng-container> |
||||||
|
</nz-modal> |
@ -0,0 +1,12 @@ |
|||||||
|
[nz-form-label] { |
||||||
|
overflow: visible; |
||||||
|
} |
||||||
|
button { |
||||||
|
margin-left: 8px; |
||||||
|
} |
||||||
|
.submit-btn { |
||||||
|
width: 150px; |
||||||
|
} |
||||||
|
.search-area { |
||||||
|
margin-top: 30px; |
||||||
|
} |
@ -0,0 +1,203 @@ |
|||||||
|
import { Component } from '@angular/core'; |
||||||
|
import {DatePipe, NgForOf, NgOptimizedImage, NgStyle} from "@angular/common"; |
||||||
|
import {NzButtonComponent} from "ng-zorro-antd/button"; |
||||||
|
import {NzColDirective, NzRowDirective} from "ng-zorro-antd/grid"; |
||||||
|
import {NzFormControlComponent, NzFormDirective, NzFormItemComponent, NzFormLabelComponent} from "ng-zorro-antd/form"; |
||||||
|
import {NzInputDirective} from "ng-zorro-antd/input"; |
||||||
|
import {NzOptionComponent, NzSelectComponent} from "ng-zorro-antd/select"; |
||||||
|
import {NzModalComponent, NzModalContentDirective, NzModalModule} from "ng-zorro-antd/modal"; |
||||||
|
import {FormGroup, NonNullableFormBuilder, ReactiveFormsModule, Validators} from "@angular/forms"; |
||||||
|
import {NzIconDirective} from "ng-zorro-antd/icon"; |
||||||
|
import {NzTreeSelectComponent} from "ng-zorro-antd/tree-select"; |
||||||
|
import {NzUploadComponent, NzUploadFile} from "ng-zorro-antd/upload"; |
||||||
|
import {NzDividerComponent} from "ng-zorro-antd/divider"; |
||||||
|
import { |
||||||
|
NzTableCellDirective, |
||||||
|
NzTableComponent, |
||||||
|
NzTbodyComponent, |
||||||
|
NzTheadComponent, |
||||||
|
NzThMeasureDirective, NzTrDirective |
||||||
|
} from "ng-zorro-antd/table"; |
||||||
|
import {NzPopconfirmDirective} from "ng-zorro-antd/popconfirm"; |
||||||
|
import {NzImageModule} from "ng-zorro-antd/image"; |
||||||
|
import {environment} from "../../../../environments/environment"; |
||||||
|
import {NzMessageService} from "ng-zorro-antd/message"; |
||||||
|
import {CommonService} from "../../../services/common/common.service"; |
||||||
|
import {GoodsService} from "../../../services/goods/goods.service"; |
||||||
|
import {GoodsTypeData} from "../../../model/goods.interface"; |
||||||
|
import { fallbackImg } from '../../../data/goods/goods.namespace'; |
||||||
|
|
||||||
|
const getBase64 = (file: File): Promise<string | ArrayBuffer | null> => |
||||||
|
new Promise((resolve, reject) => { |
||||||
|
const reader = new FileReader(); |
||||||
|
reader.readAsDataURL(file); |
||||||
|
reader.onload = () => resolve(reader.result); |
||||||
|
reader.onerror = error => reject(error); |
||||||
|
}); |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-discount-list', |
||||||
|
standalone: true, |
||||||
|
imports: [ |
||||||
|
NgForOf, |
||||||
|
NzButtonComponent, |
||||||
|
NzColDirective, |
||||||
|
NzFormControlComponent, |
||||||
|
NzFormDirective, |
||||||
|
NzFormItemComponent, |
||||||
|
NzFormLabelComponent, |
||||||
|
NzInputDirective, |
||||||
|
NzOptionComponent, |
||||||
|
NzRowDirective, |
||||||
|
NzModalModule, |
||||||
|
NzSelectComponent, |
||||||
|
ReactiveFormsModule, |
||||||
|
NzIconDirective, |
||||||
|
NzModalComponent, |
||||||
|
NzTreeSelectComponent, |
||||||
|
NzUploadComponent, |
||||||
|
NzModalContentDirective, |
||||||
|
NgStyle, |
||||||
|
DatePipe, |
||||||
|
NzDividerComponent, |
||||||
|
NzTableCellDirective, |
||||||
|
NzTableComponent, |
||||||
|
NzTbodyComponent, |
||||||
|
NzThMeasureDirective, |
||||||
|
NzTheadComponent, |
||||||
|
NzTrDirective, |
||||||
|
NzPopconfirmDirective, |
||||||
|
NzImageModule, |
||||||
|
NgOptimizedImage |
||||||
|
], |
||||||
|
templateUrl: './discount-list.component.html', |
||||||
|
styleUrl: './discount-list.component.less' |
||||||
|
}) |
||||||
|
export class DiscountListComponent { |
||||||
|
// 表单页数
|
||||||
|
tablePageNum = 1; |
||||||
|
// 表单数据
|
||||||
|
tableData: any = { |
||||||
|
total: 0, |
||||||
|
loading: false, |
||||||
|
list: [], |
||||||
|
}; |
||||||
|
// 搜索表单
|
||||||
|
searchForm: FormGroup; |
||||||
|
|
||||||
|
// 图片
|
||||||
|
imgUrl: NzUploadFile[] = [] |
||||||
|
baseUrl = environment.baseUrl; |
||||||
|
imageUrl = environment.imageUrl; |
||||||
|
|
||||||
|
// 展示图片
|
||||||
|
previewImage: string | undefined = ''; |
||||||
|
// 上传是否展示
|
||||||
|
previewVisible = false; |
||||||
|
|
||||||
|
// 编辑产品类型表单
|
||||||
|
editForm: FormGroup; |
||||||
|
// 编辑弹出框
|
||||||
|
isVisibleEdit = false; |
||||||
|
|
||||||
|
protected readonly fallbackImg = fallbackImg; |
||||||
|
|
||||||
|
constructor(private fb: NonNullableFormBuilder, |
||||||
|
private msg: NzMessageService, |
||||||
|
private commonService: CommonService, |
||||||
|
private goodsService: GoodsService) { |
||||||
|
// 初始化搜索框
|
||||||
|
this.searchForm = this.fb.group({ |
||||||
|
title: [''], |
||||||
|
}); |
||||||
|
|
||||||
|
// 初始化
|
||||||
|
this.editForm = this.fb.group({ |
||||||
|
title: ['' , [Validators.required]], |
||||||
|
id: [null], |
||||||
|
imgUrl: [''], |
||||||
|
}); |
||||||
|
this.getRequest(); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
// 查询列表
|
||||||
|
public getRequest(reset: boolean = false) { |
||||||
|
this.tableData.loading = true; |
||||||
|
if (reset) { |
||||||
|
this.tablePageNum = 1; |
||||||
|
} |
||||||
|
this.searchForm.value.pageNum = this.tablePageNum; |
||||||
|
this.searchForm.value.pageSize = 10; |
||||||
|
this.searchForm.value.time = new Date().getTime(); |
||||||
|
|
||||||
|
this.goodsService.getListBrand(this.searchForm.value , (data: any) => { |
||||||
|
if (data['return_code'] == '000000') { |
||||||
|
this.tableData = data['return_data']; |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
this.tableData.loading = false; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
// 唤醒编辑表单
|
||||||
|
showEdit(item?: GoodsTypeData) { |
||||||
|
if (item != null) { |
||||||
|
item.businessType = String(item.businessType); |
||||||
|
this.editForm.patchValue(item); |
||||||
|
if (!this.commonService.whetherStringIsNull(item.imgUrl)) { |
||||||
|
this.imgUrl = this.commonService.stitchImg(item.imgUrl); |
||||||
|
} |
||||||
|
} |
||||||
|
this.isVisibleEdit = true; |
||||||
|
} |
||||||
|
// 编辑表单提交
|
||||||
|
handleEdit(): void { |
||||||
|
|
||||||
|
if (this.editForm.valid) { |
||||||
|
if (this.imgUrl.length !== 0) { |
||||||
|
this.editForm.value.imgUrl = this.commonService.imgList(this.imgUrl); |
||||||
|
} |
||||||
|
this.goodsService.editGoodsBrand(this.editForm.value , (data: any) => { |
||||||
|
if (data['return_code'] === '000000') { |
||||||
|
this.msg.success("成功!"); |
||||||
|
this.isVisibleEdit = false; |
||||||
|
this.getRequest(); |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
}); |
||||||
|
} else { |
||||||
|
Object.values(this.editForm.controls).forEach(control => { |
||||||
|
if (control.invalid) { |
||||||
|
control.markAsDirty(); |
||||||
|
control.updateValueAndValidity({ onlySelf: true }); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
// 上传操作
|
||||||
|
handlePreview = async (file: NzUploadFile): Promise<void> => { |
||||||
|
if (!file.url && !file['preview']) { |
||||||
|
file['preview'] = await getBase64(file.originFileObj!); |
||||||
|
} |
||||||
|
this.previewImage = file.url || file['preview']; |
||||||
|
this.previewVisible = true; |
||||||
|
}; |
||||||
|
|
||||||
|
// 删除
|
||||||
|
delete(id: number): void { |
||||||
|
this.goodsService.deleteBran(id , (data: any) => { |
||||||
|
if (data['return_code'] === '000000') { |
||||||
|
this.msg.success("成功!"); |
||||||
|
this.getRequest(); |
||||||
|
} else { |
||||||
|
this.msg.error(data['return_msg']); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
import { NgModule } from '@angular/core'; |
||||||
|
import { CommonModule } from '@angular/common'; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@NgModule({ |
||||||
|
declarations: [], |
||||||
|
imports: [ |
||||||
|
CommonModule |
||||||
|
] |
||||||
|
}) |
||||||
|
export class MarketingModule { } |
@ -0,0 +1,9 @@ |
|||||||
|
import { Routes } from '@angular/router'; |
||||||
|
import {DiscountListComponent} from "./discount-list/discount-list.component"; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
export const MARKETING_ROUTES: Routes = [ |
||||||
|
{ path: 'discount-list', component: DiscountListComponent}, |
||||||
|
|
||||||
|
]; |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
@ -1,7 +1,7 @@ |
|||||||
export const environment = { |
export const environment = { |
||||||
production: true, |
production: true, |
||||||
baseUrl: 'https://hsgcs.dctpay.com/brest/', // 测试环境服务器地址(请求数据地址)
|
baseUrl: 'https://phgcs.dctpay.com/brest/', // 测试环境服务器地址(请求数据地址)
|
||||||
imageUrl: 'https://hsgcs.dctpay.com/filesystem/', |
orderUrl: 'https://phgcs.dctpay.com/order/', // 测试环境服务器地址(请求数据地址)
|
||||||
orderUrl: 'https://hsgcs.dctpay.com/order/', |
userUrl: 'https://phgcs.dctpay.com/user/', // 测试环境服务器地址(请求数据地址)
|
||||||
userUrl: 'https://hsgcs.dctpay.com/User/', |
imageUrl: 'https://phgcs.dctpay.com/filesystem/', |
||||||
}; |
}; |
||||||
|
Loading…
Reference in new issue