fix style
This commit is contained in:
@ -35,6 +35,7 @@ export class AnnouncementMessageComponent implements OnInit {
|
||||
{ title: '公告内容', index: 'announcementContent' },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -77,6 +77,7 @@ export class AuditReasonConfigComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -67,6 +67,7 @@ export class BasicConfigComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -35,6 +35,7 @@ export class BtnManagementComponent implements OnInit {
|
||||
{ title: '按钮编码', index: 'code' },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -98,6 +98,7 @@ export class CartConfigComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -36,6 +36,7 @@ export class CloseAccountComponent implements OnInit {
|
||||
{ title: '客户编码', index: 'crmCustomerCode' },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -31,6 +31,7 @@ export class CrmManagementComponent implements OnInit {
|
||||
{ title: '客户编码', index: 'customerCode' },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-left',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -24,6 +24,7 @@ export class GoodsNameConfigComponent implements OnInit {
|
||||
{ title: '更新时间', index: 'modifyTime' },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -35,6 +35,7 @@ export class InsuranceSetComponent implements OnInit {
|
||||
{ title: '公告内容', index: 'announcementContent' },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -107,7 +107,7 @@ export class NetworkFreightComponent implements OnInit {
|
||||
title: '操作',
|
||||
width: '110px',
|
||||
fixed: 'right',
|
||||
className: 'text-left',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '基础设置',
|
||||
|
||||
@ -28,19 +28,19 @@ export class RoleManagementComponent implements OnInit {
|
||||
};
|
||||
|
||||
columns: STColumn[] = [
|
||||
{ title: '角色名称', index: 'roleName' },
|
||||
{ title: '角色描述', index: 'roleDescription' },
|
||||
{ title: '企业数量', index: 'userNumber', iif: _ => this.type === 'freight' },
|
||||
{ title: '创建人手机号', index: 'telephone' },
|
||||
{ title: '角色名称', className: 'text-center', index: 'roleName' },
|
||||
{ title: '角色描述', className: 'text-center', index: 'roleDescription' },
|
||||
{ title: '企业数量', className: 'text-center', index: 'userNumber', iif: _ => this.type === 'freight' },
|
||||
{ title: '创建人手机号', className: 'text-center', index: 'telephone' },
|
||||
{
|
||||
title: '创建时间',
|
||||
index: 'createTime',
|
||||
type: 'date',
|
||||
className: 'text-left',
|
||||
sort: true
|
||||
className: 'text-center'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
|
||||
<nz-card class="content-box">
|
||||
<div class="d-flex justify-content-between mb-sm">
|
||||
<label style="font-size: 18px;">员工列表</label>
|
||||
<label style="font-size: 18px;"></label>
|
||||
<div>
|
||||
<button nz-button nzType="primary" (click)="staffAction()" acl [acl-ability]="['SYSTEM-STAFF-add']">添加员工</button>
|
||||
<button nz-button acl [acl-ability]="['SYSTEM-STAFF-export']">导出</button>
|
||||
|
||||
@ -28,13 +28,14 @@ export class StaffManagementComponent implements OnInit {
|
||||
};
|
||||
|
||||
columns: STColumn[] = [
|
||||
{ title: '', index: 'key', type: 'checkbox' },
|
||||
{ title: '员工姓名', index: 'name' },
|
||||
{ title: '手机号码', index: 'telephone' },
|
||||
{ title: '角色', index: 'roleName' },
|
||||
{ title: '', index: 'key', className: 'text-center', type: 'checkbox' },
|
||||
{ title: '员工姓名', className: 'text-center', index: 'name' },
|
||||
{ title: '手机号码', className: 'text-center', index: 'telephone' },
|
||||
{ title: '角色',className: 'text-center', index: 'roleName' },
|
||||
{
|
||||
title: '最后登录时间',
|
||||
index: 'lastLoginDate',
|
||||
className: 'text-center',
|
||||
type: 'date'
|
||||
},
|
||||
{
|
||||
@ -49,6 +50,7 @@ export class StaffManagementComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
buttons: [
|
||||
{
|
||||
text: '编辑',
|
||||
|
||||
Reference in New Issue
Block a user