Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
Taric Xin
2021-12-14 20:58:57 +08:00
9 changed files with 165 additions and 40 deletions

View File

@ -280,18 +280,17 @@ export class OrderManagementBulkComponent implements OnInit {
asyncData: () => this.getCatalogueMember(),
},
},
appId5: {
type: 'string',
serviceType: {
title: '服务类型',
type: 'string',
default: '',
ui: {
widget: 'select',
placeholder: '请选择',
widget: 'dict-select',
params: { dictKey: 'ServiceType' },
visibleIf: {
_$expand: (value: boolean) => value,
},
allowClear: true,
asyncData: () => this.getCatalogueMember(),
},
} as SFSelectWidgetSchema,
},
},
type: 'object',

View File

@ -267,18 +267,13 @@ export class OrderManagementVehicleComponent implements OnInit {
},
} as SFSelectWidgetSchema,
},
sex5: {
serviceType: {
title: '服务类型',
type: 'string',
default: 0,
enum: [
{ label: '未知', value: 0 },
{ label: '男', value: 1 },
{ label: '女', value: 2 },
{ label: '保密', value: 3 },
],
default: '',
ui: {
widget: 'select',
widget: 'dict-select',
params: { dictKey: 'ServiceType' },
visibleIf: {
_$expand: (value: boolean) => value,
},

View File

@ -76,13 +76,10 @@ export class SupplyManagementBulkComponent implements OnInit {
serviceType: {
title: '服务类型',
type: 'string',
default: 0,
enum: [
{ label: '抢单', value: 1 },
{ label: '指派', value: 2 },
],
default: '',
ui: {
widget: 'select',
widget: 'dict-select',
params: { dictKey: 'ServiceType' },
visibleIf: {
_$expand: (value: boolean) => value,
},
@ -92,8 +89,9 @@ export class SupplyManagementBulkComponent implements OnInit {
title: '结算依据',
type: 'string',
enum: [
{ label: '以收获为准', value: 1 },
{ label: '以货为准', value: 2 },
{ label: '全部', value: '' },
{ label: '以货为准', value: '1' },
{ label: '以发货为准', value: '2' },
],
ui: {
widget: 'select',

View File

@ -16,6 +16,7 @@ import { PublishGoodsChooseFamifiarComponent } from '../choose-famifiar/choose-f
import { SupplyManagementService } from '../../services/supply-management.service';
import { debug } from 'console';
import { PublishAddressListComponent } from './address-list/address-list.component';
import { PublishSuccessComponent } from './publish-success/publish-success.component';
@Component({
selector: 'app-publish-goods-onecar-publish',
templateUrl: './onecar-publish.component.html',
@ -662,7 +663,17 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
}
requests(url: any, params: any) {
this.service.request(url, params).subscribe((res: any) => {
console.log(res)
if (res) {
this.modalService.create({
nzTitle: '',
nzContent: PublishSuccessComponent,
nzWidth: 900,
nzFooter: null,
nzComponentParams: { type: 'onecar' }
});
} else {
this.service.msgSrv.error(res.msg);
}
})
}
// 打开地图

View File

@ -0,0 +1,8 @@
<div style="margin-top: 64px">
<nz-result nzStatus="success" nzTitle="下单成功!">
<div nz-result-extra>
<button nz-button nzSize="large" [nzType]="'primary'" (click)="continue()"> 继续下单</button>
<button nz-button nzSize="large" (click)="view()"> 查看货源</button>
</div>
</nz-result>
</div>

View File

@ -0,0 +1,88 @@
@import '~@delon/theme/index';
:host {
::ng-deep {
h3 {
margin-bottom: 20px;
font-size: 16px;
}
.submit {
width: 50%;
}
.login {
float: right;
line-height: @btn-height-lg;
}
}
}
::ng-deep {
.register-password-cdk {
.success,
.warning,
.error {
transition: color 0.3s;
}
.success {
color: @success-color;
}
.warning {
color: @warning-color;
}
.error {
color: @error-color;
}
.progress-pass > .progress {
.ant-progress-bg {
background-color: @warning-color;
}
}
}
}
.form-box{
display: block;
width: 368px;
margin: 0 auto;
}
.content {
background-color: #f0f3f7;
}
.main {
max-width: 1200px;
margin: 0 auto;
}
.header {
background: #fff;
}
.layout {
min-height: 100vh;
}
.logo {
display: flex;
margin: 16px 0;
line-height: 32px;
dt {
width: 95px;
height: 32px;
img {
vertical-align: top;
}
}
dd {
flex: 1;
margin-bottom: 0;
padding: 0 10px;
color: #1890ff;
font-weight: 500;
font-size: 24px;
}
}
.footer {
text-align: center;
background-color: #f0f3f7;
}

View File

@ -0,0 +1,31 @@
/*
* @Author: your name
* @Date: 2021-12-14 20:39:34
* @LastEditTime: 2021-12-14 20:43:18
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\supply-management\components\onecar-publish\publish-success\publish-success.component.ts
*/
import { Component } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { NzMessageService } from 'ng-zorro-antd/message';
@Component({
selector: 'publish-goods-publish-success',
templateUrl: './publish-success.component.html',
styleUrls: ['./publish-success.component.less']
})
export class PublishSuccessComponent {
type = 'onecar';
constructor(private route: ActivatedRoute, private router: Router, public msg: NzMessageService) {
this.type = route.snapshot.queryParams.type || 'onecar';
}
continue() {
window.location.reload();
}
view() {
this.router.navigate(['/supply-management/index'], { queryParams: { type: this.type } });
}
}

View File

@ -75,13 +75,10 @@ export class SupplyManagementVehicleComponent implements OnInit {
serviceType: {
title: '服务类型',
type: 'string',
enum: [
{ label: '抢单', value: 1 },
{ label: '指派', value: 2 },
],
default: '',
ui: {
widget: 'select',
widget: 'dict-select',
params: { dictKey: 'ServiceType' },
} as SFSelectWidgetSchema,
},
goodsName: {
@ -124,14 +121,9 @@ export class SupplyManagementVehicleComponent implements OnInit {
auditStatus: {
title: '审核状态',
type: 'string',
enum: [
{ label: '待审核', value: 1 },
{ label: '审核通过', value: 2 },
{ label: '不通过', value: 3 },
{ label: '已取消', value: 4 },
],
ui: {
widget: 'select',
widget: 'dict-select',
params: { dictKey: 'GoodsResourceAuditStatus' },
visibleIf: {
_$expand: (value: boolean) => value,
},

View File

@ -1,7 +1,7 @@
/*
* @Author: your name
* @Date: 2021-12-03 11:10:14
* @LastEditTime: 2021-12-13 15:23:25
* @LastEditTime: 2021-12-14 20:40:01
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\supply-management\supply-management.module.ts
@ -27,6 +27,7 @@ import { PublishchooseFamifiarSetCaptainComponent } from './components/choose-fa
import { PublishchooseFamifiarAddComponent } from './components/choose-famifiar/add/add.component';
import { SupplyManagementBulkPublishComponent } from './components/bulk-publish/bulk-publish.component';
import { PublishAddressListComponent } from './components/onecar-publish/address-list/address-list.component';
import { PublishSuccessComponent } from './components/onecar-publish/publish-success/publish-success.component';
const COMPONENTS: Type<void>[] = [
SupplyManagementIndexComponent,
@ -46,7 +47,9 @@ const COMPONENTS: Type<void>[] = [
PublishchooseFamifiarSetCaptainComponent,
PublishchooseFamifiarAddComponent,
SupplyManagementBulkPublishComponent,
PublishAddressListComponent
PublishAddressListComponent,
PublishSuccessComponent
];
@NgModule({