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
<!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 = [
                    {id: "css_m1", type: "css", url: "root/css/tree.css"},
                ];
                window.top.initJsCss(document, jscss_urls, callback);
            };
            
            function initVue() {
                new TreeVue({
                    el: "#vbody",
                    data: {
                        title: "销售架构",
                        dataname: "version_preparatory_md_position",
                        treeTxtFormatter: "{name}【{version_preparatory_md_position_hierarchy__employee_name}】",
                        maxlevel: 6,
                        filterObjBydefault: {
                            "version_preparatory_md_position.category_code": "Sales"
                        },
                        filterTxt:"",
                        isTreeReadonly: true,
                        pageAttr: {
                            heightType: "popuppage"
                        },
                        dataRequest: [
                            {
                                name: "md_org", // 公司
                                dataname: "md_org_master",
                                // url: "root/data/newEntity",
                                // paramsobj: {dataname: "md_org_data", type_code:"Distributor"},
                                isnotoption: false, //true:不是选项
                                code:"id",//是下拉选项时设置
                                label:"short_name",//是下拉选项时设置
                                filter: "category_code='Master'"
                                
                            },
                            {
                                name: "md_bu", // BU
                                dataname: "md_bu",
                                // url: "root/data/newEntity",
                                // paramsobj: {dataname: "md_org_data", type_code:"Distributor"},
                                isnotoption: false, //true:不是选项
                                code:"id",//是下拉选项时设置
                                label:"name",//是下拉选项时设置
                                // orderby: "index_no",
                                filter: ""
                            },
                            
                            {
                                name: "md_bu_org", // 公司+BU
                                dataname: "md_bu_org",
                                // url: "root/data/newEntity",
                                // paramsobj: {dataname: "md_org_data", type_code:"Distributor"},
                                isnotoption: true, //true:不是选项
                                orderby: "company_id, bu_id",
                                filter: "state_code='Open'"
                            },
                        ],
                        
                        org_bu_list: [], // 公司+BU的数组
                        dataRequestObj:{},
                        
                        treeFilter: {
                            orgid: "",
                            buid: "",
                        },
                        optionsOrg: [],
                        optionsBU: [],
                        
                        filtersobj:{},  
                        filterFieldsObj_p: {},
                        currentnodekey: "",
                        filter_node_id: "1<>1",
                        cbuttons_r: {},
                        
                        popupParames: {},
                        select_position_obj: {},
                        
                        isedit: false,
                    },
                    created() {
                        this.popupParames = clone(Root.popupParames);
                        this.title = this.popupParames.title || this.popupParames.text
                        if (this.popupParames.filter) {
                            this.filterTxt = this.popupParames.filter
                        }
                        /* 
                         delta: {
                             company_id: me.formData.company_id,
                             bu_id: me.formData.bu_id,
                         },
                         */
                        if (this.popupParames.delta) {
                            if (this.popupParames.delta.company_id) {
                                this.treeFilter.orgid = this.popupParames.delta.company_id
                            }
                            if (this.popupParames.delta.bu_id) {
                                this.treeFilter.buid = this.popupParames.delta.bu_id
                            }
                            
                            if (this.popupParames.delta.select_position && this.popupParames.delta.select_position.length) {
                                var select_position_obj_ = {}
                                this.popupParames.delta.select_position.map(s_p=>{
                                    select_position_obj_[s_p.position_id] = true
                                })
                                this.select_position_obj = clone(select_position_obj_)
                            }
                            
                        }
                        
                        if (this.popupParames.sceneCode) {
                            if (this.popupParames.sceneCode == "add") {//新增
                                this.isedit = true;
                            }
                        }
                    },
                    
                    mounted() {
                        var me = this;
                        //预加载数据
                        if (me.dataRequest && me.dataRequest.length) {
                            var result = {};
                            me.loadRequestData(me.dataRequest, result, function(data) {
                                me.dataRequestObj = data;
                                //预加载数据后给哪些字段设置options或formatterjson
                                if (me.dataRequestObj.md_org) {
                                    var optionOrg_all = {code: "", value: "全部公司"};
                                    var optionsOrg_ = clone(me.dataRequestObj.md_org);
                                    optionsOrg_.unshift(optionOrg_all);
                                    me.optionsOrg = optionsOrg_;
                                }
                                if (me.dataRequestObj.md_bu) {
                                    var optionBU_all = {code: "", value: "全部BU"};
                                    var optionsBU_ = clone(me.dataRequestObj.md_bu);
                                    optionsBU_.unshift(optionBU_all);
                                    me.optionsBU = optionsBU_;
                                }
                                
                                if (me.dataRequestObj.md_bu_org) {
                                    // org_bu_list: [], // 公司+BU的数组 md_bu_org
                                    var org_bu_list_ = [];
                                    me.dataRequestObj.md_bu_org.map(ob=>{
                                        var r_ = {
                                            id: ob.company_id + ob.bu_id,
                                            parent_id: ob.company_id,
                                            company_id: ob.company_id,
                                            bu_id: ob.bu_id,
                                            name: ob.bu_name
                                        }
                                        org_bu_list_.push(r_);
                                    })
                                    me.org_bu_list = clone(org_bu_list_);
                                }
                                
                                //获取数据
                                me.onTreeFilterChange();
                                me.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
                                    hideLoading();
                                });
                            });
                        }
                        else {
                            //获取数据
                            me.onTreeFilterChange();
                            
                            me.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
                                hideLoading();
                            });
                        }
                    },
                    
                    methods:{
                        //关闭弹窗
                        closeDialog() {
                            this.docloseDialog(true);
                        },
                        
                        //关闭前调回调
                        saveAfter() {
                            var me = this;
                            if(this.popupParames.callback) {
                                let obj = {
                                    row: clone(this.selectedrow)
                                }
                                this.popupParames.callback(obj, function() {
                                    me.docloseDialog();
                                });
                            }
                            else {
                                me.docloseDialog();
                            }
                        },
                        
                        // 校验岗位是否为叶子节点
                        checkPosition() {
                            if (this.selectedrow && this.selectedrow.children && this.selectedrow.children.length) {
                                Root.message({
                                    type: 'warning',
                                    message: '请选择销售工程师节点数据'
                                });
                                return;
                            }
                            else {
                                if (this.select_position_obj[this.selectedrow.id]) {
                                    Root.message({
                                        type: 'warning',
                                        message: '该岗位已添加'
                                    });
                                    return;
                                }
                                else {
                                    this.saveAfter()
                                }
                                
                            }
                        },
                        
                        initData() {
                            var me = this;
                            this.onQuery(function(result, callback) {//查询后的回调,用于获取字段的
                                me.dataRequestObj.md_org.map(org=>{
                                    org.isnotnode_edit = true; // 节点不可增删改
                                    if (me.treeFilter.orgid) {
                                        if (org.id == me.treeFilter.orgid) {
                                            me.initTreeData.unshift(org)
                                        }
                                    }
                                    else {
                                        me.initTreeData.unshift(org)
                                    }
                                })
                                me.org_bu_list.map(ob=>{
                                    ob.isnotnode_edit = true; // 节点不可增删改
                                    // ob.isnot_nodeedit = true; // 节点不可改
                                    // ob.isnot_nodedel = true; // 节点不可删
                                    if (me.treeFilter.orgid && me.treeFilter.buid) {
                                        if (ob.company_id == me.treeFilter.orgid && ob.bu_id == me.treeFilter.buid) {
                                            me.initTreeData.unshift(ob)
                                        }
                                    }
                                    else if (me.treeFilter.buid) {
                                        if (ob.bu_id == me.treeFilter.buid) {
                                            me.initTreeData.unshift(ob)
                                        }
                                    }
                                    else {
                                        me.initTreeData.unshift(ob)
                                    }
                                })
                                me.initTreeData.map(nodedata=>{
                                    nodedata.isnotnode_edit = true; // 节点不可增删改
                                    if (!nodedata.parent_id) {
                                        nodedata.parent_id = nodedata.company_id + nodedata.bu_id
                                    }
                                    
                                    if (nodedata.isbottom) { // 判断是否存在最底标识,有则不能有添加按键
                                        
                                    }
                                    else {
                                        nodedata.ishnodeadd = true;
                                    }
                                })
                                
                                let initTreeData_ = ArrayToTree(clone(me.initTreeData), "name", "parent_id"); // ishnodeadd
                                me.treeData = initTreeData_;
                                
                                if (callback) {
                                    callback();
                                }
                            });
                        },
                        
                        onTreeFilterChange() {
                            var me = this;
                            this.filterTxt = " 1=1 ";
                            // 获取过滤公司值
                            if (this.treeFilter.orgid == "") {
                                var orgid_ = "version_preparatory_md_position.company_id in (";
                                this.optionsOrg.map(oo=>{
                                    orgid_ += "'" + oo.code + "',"
                                })
                                orgid_ = orgid_.substring(0, orgid_.length - 1);
                                orgid_ += ")";
                                this.filterTxt = orgid_;
                            }
                            else {
                                this.filterTxt = "version_preparatory_md_position.company_id='" + this.treeFilter.orgid + "'";
                            }
                            // 获取过滤BU值
                            if (this.treeFilter.buid == "") {
                                var buid_ = "version_preparatory_md_position.bu_id in (";
                                this.optionsBU.map(ob=>{
                                    buid_ += "'" + ob.code + "',"
                                })
                                buid_ = buid_.substring(0, buid_.length - 1);
                                buid_ += ")";
                                this.filterTxt += " and " + buid_;
                            }
                            else {
                                this.filterTxt += " and version_preparatory_md_position.bu_id='" + this.treeFilter.buid + "'";
                            }
                            
                            // 获取岗位树
                            this.initData();
                        },
                    
                        onNodeClick(obj) {
                            console.log(obj);
                            var data = obj.data, node = obj.node, el = obj.el;
                            this.selectedrow = data;
                        },
                        
                    }
                });
            };
            
            loadJsCss(function () {
                initVue();
            });
        </script>
        <style>
            /* 在vue.js中 v-cloak 这个指令是防止页面加载时出现 vuejs 的变量名而设计的 */
            [v-cloak] {
                display: none !important;
            }
            .nodeLabel {
                max-width: none !important;
            }
        </style>
        
    </head>
    
    <body style="margin: 0px;">
        <div v-cloak id="vbody">
            <div id="page_root">
                <div ref="popup_body" style="padding: 0 20px;">
                    <div class="h_dialog__body"> 
                        <!-- <div style="height: 32px;line-height: 32px;">
                            <div style="margin: 0.5px 12px;">  
                                <el-select v-model="treeFilter.orgid" placeholder="选择公司" style="width: 50%;" @change="onTreeFilterChange()">
                                    <el-option
                                      v-for="item in optionsOrg"
                                      :key="item.code"
                                      :label="item.value"
                                      :value="item.code">
                                    </el-option>
                                </el-select>
                                <el-select v-model="treeFilter.buid" placeholder="选择BU" style="width: 49%;" @change="onTreeFilterChange()">
                                    <el-option
                                      v-for="item in optionsBU"
                                      :key="item.code"
                                      :label="item.value"
                                      :value="item.code">
                                    </el-option>
                                </el-select>
                            </div>
                        </div> -->
                                    
                        <div :style="{padding: '5px 0', height: treeHeight - 50  + 'px', overflow: 'auto'}">
                            <h-tree
                            v-if="isRefresh"
                            :isfilter="true"
                            :tree-data="treeData"
                            :tree-txt-formatter="treeTxtFormatter"
                            :currentnodekey="currentnodekey"
                            :is-readonly="isTreeReadonly"
                            :treeheight="treeHeight - 60"
                            :maxlevel="maxlevel"
                            
                            @node-click="onNodeClick"
                            >
                            </h-tree>
                        </div>
                    </div>
                    
                    <!-- 底部工具栏 -->
                    <div class="el-dialog__footer">
                        <el-button size="small" type="default" @click="closeDialog">取 消</el-button>
                        <el-button size="small" v-if="isedit" type="primary" @click="checkPosition">确 定</el-button>
                    </div>
                </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>
        
    </body>
</html>