zhangyanpeng
2024-05-29 1f227a1cf627526701c652ba84bae3e430bba8d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
    <!doctype html>
<html>
    <head>
        <meta charset="utf-8"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Cache-control" content="no-cache"><meta http-equiv="Cache" content="no-cache">
        <title>非直采客商管理</title>
        <script type="text/javascript">
            var pageVue = null;
            function loadJsCss(callback) {
                var jscss_urls = [];
                window.top.initJsCss(document, jscss_urls, callback);
            };
            
            function initVue() {
                new ListVue({
                    el: "#vbody",
                    data: {
                        dataname: "md_org_account",
                        title: "非直采客商管理",
                        orderby: "update_time desc",
                        filterfieldClick: {},
                        tablefieldClick: {},
                        formfieldClick: {},
 
                        dataRequest: [],
                        dataRequestObj:{},
 
                        filterFields: [],
                        tableFields: [],
                        cbuttons_r: {},
                        ctabs_r: {},
                        isCustomer: false,
                        filterTxt: "md_org_account.state_code='Open' and md_org_account.actor_code='Second' ",
                        
                    },
                    created() {
                        this.isCustomer = window.top.vue.isCustomer
                        if (this.isCustomer && window.top.vue.userinfo.currentactor && window.top.vue.userinfo.currentactor.target_id) { // 
                            this.filterTxt += " and md_org_account.platform_account_id='"+ window.top.vue.userinfo.currentactor.target_id +"'"
                        }
                    },
                    mounted() {
                        var me = this;
                        if (window.top.tab.selected.option.page_id) {
                            this.title = window.top.tab.selected.option.menutitle
                            getPageByPageId(window.top.tab.selected.option.page_id, function(result){
                                me.cbuttons_r = result.buttons_r;
                                //标记1:预加载数据,cbuttons_r,buttons_r在哪没找到,dataRequestObj是?,以及上方if,是if为true才预加载,那if的是?
                                //预加载数据
                                if (me.dataRequest && me.dataRequest.length) {
                                    var result = {};
                                    me.loadRequestData(me.dataRequest, result, function(data) {
                                        me.dataRequestObj = data;
                                        //预加载数据后给哪些字段设置options或formatterjson
                                        
                                        me.initData();
                                    });
                                }
                                else {
                                    me.initData();
                                }
                                
                                me.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
                                    hideLoading();
                                });
                            })
                        }
                    },
                    methods:{
                        initData() {
                            var me = this;
                            
                            this.onQuery(function(result, callback) {//查询后的回调,用于获取字段的
                                if (result.meta && result.meta[me.dataname] && result.meta[me.dataname].fields) {
                                    var metas = clone(result.meta[me.dataname].fields);
                                    var filterFields_ = [];
                                    var tableFields_ = [];
                                    
                                    metas.map(f=>{
                                        f.isshow = "T";
 
                                        if(f.field == 'category_code' || f.field == 'is_preload' || f.field == 'credit_amt' || f.field == 'credit_available' || f.field == 'order_date' || f.field == 'hope_delivery' || f.field == 'amt_available'){
                                            f.isshow = "F";
                                        }
                                        if (f.isfilter) {
                                            if (f.field == "state_name") {
                                                f.options = me.dataRequestObj.machine_state;
                                            }
                                            filterFields_.push(clone(f));
                                        }
                                        else {
                                            var filter_f = clone(f);
                                            filter_f.isshow = "F";
                                            filterFields_.push(filter_f);
                                        }
                                        
                                        tableFields_.push(clone(f));
                                    })
                                    if (!me.filterFields || (me.filterFields && me.filterFields.length == 0)) {
                                        me.filterFields = clone(filterFields_);
                                        me.tableFields = clone(tableFields_);
                                        
                                        //字段数组转字段obj,目的为了筛选时获取字段属性
                                        me.fieldsToFieldsObj();
                                        
                                        //设置字段事件
                                        me.tableFieldClick();
                                    }
                                }
                                
                                if (callback) {
                                    callback();
                                }
                            });
                        },
                        
                        tableFieldClick() {
                            var me = this;
                            
                            //表格字段事件设置
                            this.tablefieldClick = {
                                state_name: {//状态
                                    val: {//有值时的点击事件
                                        notclick_val: ["草稿","录入"],//不可点击的值,1、是数组["11","22"];2、以“;”分隔的字符串"111;222"
                                        notclick_bindfield: [],
                                        onclick: function(obj) {
                                            var config = {
                                                totab: false,
                                                width: "1100px",
                                                height: "520px",
                                                icon: "icon-product",
                                                text: "流程步骤",
                                                id: "popup_workflow_step_user" + obj.row.id,
                                                url: "module/tool/page/popup_workflow_step_user.html?v=2023020703",
                                                data: obj.row,
                                                delta: {},//{machine_code: "Org_Account_Open"},
                                                sceneCode: "browse",//"refuseedit",//"approval", //"add"//"browse",
                                                callback: function(obj, callback) {
                                                    if (callback) {
                                                        callback();
                                                    }
                                                }
                                            };
                                            me.doPopupByPublic(config);
                                        },
                                    },    
                                },
                                code: {//字段事件设置
                                    val: {//有值时的点击事件
                                        notclick_val: "",//不可点击的值,1、是数组["11","22"];2、以“;”分隔的字符串"111;222"
                                        notclick_bindfield: [],//当该字段值等于指定字段值时不可点击["filterfield": "111"]
                                        onclick: function(obj) {//数据值点击事件
                                            var url = "customer_basic_acct.html";
                                            
                                            var config = {
                                                totab: false, //true: 以Tab导航的方式打开
                                                width: "1100px",
                                                height: "520px",
                                                icon: "icon-product",
                                                text: "客商信息详情",
                                                id: "customer_acct" + obj.row.id,//totab: true时需设置,用于判断是否已打开此页面
                                                url: "module/md/page/customer/page/" + url,
                                                data: obj.row,
                                                delta: {closeCode:"1"},
                                                sceneCode: "browse",//"refuseedit",//"approval", //"add"//"browse",
                                                callback: function(obj, callback) {
                                                    me.onQuery();
                                                    if (callback) {
                                                        callback();
                                                    }
                                                }
                                            };
                                            me.doPopupByPublic(config);
                                        },
                                    },    
                                },
                            };
                        },
                        
                        rowClick(obj){
                            var me = this;
                            me.selectedrow = obj.row;
                        },
                        
                        addCustomer(){
                            let me = this;
                            var config = {
                                totab: true, //true: 以Tab导航的方式打开
                                width: "1000px",
                                height: "500px",
                                icon: "icon-product",
                                text: "商业新增",
                                id: "customer_edit",//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/md/page/customer/page/customer_edit.html",
                                data: {},
                                delta: {},
                                sceneCode: "add",//"refuseedit",//"approval", //"add"//"browse",
                                callback: function(obj, callback) {
                                    me.onQuery();
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                        },
                        editData(sceneCode){
                            var me = this;
                            var row = me.selectedrow;
                            if(!row){
                                Root.message({
                                    type: 'warning',
                                    message: '请选择一条数据'
                                });
                                return;
                            }
                            var config = {
                                totab: true, //true: 以Tab导航的方式打开
                                width: "900px",
                                height: "500px",
                                icon: "icon-product",
                                text: "客户编辑",
                                id: "customer_edit" + row.id,//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/md/page/customer/page/customer_edit.html",
                                data: row,
                                delta: {},
                                sceneCode: sceneCode,//"refuseedit",//"approval", //"add"//"browse",
                                callback: function(obj, callback) {
                                    me.onQuery();
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                        },
                        
                        changeData() {
                            var me = this;
                            Root.confirm('确定变更【' + this.selectedrow.name + '】吗?', '变更提示', {
                              confirmButtonText: '变 更',
                              cancelButtonText: '取 消',
                              type: 'warning'
                            }).then(() => {
                                me.doChangeData();
                            }).catch(() => {
                                Root.message({
                                    type: 'info',
                                    message: '已取消变更'
                                });          
                            });
                        },
                        
                        doChangeData(){
                            var me = this;
                            var row = me.selectedrow;
                            if(!row){
                                Root.message({
                                    type: 'warning',
                                    message: '请选择一条数据'
                                });
                                return;
                            }
                            var config = {
                                totab: true, //true: 以Tab导航的方式打开
                                width: "900px",
                                height: "500px",
                                icon: "icon-product",
                                text: "经销商变更",
                                id: "customer_change" + row.id,//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/md/page/customer/page/customer_change.html",
                                data: row,
                                delta: {},
                                sceneCode: "change",//"refuseedit",//"approval", //"add"//"browse",
                                callback: function(obj, callback) {
                                    me.onQuery();
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                        },
                        
                        // openCustomer(){
                        //     let me = this;
                        //     var row = me.selectedrow;
                        //     if(!row){
                        //         Root.message({
                        //             type: 'warning',
                        //             message: '请选择一条数据'
                        //         });
                        //         return;
                        //     }
                        //     if(row.state_name == "已开户"){
                        //         Root.message({
                        //             type: 'warning',
                        //             message: '该经销商已开户'
                        //         });
                        //         return;
                        //     }
                        //     var config = {
                        //         totab: false, //true: 以Tab导航的方式打开
                        //         width: "1100px",
                        //         height: "520px",
                        //         icon: "icon-product",
                        //         text: "客户开户",
                        //         id: "test_page",//totab: true时需设置,用于判断是否已打开此页面
                        //         url: "module/md/page/customer/page/customer_acct.html",
                        //         data: row,
                        //         delta: {},
                        //         sceneCode: "add",//"refuseedit",//"approval", //"add"//"browse",
                        //         callback: function(obj, callback) {
                        //             me.onQuery();
                        //             if (callback) {
                        //                 callback();
                        //             }
                        //         }
                        //     };
                        //     me.doPopupByPublic(config);
                        // },
                        // approvalData(){
                        //     let me = this;
                        //     var row = me.selectedrow;
                        //     if(!row){
                        //         Root.message({
                        //             type: 'warning',
                        //             message: '请选择一条数据'
                        //         });
                        //         return;
                        //     }
                            
                        //     var config = {
                        //         totab: false, //true: 以Tab导航的方式打开
                        //         width: "1100px",
                        //         height: "520px",
                        //         icon: "icon-product",
                        //         text: "客户开户审批",
                        //         id: "test_page",//totab: true时需设置,用于判断是否已打开此页面
                        //         url: "module/md/page/customer/page/customer_acct.html",
                        //         data: row,
                        //         delta: {},
                        //         sceneCode: "approval",//"refuseedit",//"approval", //"add"//"browse",
                        //         callback: function(obj, callback) {
                        //             me.onQuery();
                        //             if (callback) {
                        //                 callback();
                        //             }
                        //         }
                        //     };
                        //     me.doPopupByPublic(config);
                        // },
                        
                        //关户或作废
                        // changeData() {
                        //     var me = this;
                        //     Root.confirm('确定变更【' + this.selectedrow.name + '】吗?', '变更提示', {
                        //       confirmButtonText: '变 更',
                        //       cancelButtonText: '取 消',
                        //       type: 'warning'
                        //     }).then(() => {
                        //         me.editData();
                        //     }).catch(() => {
                        //         Root.message({
                        //             type: 'info',
                        //             message: '已取消变更'
                        //         });          
                        //     });
                        // },
                        
                        //关户或作废
                        // closeData() {
                        //     var me = this;
                        //     Root.confirm('确定将【' + this.selectedrow.name + '】关户吗?', '关户提示', {
                        //       confirmButtonText: '关 户',
                        //       cancelButtonText: '取 消',
                        //       type: 'warning'
                        //     }).then(() => {
                        //         let param = {
                        //             id: me.selectedrow.id,
                        //             dataname: "md_org",
                        //         }
                        //         Server.call("root/data/Close", param, function(result) {
                        //             console.log(result);
                        //             Root.message({
                        //                 type: 'success',
                        //                 message: '已关户'
                        //             }); 
                        //             me.onQuery();
                        //         });
                        //     }).catch(() => {
                        //         Root.message({
                        //             type: 'info',
                        //             message: '已取消关户'
                        //         });          
                        //     });
                        // },
                        
                        //主界面提交
                        dataSubmit() {
                            var me = this;
                            var row = this.selectedrow;
                        
                            let param = {
                                dataName: "md_org_data",
                                id: row.id,
                            }
                            Server.call("root/data/InputCommit", param, function(result) {  //标记1:inputCommit是哪里的,这个dataName是怎么来的
                                Root.message({
                                    type: 'success',
                                    message: '提交成功'
                                }); 
                                me.onQuery();
                            });
                        },
                        
                        onAddRecord() {
                            var menuobj = getMainMenuById("A6-01-03");
                            var parames = {
                                menuid: "A6-01-03",
                                delta: {
                                    filterobj: {
                                        customer_name: this.selectedrow.name
                                    }
                                }
                            }
                            Root.popupParames = parames;
                            Root.tab.open(menuobj, false); 
                        },
                        
                        onAddRecord2() {
                            var me = this;
                            
                            var config = {
                                totab: true, //true: 以Tab导航的方式打开
                                icon: "icon-product",
                                text: "备案申请",
                                id: "record_add_c" + me.selectedrow.id,//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/agreement/page/record_add.html",
                                data: {},
                                delta: {org: me.selectedrow},
                                sceneCode: "add",//"refuseedit",//"approval", //"add"//"browse",
                                callback: function(obj, callback) {
                                    me.onQuery();
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                        },
 
                        // onDownload() {
                        //     let me = this;
                        //     var filter_ = "1 = 1";
                        //     // if(me.saveUser != "") {
                        //     //     filter_ = " customer_code = '" + me.saveUser + "'";
                        //     // }
                        //     filter_ = this.getFilterData(filter_);
                            
                        //     let param = {
                        //         dataname: "orgAddReport", //'md_org_data',
                        //         filename: '经销商新增导出' + String(new Date().getTime()),
                        //         filter: filter_,
                        //         orderby: "update_time desc",
                        //         token: Root.getToken()
                        //     }
 
                        //     textdownloadForm(param);
                        // },
 
                        onDownload() {
                            let me = this;
                            var filter_ = "1 = 1";
                            filter_ = this.getFilterData(filter_);
                            console.log("download", filter_);
                            let param = {
                                sign: "md_org_data",
                                filename: '经销商新增导出' + String(new Date().getTime()),
                                filter: filter_,
                                orderby: "update_time desc",
                                token: Root.getToken()
                            }
 
                            me.textdownloadForm(param);
                        },
 
                        textdownloadForm(params) {//post文件流下载
                            let form = document.createElement('form');
                            form.id = 'form_download';
                            form.name = 'form_download';
                            document.body.appendChild(form);
                            //循环创建input框
                            for (let obj in params) {
                                if (params.hasOwnProperty(obj)) {
                                    let input = document.createElement('input')
                                    input.type = 'hidden'
                                    input.name = obj;
                                    input.value = params[obj]
                                    form.appendChild(input)
                                }
                            };
                            form.method = 'post'; //请求方式
                            form.action = window.top.config.url_root + "root/exports/exportSheetsExcel?token=" + Root.getToken();
                            form.submit(); // form表单提交
                            
                            document.body.removeChild(form); // 移除创建的元素
                        },
                        
                        //信息修改
                        editPart() {
                            var me = this;
                            var row = me.selectedrow;
 
                            if(!row){
                                Root.message({
                                    type: 'warning',
                                    message: '请选择一条数据'
                                });
                                return;
                            }
                            var config = {
                                totab: false, //true: 以Tab导航的方式打开
                                width: "600px",
                                height: "200px",
                                icon: "icon-product",
                                text: "客户信息修改",
                                id: "customer_edit_part" + row.id,//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/md/page/customer/page/customer_edit_part.html",
                                data: row,
                                delta: {},
                                sceneCode: "edit",//"refuseedit",//"approval", //"add"//"browse",
                                callback: function(obj, callback) {
                                    me.onQuery();
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                        },
                    }
                });
            };
            loadJsCss(function () {
                initVue();
            });
        </script>
    </head>
    
    <body style="margin: 0px;" >
        <div v-cloak id="vbody">
            <div id="page_root">
                <div class="topbar">
                    <span :class="page_title == 'right' ? 'h_page_title_right' : 'h_page_title_left'"><span class="h_page_title_txt">{{title}}</span></span>
                    
                    <div :class="page_title == 'right' ? 'h_page_button_left' : 'h_page_button_right'">
                    </div>
                </div>
                <div class="h_dialog__body">
                    <h-table
                        v-if="isRefresh"
                        ref="table1"
                        :table-fields="tableFields" 
                        :table-data="tableData" 
                        :is-edit-table-data="isEditTableData"
                        :table-field-click="tablefieldClick"
                        :pagesize="pagesize"
                        :pagenum="pagenum"
                        :total="total"
                        :table-height="tableHeight"
                        :is-highlight-row="true"
                        :isdraggableorder="cbuttons_r.Set"
                        
                        v-on:get-data="getData"
                        
                        v-on:cell-click="cellClick"
                        v-on:row-click="rowClick"
                        v-on:order-fields="orderTableFields"
                    >
                    </h-table>
                </div>
            </div>
            
        </div>    
        <div id="page_loading" style="position: absolute; top:0px; width: 100vw; height: 50vh;">
            <div class="spinner">
              <div class="cube1"></div>
              <div class="cube2"></div>
            </div>
        </div>
        
        <style>
            [v-cloak] {
                display: none !important;
            }
            .prefixclass {
                width: 10px;
                height: 10px;
                border-radius: 5px;
                background-color: #e6372b;
                display: inline-block;
            }
        </style>
    </body>
</html>