<!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>产品选择弹窗(SKU的产品对应)</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: "BU/产品",
|
dataname: "md_position",
|
treeTxtFormatter: "{name}",
|
maxlevel: 6,
|
filterObjBydefault: {},
|
filterTxt:"",
|
isTreeReadonly: true,
|
pageAttr: {
|
heightType: "popuppage"
|
},
|
dataRequest: [],
|
|
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: {},
|
skuobj: {},
|
isedit: false,
|
},
|
created() {
|
this.popupParames = clone(Root.popupParames);
|
this.title = this.popupParames.title || this.popupParames.text
|
if (this.popupParames.data) {
|
this.skuobj = this.popupParames.data
|
}
|
if (this.popupParames.delta) {
|
if (this.popupParames.delta.product_tree) {
|
this.treeData = this.popupParames.delta.product_tree
|
}
|
}
|
|
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
|
|
//获取数据
|
me.initData();
|
me.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
|
hideLoading();
|
});
|
});
|
}
|
else {
|
//获取数据
|
me.initData();
|
|
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 {
|
this.saveAfter()
|
}
|
},
|
|
initData() {
|
var me = this;
|
me.tableDataAfter();
|
// 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();
|
// }
|
// });
|
},
|
|
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="{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>
|