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

This commit is contained in:
Taric Xin
2022-01-07 13:54:40 +08:00
4 changed files with 19 additions and 42 deletions

View File

@ -2,7 +2,7 @@ import { Router } from '@angular/router';
/* /*
* @Author: your name * @Author: your name
* @Date: 2022-01-05 11:01:55 * @Date: 2022-01-05 11:01:55
* @LastEditTime: 2022-01-06 20:49:42 * @LastEditTime: 2022-01-06 21:09:31
* @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\contract-management\components\contract-template-detail\contract-template-detail.component.ts * @FilePath: \tms-obc-web\src\app\routes\contract-management\components\contract-template-detail\contract-template-detail.component.ts
@ -94,17 +94,6 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
}, },
} as SFSelectWidgetSchema, } as SFSelectWidgetSchema,
}, },
// contractType: {
// type: 'string',
// title: '单据类型',
// ui: {
// widget: 'select',
// placeholder: '请选择',
// visibleIf: {
// templateType: value => value === true
// }
// } as SFSelectWidgetSchema
// },
contractType: { contractType: {
title: '单据类型', title: '单据类型',
type: 'string', type: 'string',
@ -119,6 +108,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
} as SFSelectWidgetSchema, } as SFSelectWidgetSchema,
}, },
} }
,required: ['templateName','templateType']
}; };
this.ui = { this.ui = {
'*': { '*': {
@ -161,6 +151,17 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
save () { save () {
console.log(this.sf.value); console.log(this.sf.value);
if( !this.sf.value.templateName || !this.sf.value.templateType || !this.sf2.value.templateContent || !this.title) {
this.service.msgSrv.error("必填参数为空,请检查再重新保存!");
return;
}
if(this.sf.value.templateType == 'MX' ) {
console.log(this.sf.value.contractType)
if(this.sf.value.contractType == '') {
this.service.msgSrv.error("必填参数为空,请检查再重新保存!");
return;
}
}
console.log(this.sfdata); console.log(this.sfdata);
console.log(this.sf2.value); console.log(this.sf2.value);
console.log(this.title); console.log(this.title);

View File

@ -175,34 +175,7 @@ export class OrderManagementTemplateComponent implements OnInit {
this.sf.reset(); this.sf.reset();
this._$expand = false; this._$expand = false;
} }
/*
* 审核关闭弹窗
view: 1
浮动费用: 0
查看评价: 3
*/
handleCancel(type: string) {
const paramsa = {
handleStatus: 0,
id: this.channelId
}
// this.service.request(this.service.$api_get_dealWithComplaint, paramsa).subscribe((res: any) =>{
// console.log(res)
// if(res) {
// this.service.msgSrv.success('已拒绝!')
// this.isVisibleRE = false
// } else{
// this.service.msgSrv.error(res?.msg)
// }
// })
}
/**
/**
*查看评价
*/
viewEvaluate(item: any) {
this.channelId = item.id;
}
edit(value: any) { edit(value: any) {
this.router.navigate(['/contract-management/template/detail/' + value.id],{ this.router.navigate(['/contract-management/template/detail/' + value.id],{
queryParams: { queryParams: {
@ -231,9 +204,10 @@ export class OrderManagementTemplateComponent implements OnInit {
this.modal.confirm({ this.modal.confirm({
nzTitle: '<i>删除确认</i>', nzTitle: '<i>删除确认</i>',
nzOnOk: () => nzOnOk: () =>
this.service.request(this.service.$api_deletebatch_contractTemplate,value.id).subscribe(res => { this.service.request(this.service.$api_deletebatch_contractTemplate, [value.id]).subscribe(res => {
if (res) { if (res) {
this.service.msgSrv.success('删除成功!'); this.service.msgSrv.success('删除成功!');
this.st.reload(1)
} }
}) })
}); });

View File

@ -654,7 +654,7 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
.subscribe(res => { .subscribe(res => {
if (res) { if (res) {
this.sf3.getProperty('/goodsNameId')!.schema.enum = res; this.sf3.getProperty('/goodsNameId')!.schema.enum = res;
this.sf3.getProperty('/goodsNameId')!.widget.reset(res); this.sf3.getProperty('/goodsNameId')!.widget?.reset(res);
if(this.sf3data.goodsNameId){ if(this.sf3data.goodsNameId){
this.sf3.setValue('/goodsNameId',this.sf3data.goodsNameId); this.sf3.setValue('/goodsNameId',this.sf3data.goodsNameId);
} }

View File

@ -165,6 +165,7 @@ export class FreightComponentsEnterpriseAuditComponent implements OnInit {
type: 'badge', type: 'badge',
badge: { badge: {
10: { text: '待审核', color: 'processing' }, 10: { text: '待审核', color: 'processing' },
15: { text: '已撤销', color: 'processing' },
20: { text: '已成功', color: 'success' }, 20: { text: '已成功', color: 'success' },
30: { text: '审核失败', color: 'warning' } 30: { text: '审核失败', color: 'warning' }
} }
@ -265,6 +266,7 @@ export class FreightComponentsEnterpriseAuditComponent implements OnInit {
enum: [ enum: [
{ label: '全部', value: '' }, { label: '全部', value: '' },
{ label: '待审核', value: 10 }, { label: '待审核', value: 10 },
{ label: '已撤销', value: 15 },
{ label: '已成功', value: 20 }, { label: '已成功', value: 20 },
{ label: '审核失败', value: 30 } { label: '审核失败', value: 30 }
], ],