Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -280,18 +280,17 @@ export class OrderManagementBulkComponent implements OnInit {
|
|||||||
asyncData: () => this.getCatalogueMember(),
|
asyncData: () => this.getCatalogueMember(),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
appId5: {
|
serviceType: {
|
||||||
type: 'string',
|
|
||||||
title: '服务类型',
|
title: '服务类型',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'dict-select',
|
||||||
placeholder: '请选择',
|
params: { dictKey: 'ServiceType' },
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
_$expand: (value: boolean) => value,
|
_$expand: (value: boolean) => value,
|
||||||
},
|
},
|
||||||
allowClear: true,
|
} as SFSelectWidgetSchema,
|
||||||
asyncData: () => this.getCatalogueMember(),
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
type: 'object',
|
type: 'object',
|
||||||
|
|||||||
@ -267,18 +267,13 @@ export class OrderManagementVehicleComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
} as SFSelectWidgetSchema,
|
} as SFSelectWidgetSchema,
|
||||||
},
|
},
|
||||||
sex5: {
|
serviceType: {
|
||||||
title: '服务类型',
|
title: '服务类型',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 0,
|
default: '',
|
||||||
enum: [
|
|
||||||
{ label: '未知', value: 0 },
|
|
||||||
{ label: '男', value: 1 },
|
|
||||||
{ label: '女', value: 2 },
|
|
||||||
{ label: '保密', value: 3 },
|
|
||||||
],
|
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'dict-select',
|
||||||
|
params: { dictKey: 'ServiceType' },
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
_$expand: (value: boolean) => value,
|
_$expand: (value: boolean) => value,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -76,13 +76,10 @@ export class SupplyManagementBulkComponent implements OnInit {
|
|||||||
serviceType: {
|
serviceType: {
|
||||||
title: '服务类型',
|
title: '服务类型',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 0,
|
default: '',
|
||||||
enum: [
|
|
||||||
{ label: '抢单', value: 1 },
|
|
||||||
{ label: '指派', value: 2 },
|
|
||||||
],
|
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'dict-select',
|
||||||
|
params: { dictKey: 'ServiceType' },
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
_$expand: (value: boolean) => value,
|
_$expand: (value: boolean) => value,
|
||||||
},
|
},
|
||||||
@ -92,8 +89,9 @@ export class SupplyManagementBulkComponent implements OnInit {
|
|||||||
title: '结算依据',
|
title: '结算依据',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
enum: [
|
enum: [
|
||||||
{ label: '以收获为准', value: 1 },
|
{ label: '全部', value: '' },
|
||||||
{ label: '以发货为准', value: 2 },
|
{ label: '以收货为准', value: '1' },
|
||||||
|
{ label: '以发货为准', value: '2' },
|
||||||
],
|
],
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'select',
|
||||||
|
|||||||
@ -16,6 +16,7 @@ import { PublishGoodsChooseFamifiarComponent } from '../choose-famifiar/choose-f
|
|||||||
import { SupplyManagementService } from '../../services/supply-management.service';
|
import { SupplyManagementService } from '../../services/supply-management.service';
|
||||||
import { debug } from 'console';
|
import { debug } from 'console';
|
||||||
import { PublishAddressListComponent } from './address-list/address-list.component';
|
import { PublishAddressListComponent } from './address-list/address-list.component';
|
||||||
|
import { PublishSuccessComponent } from './publish-success/publish-success.component';
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-publish-goods-onecar-publish',
|
selector: 'app-publish-goods-onecar-publish',
|
||||||
templateUrl: './onecar-publish.component.html',
|
templateUrl: './onecar-publish.component.html',
|
||||||
@ -662,7 +663,17 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
requests(url: any, params: any) {
|
requests(url: any, params: any) {
|
||||||
this.service.request(url, params).subscribe((res: 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);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 打开地图
|
// 打开地图
|
||||||
|
|||||||
@ -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>
|
||||||
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -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 } });
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -75,13 +75,10 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
|||||||
serviceType: {
|
serviceType: {
|
||||||
title: '服务类型',
|
title: '服务类型',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
enum: [
|
default: '',
|
||||||
{ label: '抢单', value: 1 },
|
|
||||||
{ label: '指派', value: 2 },
|
|
||||||
],
|
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'dict-select',
|
||||||
|
params: { dictKey: 'ServiceType' },
|
||||||
} as SFSelectWidgetSchema,
|
} as SFSelectWidgetSchema,
|
||||||
},
|
},
|
||||||
goodsName: {
|
goodsName: {
|
||||||
@ -124,14 +121,9 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
|||||||
auditStatus: {
|
auditStatus: {
|
||||||
title: '审核状态',
|
title: '审核状态',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
enum: [
|
|
||||||
{ label: '待审核', value: 1 },
|
|
||||||
{ label: '审核通过', value: 2 },
|
|
||||||
{ label: '不通过', value: 3 },
|
|
||||||
{ label: '已取消', value: 4 },
|
|
||||||
],
|
|
||||||
ui: {
|
ui: {
|
||||||
widget: 'select',
|
widget: 'dict-select',
|
||||||
|
params: { dictKey: 'GoodsResourceAuditStatus' },
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
_$expand: (value: boolean) => value,
|
_$expand: (value: boolean) => value,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-12-03 11:10:14
|
* @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
|
* @LastEditors: Please set LastEditors
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @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
|
* @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 { PublishchooseFamifiarAddComponent } from './components/choose-famifiar/add/add.component';
|
||||||
import { SupplyManagementBulkPublishComponent } from './components/bulk-publish/bulk-publish.component';
|
import { SupplyManagementBulkPublishComponent } from './components/bulk-publish/bulk-publish.component';
|
||||||
import { PublishAddressListComponent } from './components/onecar-publish/address-list/address-list.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>[] = [
|
const COMPONENTS: Type<void>[] = [
|
||||||
SupplyManagementIndexComponent,
|
SupplyManagementIndexComponent,
|
||||||
@ -46,7 +47,9 @@ const COMPONENTS: Type<void>[] = [
|
|||||||
PublishchooseFamifiarSetCaptainComponent,
|
PublishchooseFamifiarSetCaptainComponent,
|
||||||
PublishchooseFamifiarAddComponent,
|
PublishchooseFamifiarAddComponent,
|
||||||
SupplyManagementBulkPublishComponent,
|
SupplyManagementBulkPublishComponent,
|
||||||
PublishAddressListComponent
|
PublishAddressListComponent,
|
||||||
|
PublishSuccessComponent
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
|||||||
Reference in New Issue
Block a user