Browse Source

隐藏后台利率公告权重字段

zdd 6 years ago
parent
commit
f2a9adea0c

File diff suppressed because it is too large
+ 0 - 1
CZKJ.GBRS2.Web/wwwroot - 副本/21.0481cf6f6e00e04811d4.chunk.js


CZKJ.GBRS2.Web/wwwroot/21.ab62741e24164ecccf71.chunk.js → CZKJ.GBRS2.Web/wwwroot - 副本/21.ab62741e24164ecccf71.chunk.js


File diff suppressed because it is too large
+ 1 - 1
CZKJ.GBRS2.Web/wwwroot - 副本/index.html


CZKJ.GBRS2.Web/wwwroot/inline.a634915041cf5f1d5faf.bundle.js → CZKJ.GBRS2.Web/wwwroot - 副本/inline.a634915041cf5f1d5faf.bundle.js


File diff suppressed because it is too large
+ 1 - 0
CZKJ.GBRS2.Web/wwwroot/0.0a9bbb55363b735c917e.chunk.js


File diff suppressed because it is too large
+ 0 - 1
CZKJ.GBRS2.Web/wwwroot/0.c39e5e1fe4ea78b6b9d1.chunk.js


File diff suppressed because it is too large
+ 1 - 0
CZKJ.GBRS2.Web/wwwroot/21.2f580b6c13305a523757.chunk.js


File diff suppressed because it is too large
+ 1 - 1
CZKJ.GBRS2.Web/wwwroot/index.html


File diff suppressed because it is too large
+ 1 - 1
CZKJ.GBRS2.Web/wwwroot - 副本/inline.bc5dc25587ac0f417180.bundle.js


+ 5 - 2
cms/src/app/component/auto-table/auto-table.component.ts

@@ -94,6 +94,8 @@ export class AutoTableComponent implements OnInit {
94 94
 	@Input() tableCostomData: obj[];
95 95
 	//table过滤obj	(为true的则不显示)
96 96
 	@Input() tableFilterData: obj = { TypeId: true };
97
+	// 编辑过滤显示
98
+	@Input() editFilterData:obj={TypeId:true};
97 99
 	//获取table数据之后
98 100
 	@Output() getDataAfter:EventEmitter<any> = new EventEmitter<any>();
99 101
 	@Output() tdClick:EventEmitter<any> = new EventEmitter<any>();
@@ -210,7 +212,7 @@ export class AutoTableComponent implements OnInit {
210 212
 		this.getTableData();
211 213
 	}
212 214
 
213
-	editItem(item){console.log(item);
215
+	editItem(item){
214 216
 		let title;
215 217
 		if(item.title){
216 218
 			title = item.title;
@@ -220,7 +222,8 @@ export class AutoTableComponent implements OnInit {
220 222
 		let subscription = this.ajaxService.modalEdit(`编辑${title}`,{
221 223
 			getUrl:this.viewUrl,
222 224
 			sendData:{id:item.id,typeId:item.typeId},
223
-			setUrl:this.editUrl
225
+			setUrl:this.editUrl,
226
+			viewFilter:this.editFilterData,
224 227
 		});
225 228
 		subscription.subscribe(res =>{
226 229
 			if(res == "saveSuccess"){

+ 1 - 1
cms/src/app/routes/price/price.component.html

@@ -19,7 +19,7 @@
19 19
               </button>
20 20
           </ng-template>
21 21
           <ng-template #body>
22
-                  <auto-table #table [tableUrl]="tableUrl" [tableSendData]="tableSendData"></auto-table>
22
+                  <auto-table #table [tableUrl]="tableUrl" [tableSendData]="tableSendData" [tableFilterData]="tableFilterData" [editFilterData]="editFilterData"></auto-table>
23 23
           </ng-template>
24 24
       </nz-card>
25 25
 

+ 4 - 2
cms/src/app/routes/price/price.component.ts

@@ -12,6 +12,8 @@ export class PriceComponent implements OnInit {
12 12
 
13 13
 	typeList:any;//所有险种
14 14
 	tableSendData: any = { };
15
+	tableFilterData={sortOrder:true};
16
+	editFilterData={sortOrder:true};
15 17
 
16 18
   @ViewChild("table") table: AutoTableComponent;
17 19
 	tableUrl = "/Manage/PriceAnnouncement/GetTableModel";
@@ -24,7 +26,8 @@ export class PriceComponent implements OnInit {
24 26
 	addAccount() {
25 27
 		let subscription = this.ajaxService.modalEdit("新增利率公告", {
26 28
 			getUrl: '/Manage/priceAnnouncement/Add',
27
-			setUrl: '/Manage/priceAnnouncement/Add'
29
+			setUrl: '/Manage/priceAnnouncement/Add',
30
+			viewFilter:{sortOrder:true}
28 31
 		});
29 32
 		subscription.subscribe(res => {
30 33
 			if (res == "saveSuccess") {
@@ -37,7 +40,6 @@ export class PriceComponent implements OnInit {
37 40
 		this.httpClient.get(`/Manage/Type/GetTableListByParentId?pageIndex=1&parentId=169`)
38 41
             .subscribe((res:any) => {
39 42
 								this.typeList = TableDataTurnArr(res.tableData);;
40
-								console.log(this.typeList)
41 43
             }, (error) => {
42 44
                 console.log(error);
43 45
             })