centaline-data-driven 1.5.71 → 1.5.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vs/Centaline.Front_End.DataDriven/DesignTimeBuild/.dtbcache.v2 +0 -0
- package/.vs/Centaline.Front_End.DataDriven/config/applicationhost.config +1034 -0
- package/README.md +3 -2
- package/obj/Centaline.Front_End.DataDriven.csproj.nuget.dgspec.json +10 -11
- package/obj/Centaline.Front_End.DataDriven.csproj.nuget.g.props +14 -11
- package/obj/Centaline.Front_End.DataDriven.csproj.nuget.g.targets +7 -7
- package/obj/Debug/netcoreapp2.1/Centaline.Front_End.DataDriven.csproj.FileListAbsolute.txt +6 -0
- package/obj/project.assets.json +52 -11
- package/package.json +1 -1
- package/release-log.md +13 -0
- package/src/Detail.vue +3 -3
- package/src/Form.vue +4 -6
- package/src/SearchList.vue +25 -54
- package/src/centaline/common/index.js +6 -0
- package/src/centaline/dynamicCalendar/src/dynamicCalendar.vue +150 -102
- package/src/centaline/dynamicCalendar/src/index.css +1 -1
- package/src/centaline/dynamicForm/src/dynamicFormListTable.vue +1 -5
- package/src/centaline/dynamicHyperLink/index.js +1 -1
- package/src/centaline/dynamicLayout/src/dynamicLayoutChildren.vue +17 -17
- package/src/centaline/dynamicPlaceHolder/index.js +1 -1
- package/src/centaline/dynamicRichText/src/dynamicRichText.vue +1 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +9 -10
- package/src/centaline/dynamicTree/src/dynamicTree.vue +21 -8
- package/src/centaline/dynamicTree/src/dynamicTreeList.vue +2 -1
- package/src/centaline/loader/src/ctl/Button.js +16 -16
- package/src/centaline/loader/src/ctl/Canlendar.js +88 -53
- package/src/centaline/loader/src/ctl/FormList.js +2 -0
- package/src/centaline/loader/src/ctl/PlaceHolder.js +2 -2
- package/src/main.js +4 -4
- package/wwwroot/static/centaline/centaline-data-driven.js +206 -90
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
- package/.vs/Centaline.Front_End.DataDriven/DesignTimeBuild/.dtbcache +0 -0
- package/.vs/Centaline.Front_End.DataDriven/v16/Server/sqlite3/db.lock +0 -0
- package/.vs/Centaline.Front_End.DataDriven/v16/Server/sqlite3/storage.ide +0 -0
|
@@ -7340,6 +7340,10 @@ var common = {
|
|
|
7340
7340
|
return parent;
|
|
7341
7341
|
} else if (parent.$options.name === 'DataDrivenSearchTree') {
|
|
7342
7342
|
return parent;
|
|
7343
|
+
} else if (parent.$options.name === 'DataDrivenEmployeeClassList') {
|
|
7344
|
+
return parent;
|
|
7345
|
+
} else if (parent.$options.name === 'HOME') {
|
|
7346
|
+
return parent;
|
|
7343
7347
|
} else {
|
|
7344
7348
|
return this.getParentPane(parent);
|
|
7345
7349
|
}
|
|
@@ -18839,6 +18843,10 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
18839
18843
|
//
|
|
18840
18844
|
//
|
|
18841
18845
|
//
|
|
18846
|
+
//
|
|
18847
|
+
//
|
|
18848
|
+
//
|
|
18849
|
+
//
|
|
18842
18850
|
|
|
18843
18851
|
|
|
18844
18852
|
|
|
@@ -18903,7 +18911,10 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
18903
18911
|
weekArr: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
|
|
18904
18912
|
loading: true,
|
|
18905
18913
|
menuVisible: false,
|
|
18906
|
-
currentData: {}
|
|
18914
|
+
currentData: {},
|
|
18915
|
+
menu_top: 0,
|
|
18916
|
+
menu_left: 0,
|
|
18917
|
+
actionRouter: []
|
|
18907
18918
|
};
|
|
18908
18919
|
},
|
|
18909
18920
|
mounted: function mounted() {},
|
|
@@ -18918,7 +18929,6 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
18918
18929
|
var fileList = this.model.listData.filter(function (item) {
|
|
18919
18930
|
return item.date.split("-").slice(2).join("-") == day;
|
|
18920
18931
|
});
|
|
18921
|
-
console.log(fileList);
|
|
18922
18932
|
return fileList;
|
|
18923
18933
|
}
|
|
18924
18934
|
return [];
|
|
@@ -18951,6 +18961,7 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
18951
18961
|
load: function load(data) {
|
|
18952
18962
|
var self = this;
|
|
18953
18963
|
self.model = data;
|
|
18964
|
+
self.actionRouter = self.model.actionRouter;
|
|
18954
18965
|
self.$nextTick(function () {
|
|
18955
18966
|
if (self.model.listData.length > 0) {
|
|
18956
18967
|
self.currentTime = self.model.listData[0].date;
|
|
@@ -18959,29 +18970,72 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
18959
18970
|
}
|
|
18960
18971
|
});
|
|
18961
18972
|
self.loading = false;
|
|
18973
|
+
document.getElementById("canlendar").addEventListener("contextmenu", function (e) {
|
|
18974
|
+
e.preventDefault();
|
|
18975
|
+
});
|
|
18976
|
+
this.closeRightClick();
|
|
18962
18977
|
},
|
|
18963
|
-
|
|
18978
|
+
openRightClick: function openRightClick(event, object) {
|
|
18964
18979
|
var _this = this;
|
|
18965
18980
|
|
|
18966
|
-
|
|
18967
|
-
|
|
18968
|
-
|
|
18969
|
-
|
|
18970
|
-
|
|
18971
|
-
|
|
18972
|
-
|
|
18981
|
+
if (object.isCurrentMonth) {
|
|
18982
|
+
// 获取单元格的宽高
|
|
18983
|
+
// let fieldNameWidth = document.getElementById('fieldName').offsetWidth;
|
|
18984
|
+
var fieldNameHeight = document.getElementById("fieldName").offsetHeight;
|
|
18985
|
+
// 获取父元素
|
|
18986
|
+
var canlendarEle = document.getElementById("canlendar");
|
|
18987
|
+
// 获取目标元素
|
|
18988
|
+
var clickedElement = event.target;
|
|
18989
|
+
var centerX;
|
|
18990
|
+
var centerY;
|
|
18991
|
+
if (event.target.tagName === "DIV") {
|
|
18992
|
+
centerX = canlendarEle.offsetLeft + clickedElement.offsetLeft;
|
|
18993
|
+
centerY = canlendarEle.offsetTop + clickedElement.offsetTop + fieldNameHeight;
|
|
18994
|
+
} else if (event.target.tagName === "SECTION") {
|
|
18995
|
+
centerX = canlendarEle.offsetLeft + clickedElement.parentElement.offsetLeft;
|
|
18996
|
+
centerY = canlendarEle.offsetTop + clickedElement.parentElement.offsetTop + fieldNameHeight;
|
|
18997
|
+
} else if (event.target.tagName === "SPAN") {
|
|
18998
|
+
centerX = canlendarEle.offsetLeft + clickedElement.parentElement.parentElement.parentElement.parentElement.offsetLeft;
|
|
18999
|
+
centerY = canlendarEle.offsetTop + clickedElement.parentElement.parentElement.parentElement.parentElement.offsetTop + fieldNameHeight;
|
|
19000
|
+
}
|
|
19001
|
+
// 获取文本内容的宽高
|
|
19002
|
+
var mainHeight = document.getElementById("app-Class").offsetHeight;
|
|
19003
|
+
var mainWidth = document.getElementById("app-Class").offsetWidth;
|
|
19004
|
+
if (centerX + 150 > mainWidth) {
|
|
19005
|
+
this.menu_left = centerX - (centerX + 150 - mainWidth) - 10;
|
|
19006
|
+
} else {
|
|
19007
|
+
this.menu_left = centerX;
|
|
19008
|
+
}
|
|
19009
|
+
if (centerY + 72 > mainHeight) {
|
|
19010
|
+
this.menu_top = centerY - fieldNameHeight * 2 - 10;
|
|
19011
|
+
} else {
|
|
19012
|
+
this.menu_top = centerY;
|
|
19013
|
+
}
|
|
19014
|
+
this.currentData = this.getDayData(object.day)[0]; // 定义变量接收该节点所对应的对象
|
|
19015
|
+
if (this.model.actionRouter) {
|
|
19016
|
+
this.model.actionRouter.forEach(function (v) {
|
|
19017
|
+
if (_this.currentData[v.rightField] == "1") {
|
|
19018
|
+
_this.menuVisible = true; //显示增删改的div
|
|
19019
|
+
document.getElementById("boxMenu").addEventListener("contextmenu", function (e) {
|
|
19020
|
+
e.preventDefault();
|
|
19021
|
+
});
|
|
19022
|
+
}
|
|
19023
|
+
});
|
|
19024
|
+
}
|
|
19025
|
+
// 监听事件鼠标点击事件,若点击则隐藏菜单
|
|
19026
|
+
document.addEventListener("click", this.foo);
|
|
19027
|
+
} else {
|
|
19028
|
+
this.menuVisible = false;
|
|
18973
19029
|
}
|
|
18974
|
-
// 监听事件鼠标点击事件,若点击则隐藏菜单
|
|
18975
|
-
document.addEventListener("click", this.foo);
|
|
18976
|
-
// 以下两句话将菜单显示在鼠标点击旁边定位
|
|
18977
|
-
this.menu_left = event.clientX;
|
|
18978
|
-
this.menu_top = event.clientY;
|
|
18979
19030
|
},
|
|
18980
19031
|
foo: function foo() {
|
|
18981
19032
|
this.menuVisible = false;
|
|
18982
19033
|
// 要及时关掉监听,不关掉的是一个坑,不信你试试,虽然前台显示的时候没有啥毛病,加一个alert你就知道了
|
|
18983
19034
|
document.removeEventListener("click", this.foo);
|
|
18984
19035
|
},
|
|
19036
|
+
closeRightClick: function closeRightClick() {
|
|
19037
|
+
this.menuVisible = false;
|
|
19038
|
+
},
|
|
18985
19039
|
|
|
18986
19040
|
// 打开弹层
|
|
18987
19041
|
openDialog: function openDialog(field, apiParam, callBack) {
|
|
@@ -19005,7 +19059,7 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
19005
19059
|
on: {
|
|
19006
19060
|
submit: function submit(ev) {
|
|
19007
19061
|
if (callBack) {
|
|
19008
|
-
callBack(ev.responseData
|
|
19062
|
+
callBack(ev.responseData);
|
|
19009
19063
|
}
|
|
19010
19064
|
self.$common.closeDialog(dialogOption.dialog);
|
|
19011
19065
|
}
|
|
@@ -19014,9 +19068,9 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
19014
19068
|
};
|
|
19015
19069
|
self.$common.openDialog(dialogOption);
|
|
19016
19070
|
} else {
|
|
19017
|
-
self.model.getCurrentRowApiData(field.action, field.apiParam, function (
|
|
19018
|
-
if (
|
|
19019
|
-
callBack();
|
|
19071
|
+
self.model.getCurrentRowApiData(field.action, field.apiParam, function (response) {
|
|
19072
|
+
if (response) {
|
|
19073
|
+
callBack(response);
|
|
19020
19074
|
}
|
|
19021
19075
|
});
|
|
19022
19076
|
}
|
|
@@ -19046,23 +19100,9 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
19046
19100
|
|
|
19047
19101
|
self.openDialog(action, actionRouterData, function (newData) {
|
|
19048
19102
|
// 在页面增加删除修改
|
|
19049
|
-
self.model.doAction(action, newData, self.
|
|
19103
|
+
self.model.doAction(action, newData, self.searchDataApi);
|
|
19050
19104
|
});
|
|
19051
19105
|
},
|
|
19052
|
-
|
|
19053
|
-
//删除树节点
|
|
19054
|
-
remove: function remove(newData) {
|
|
19055
|
-
var self = this;
|
|
19056
|
-
self.getNextClickNode();
|
|
19057
|
-
this.$refs.Tree.remove(self.currentNode);
|
|
19058
|
-
},
|
|
19059
|
-
|
|
19060
|
-
//新增树节点
|
|
19061
|
-
add: function add(newData) {
|
|
19062
|
-
var self = this;
|
|
19063
|
-
this.$refs.Tree.append(newData, self.currentNode);
|
|
19064
|
-
this.handleNodeClick(newData, true);
|
|
19065
|
-
},
|
|
19066
19106
|
change: function change() {
|
|
19067
19107
|
var fullDate = __WEBPACK_IMPORTED_MODULE_2_moment___default()(this.year + "-" + this.month + "-" + this.day, "YYYY-MM-DD").format();
|
|
19068
19108
|
this.$emit("change", fullDate);
|
|
@@ -38212,7 +38252,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
38212
38252
|
"use strict";
|
|
38213
38253
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__ = __webpack_require__(301);
|
|
38214
38254
|
/* unused harmony namespace reexport */
|
|
38215
|
-
/* harmony import */ var
|
|
38255
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1a9c057b_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(604);
|
|
38216
38256
|
function injectStyle (ssrContext) {
|
|
38217
38257
|
__webpack_require__(566)
|
|
38218
38258
|
}
|
|
@@ -38232,7 +38272,7 @@ var __vue_scopeId__ = null
|
|
|
38232
38272
|
var __vue_module_identifier__ = null
|
|
38233
38273
|
var Component = normalizeComponent(
|
|
38234
38274
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__["a" /* default */],
|
|
38235
|
-
|
|
38275
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1a9c057b_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
|
|
38236
38276
|
__vue_template_functional__,
|
|
38237
38277
|
__vue_styles__,
|
|
38238
38278
|
__vue_scopeId__,
|
|
@@ -41075,7 +41115,7 @@ var Component = normalizeComponent(
|
|
|
41075
41115
|
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
41076
41116
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicLayoutChildren_vue__ = __webpack_require__(309);
|
|
41077
41117
|
/* empty harmony namespace reexport */
|
|
41078
|
-
/* harmony import */ var
|
|
41118
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6b8185fb_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicLayoutChildren_vue__ = __webpack_require__(602);
|
|
41079
41119
|
var normalizeComponent = __webpack_require__(1)
|
|
41080
41120
|
/* script */
|
|
41081
41121
|
|
|
@@ -41092,7 +41132,7 @@ var __vue_scopeId__ = null
|
|
|
41092
41132
|
var __vue_module_identifier__ = null
|
|
41093
41133
|
var Component = normalizeComponent(
|
|
41094
41134
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicLayoutChildren_vue__["a" /* default */],
|
|
41095
|
-
|
|
41135
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6b8185fb_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicLayoutChildren_vue__["a" /* default */],
|
|
41096
41136
|
__vue_template_functional__,
|
|
41097
41137
|
__vue_styles__,
|
|
41098
41138
|
__vue_scopeId__,
|
|
@@ -46106,11 +46146,7 @@ var ctSpan = { //临时的span组件对象,用于vue双向绑定,强制更
|
|
|
46106
46146
|
var i = _step4.value;
|
|
46107
46147
|
|
|
46108
46148
|
if (i.isSet) {
|
|
46109
|
-
self
|
|
46110
|
-
message: "请先保存表格编辑项",
|
|
46111
|
-
type: 'warning',
|
|
46112
|
-
showClose: true
|
|
46113
|
-
});
|
|
46149
|
+
self.validMessage = "请先保存表格编辑项";
|
|
46114
46150
|
rtnBool = false;
|
|
46115
46151
|
}
|
|
46116
46152
|
}
|
|
@@ -56224,6 +56260,7 @@ var FormList = function FormList(source, master) {
|
|
|
56224
56260
|
rtn._rows.push(iRow);
|
|
56225
56261
|
__WEBPACK_IMPORTED_MODULE_8_vue___default.a.set(r, 'edit', iRow.edit);
|
|
56226
56262
|
__WEBPACK_IMPORTED_MODULE_8_vue___default.a.set(r, 'delete', iRow.delete);
|
|
56263
|
+
__WEBPACK_IMPORTED_MODULE_8_vue___default.a.set(r, 'fontColor', iRow.fontColor);
|
|
56227
56264
|
var gid = rtn.guid();
|
|
56228
56265
|
rtn._rows[rtn._rows.length - 1].$sourceIndex = gid;
|
|
56229
56266
|
r.$sourceIndex = gid;
|
|
@@ -56232,6 +56269,7 @@ var FormList = function FormList(source, master) {
|
|
|
56232
56269
|
rowData.$sourceIndex = gid;
|
|
56233
56270
|
rowData.edit = iRow.edit;
|
|
56234
56271
|
rowData.delete = iRow.delete;
|
|
56272
|
+
rowData.fontColor = iRow.fontColor;
|
|
56235
56273
|
rtn._tableData.push(rowData);
|
|
56236
56274
|
});
|
|
56237
56275
|
}
|
|
@@ -61029,6 +61067,13 @@ var Canlendar = function Canlendar(source, param, flagSearch, callBack) {
|
|
|
61029
61067
|
var self = this;
|
|
61030
61068
|
var init = function init(source) {
|
|
61031
61069
|
var rtn = {
|
|
61070
|
+
searchModel: param,
|
|
61071
|
+
get primaryKey() {
|
|
61072
|
+
return __WEBPACK_IMPORTED_MODULE_2__common__["default"].initialsToLowerCase(source.primaryFieldName);
|
|
61073
|
+
},
|
|
61074
|
+
get primaryFieldMappingDBName() {
|
|
61075
|
+
return source.primaryFieldMappingDBName;
|
|
61076
|
+
},
|
|
61032
61077
|
get source() {
|
|
61033
61078
|
return source;
|
|
61034
61079
|
},
|
|
@@ -61050,6 +61095,17 @@ var Canlendar = function Canlendar(source, param, flagSearch, callBack) {
|
|
|
61050
61095
|
}
|
|
61051
61096
|
return source.columns;
|
|
61052
61097
|
},
|
|
61098
|
+
_dataDictionary: {},
|
|
61099
|
+
set dataDictionary(v) {
|
|
61100
|
+
if (v) {
|
|
61101
|
+
v.forEach(function (r) {
|
|
61102
|
+
rtn._dataDictionary[r[rtn.primaryKey]] = r;
|
|
61103
|
+
});
|
|
61104
|
+
}
|
|
61105
|
+
},
|
|
61106
|
+
get dataDictionary() {
|
|
61107
|
+
return rtn._dataDictionary;
|
|
61108
|
+
},
|
|
61053
61109
|
_buttons: null,
|
|
61054
61110
|
get buttons() {
|
|
61055
61111
|
if (rtn._buttons !== null) {
|
|
@@ -61072,26 +61128,53 @@ var Canlendar = function Canlendar(source, param, flagSearch, callBack) {
|
|
|
61072
61128
|
// }
|
|
61073
61129
|
// return source.actionRouters;
|
|
61074
61130
|
// },
|
|
61075
|
-
doAction: function doAction(
|
|
61076
|
-
|
|
61077
|
-
|
|
61078
|
-
|
|
61079
|
-
|
|
61080
|
-
|
|
61081
|
-
|
|
61082
|
-
|
|
61083
|
-
|
|
61084
|
-
|
|
61085
|
-
|
|
61086
|
-
|
|
61087
|
-
case __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ActionType.Update: //修改
|
|
61088
|
-
case __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ActionType.CloseTabThenUpdate:
|
|
61089
|
-
//修改
|
|
61090
|
-
rtn.$vue.update(newData); //修改树节点
|
|
61091
|
-
break;
|
|
61092
|
-
default:
|
|
61093
|
-
break;
|
|
61131
|
+
doAction: function doAction(router, response, api) {
|
|
61132
|
+
if (router.flagFreshCurrentRow || router.flagAddRowAfterAction) {
|
|
61133
|
+
this.getUpdateApiData(response, api);
|
|
61134
|
+
}
|
|
61135
|
+
},
|
|
61136
|
+
getUpdateApiData: function getUpdateApiData(response, api) {
|
|
61137
|
+
var self = this;
|
|
61138
|
+
var searchFields = {
|
|
61139
|
+
fields: []
|
|
61140
|
+
};
|
|
61141
|
+
if (this.searchModel && this.searchModel.searchData) {
|
|
61142
|
+
searchFields = this.searchModel.searchData;
|
|
61094
61143
|
}
|
|
61144
|
+
|
|
61145
|
+
var searchValue1 = response.content;
|
|
61146
|
+
searchFields.fields.push({
|
|
61147
|
+
fieldName1: self.primaryFieldMappingDBName ? self.primaryFieldMappingDBName : self.primaryKey,
|
|
61148
|
+
groupName: self.primaryKey,
|
|
61149
|
+
operation: 2,
|
|
61150
|
+
searchDataType: 3,
|
|
61151
|
+
searchValue1: searchValue1
|
|
61152
|
+
});
|
|
61153
|
+
__WEBPACK_IMPORTED_MODULE_1_vue___default.a.prototype.$api.postHandler(__WEBPACK_IMPORTED_MODULE_2__common__["default"].globalUri(), {
|
|
61154
|
+
action: api,
|
|
61155
|
+
para: {
|
|
61156
|
+
searchFields: searchFields,
|
|
61157
|
+
pageAttribute: {
|
|
61158
|
+
pageIndex: 1
|
|
61159
|
+
},
|
|
61160
|
+
flagSearch: true
|
|
61161
|
+
}
|
|
61162
|
+
}).then(function (response) {
|
|
61163
|
+
if (response.rtnCode === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ReturnCode.Successful) {
|
|
61164
|
+
response.content.rows.forEach(function (row) {
|
|
61165
|
+
for (var vkey in row) {
|
|
61166
|
+
rtn.dataDictionary[row[rtn.primaryKey]][vkey] = row[vkey];
|
|
61167
|
+
}
|
|
61168
|
+
for (var vkey in rtn.dataDictionary[row[rtn.primaryKey]]) {
|
|
61169
|
+
rtn.dataDictionary[row[rtn.primaryKey]][vkey] = row[vkey] || '';
|
|
61170
|
+
}
|
|
61171
|
+
});
|
|
61172
|
+
}
|
|
61173
|
+
}).catch(function (error) {
|
|
61174
|
+
if (typeof callback !== 'undefined') {
|
|
61175
|
+
callback();
|
|
61176
|
+
}
|
|
61177
|
+
});
|
|
61095
61178
|
},
|
|
61096
61179
|
|
|
61097
61180
|
_actionRouter: null,
|
|
@@ -61110,9 +61193,27 @@ var Canlendar = function Canlendar(source, param, flagSearch, callBack) {
|
|
|
61110
61193
|
}
|
|
61111
61194
|
return rtn._actionRouter;
|
|
61112
61195
|
}
|
|
61196
|
+
},
|
|
61197
|
+
getCurrentRowApiData: function getCurrentRowApiData(api, searchModel, callback) {
|
|
61198
|
+
var self = this;
|
|
61199
|
+
var para = searchModel ? searchModel : {};
|
|
61200
|
+
__WEBPACK_IMPORTED_MODULE_1_vue___default.a.prototype.$api.postHandler(__WEBPACK_IMPORTED_MODULE_2__common__["default"].globalUri(), {
|
|
61201
|
+
action: api,
|
|
61202
|
+
para: para
|
|
61203
|
+
}).then(function (response) {
|
|
61204
|
+
if (response.rtnCode === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ReturnCode.Successful) {
|
|
61205
|
+
if (typeof callback !== 'undefined') {
|
|
61206
|
+
callback(response);
|
|
61207
|
+
}
|
|
61208
|
+
}
|
|
61209
|
+
}).catch(function (error) {
|
|
61210
|
+
if (typeof callback !== 'undefined') {
|
|
61211
|
+
callback();
|
|
61212
|
+
}
|
|
61213
|
+
});
|
|
61113
61214
|
}
|
|
61114
61215
|
};
|
|
61115
|
-
|
|
61216
|
+
rtn.dataDictionary = rtn.listData;
|
|
61116
61217
|
//valid.InitForm(rtn);
|
|
61117
61218
|
return rtn;
|
|
61118
61219
|
};
|
|
@@ -63343,7 +63444,7 @@ var ctSpan = {
|
|
|
63343
63444
|
toolbars: [['fullscreen', 'source', '|', 'undo', 'redo', '|', 'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|', 'rowspacingtop', 'rowspacingbottom', 'lineheight', '|', 'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|', 'directionalityltr', 'directionalityrtl', 'indent', '|', 'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|', 'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
|
|
63344
63445
|
//'simpleupload',
|
|
63345
63446
|
'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'webapp', 'pagebreak', 'template', 'background', '|', 'horizontal', 'date', 'time', 'spechars', 'wordimage', '|', 'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|', 'print', 'preview', 'searchreplace', 'drafts', 'help']],
|
|
63346
|
-
zIndex:
|
|
63447
|
+
zIndex: 1,
|
|
63347
63448
|
/* 上传图片配置项 */
|
|
63348
63449
|
"imageActionName": "uploadimage222", /* 执行上传图片的action名称 */
|
|
63349
63450
|
"imageFieldName": "file", /* 提交的图片表单名称 */
|
|
@@ -65287,6 +65388,7 @@ var ctSpan = {
|
|
|
65287
65388
|
}
|
|
65288
65389
|
});
|
|
65289
65390
|
}
|
|
65391
|
+
this.$emit('loaded');
|
|
65290
65392
|
},
|
|
65291
65393
|
setsearchtreeHeight: function setsearchtreeHeight() {
|
|
65292
65394
|
var self = this;
|
|
@@ -65937,21 +66039,35 @@ var ctSpan = {
|
|
|
65937
66039
|
|
|
65938
66040
|
this.firstLevel = false; // 否则视为叶子节点不添加同级选项
|
|
65939
66041
|
}
|
|
66042
|
+
var actionIndex = 0;
|
|
65940
66043
|
if (this.model.actionRouter) {
|
|
65941
66044
|
this.model.actionRouter.forEach(function (v) {
|
|
65942
66045
|
if (_this3.currentData[v.rightField] == '1') {
|
|
65943
66046
|
_this3.menuVisible = true; //显示增删改的div
|
|
66047
|
+
actionIndex += 1;
|
|
65944
66048
|
}
|
|
65945
66049
|
});
|
|
65946
66050
|
}
|
|
65947
66051
|
document.addEventListener('click', this.foo); // 监听事件鼠标点击事件,若点击则隐藏菜单
|
|
65948
|
-
|
|
65949
|
-
|
|
65950
|
-
|
|
66052
|
+
// 获取树状图的高度
|
|
66053
|
+
var treeHeight = document.getElementById("mytree").offsetHeight;
|
|
66054
|
+
// 获取文本内容的宽高
|
|
66055
|
+
var mainHeight = document.getElementById("app-Tree").offsetHeight;
|
|
66056
|
+
var mainWidth = document.getElementById("app-Tree").offsetWidth;
|
|
66057
|
+
// 10是padding 获取查询条件高度
|
|
66058
|
+
var screenHeight = document.getElementById("mytree").parentElement.offsetHeight - treeHeight - 10;
|
|
66059
|
+
var windowWidth = window.innerWidth;
|
|
66060
|
+
var windowHeight = window.innerHeight;
|
|
66061
|
+
// 将菜单显示在鼠标点击旁边定位
|
|
66062
|
+
this.menu_left = event.clientX - (windowWidth - mainWidth);
|
|
66063
|
+
// 18是节点文本的高度
|
|
66064
|
+
this.menu_top = event.clientY - (windowHeight - mainHeight) - screenHeight + actionIndex * 30 + 18;
|
|
66065
|
+
// 微调
|
|
66066
|
+
if (document.getElementById("uplink")) {
|
|
66067
|
+
this.menu_top = this.menu_top - 8;
|
|
66068
|
+
} else if (document.getElementById("onecard")) {
|
|
66069
|
+
this.menu_top = this.menu_top + 10;
|
|
65951
66070
|
}
|
|
65952
|
-
// 以下两句话将菜单显示在鼠标点击旁边定位
|
|
65953
|
-
this.menu_left = event.clientX - document.getElementById('mytree').offsetLeft - sideWidth;
|
|
65954
|
-
this.menu_top = event.clientY - document.getElementById('mytree').offsetTop + 10;
|
|
65955
66071
|
},
|
|
65956
66072
|
foo: function foo() {
|
|
65957
66073
|
this.menuVisible = false;
|
|
@@ -69902,7 +70018,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
69902
70018
|
"use strict";
|
|
69903
70019
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicCalendar_vue__ = __webpack_require__(149);
|
|
69904
70020
|
/* unused harmony namespace reexport */
|
|
69905
|
-
/* harmony import */ var
|
|
70021
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_076dba22_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicCalendar_vue__ = __webpack_require__(514);
|
|
69906
70022
|
function injectStyle (ssrContext) {
|
|
69907
70023
|
__webpack_require__(507)
|
|
69908
70024
|
}
|
|
@@ -69922,7 +70038,7 @@ var __vue_scopeId__ = null
|
|
|
69922
70038
|
var __vue_module_identifier__ = null
|
|
69923
70039
|
var Component = normalizeComponent(
|
|
69924
70040
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicCalendar_vue__["a" /* default */],
|
|
69925
|
-
|
|
70041
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_076dba22_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicCalendar_vue__["a" /* default */],
|
|
69926
70042
|
__vue_template_functional__,
|
|
69927
70043
|
__vue_styles__,
|
|
69928
70044
|
__vue_scopeId__,
|
|
@@ -69943,7 +70059,7 @@ var content = __webpack_require__(508);
|
|
|
69943
70059
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
69944
70060
|
if(content.locals) module.exports = content.locals;
|
|
69945
70061
|
// add the styles to the DOM
|
|
69946
|
-
var update = __webpack_require__(3)("
|
|
70062
|
+
var update = __webpack_require__(3)("2e741dd0", content, true, {});
|
|
69947
70063
|
|
|
69948
70064
|
/***/ }),
|
|
69949
70065
|
/* 508 */
|
|
@@ -69954,7 +70070,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
69954
70070
|
|
|
69955
70071
|
|
|
69956
70072
|
// module
|
|
69957
|
-
exports.push([module.i, ".flex{display:-webkit-box;display:-ms-flexbox;display:flex}.absolute{position:absolute}.relative{position:relative}.justify-content-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.flex-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.flex-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.flex-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.flex-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.flex-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-evenly{-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.w-full{width:100%}.canlendar{--color-primary-text:#333;--color-primary-light:#5cb4ff;--color-light-gray:#e0e0e0;background-color:#fff}.canlendar,.canlendar.dark{--color-canlender-bg:#f2f8fe;border:1px solid var(--color-light-gray);border-radius:6px}.canlendar.dark{--color-primary-text:#8fa9d0;--color-primary-light:#a6559d;--color-light-gray:#f2f8fe}.canlendar .canlendar_content{position:relative;width:100%;padding:10px}.canlendar_content .item{-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--color-light-gray);width:14.28%;height:60px;cursor:pointer;-webkit-transition:all .3s;transition:all .3s;position:relative;color:var(--color-primary-text);font-size:12px}.canlendar_content .item-disabled{background:#fff;color:#fff}.canlendar.dark .canlendar_content .item-disabled{color:#fff}.canlendar_content .header-item{-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--color-light-gray);width:14.28%;height:50px;font-size:12px;font-weight:600;color:var(--color-primary-text)}.canlendar_content .item:hover,.canlendar_selected{border:1px solid var(--color-canlender-bg);background:var(--color-canlender-bg)}.item-disabled.item.canlendar_item.flex.flex-column.flex-center:hover{color:var(--color-canlender-bg);pointer-events:none}.canlendar.dark .canlendar_content .item:hover,.canlendar.dark .canlendar_selected{color:#fff}.canlendar .canlendar_today{
|
|
70073
|
+
exports.push([module.i, ".flex{display:-webkit-box;display:-ms-flexbox;display:flex}.absolute{position:absolute}.relative{position:relative}.justify-content-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.flex-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.flex-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.flex-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.flex-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.flex-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.flex-nowrap{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-align-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-evenly{-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.w-full{width:100%}.canlendar{--color-primary-text:#333;--color-primary-light:#5cb4ff;--color-light-gray:#e0e0e0;background-color:#fff}.canlendar,.canlendar.dark{--color-canlender-bg:#f2f8fe;border:1px solid var(--color-light-gray);border-radius:6px}.canlendar.dark{--color-primary-text:#8fa9d0;--color-primary-light:#a6559d;--color-light-gray:#f2f8fe}.canlendar .canlendar_content{position:relative;width:100%;padding:10px}.canlendar_content .item{-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--color-light-gray);width:14.28%;height:60px;cursor:pointer;-webkit-transition:all .3s;transition:all .3s;position:relative;color:var(--color-primary-text);font-size:12px}.canlendar_content .item-disabled{background:#fff;color:#fff}.canlendar.dark .canlendar_content .item-disabled{color:#fff}.canlendar_content .header-item{-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid var(--color-light-gray);width:14.28%;height:50px;font-size:12px;font-weight:600;color:var(--color-primary-text)}.canlendar_content .item:hover,.canlendar_selected{border:1px solid var(--color-canlender-bg);background:var(--color-canlender-bg)}.item-disabled.item.canlendar_item.flex.flex-column.flex-center:hover{color:var(--color-canlender-bg);pointer-events:none}.canlendar.dark .canlendar_content .item:hover,.canlendar.dark .canlendar_selected{color:#fff}.canlendar .canlendar_today{text-align:center}.canlendar_content .item .rounded{margin-top:10px;width:26px;height:26px;line-height:26px;background:var(--color-primary-text);border-radius:50%;text-align:center;color:#fff}.memuItem{text-decoration:none;line-height:26px}.memuItem:hover{cursor:pointer;text-decoration:underline;color:var(--btnHoverRed)}.date-text{position:absolute;top:0;right:4px;font-weight:600}.box-menu{width:150px;position:absolute;z-index:1000;background-color:#fff;-webkit-box-shadow:0 0 10px #ccc,0 0 20px #ccc,0 0 30px #ccc;box-shadow:0 0 10px #ccc,0 0 20px #ccc,0 0 30px #ccc;padding:10px}.canlendar .canlendar_today .date-text{color:var(--chinaRed)}", ""]);
|
|
69958
70074
|
|
|
69959
70075
|
// exports
|
|
69960
70076
|
|
|
@@ -70321,11 +70437,11 @@ webpackContext.id = 513;
|
|
|
70321
70437
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
70322
70438
|
|
|
70323
70439
|
"use strict";
|
|
70324
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('ct-searchScreen',{key:_vm.reloadKeyScreen,ref:"screen",staticStyle:{"margin-bottom":"10px"},attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.apiParam},on:{"loaded":_vm.screenLoaded,"resetSearch":function($event){_vm.resetSearch()},"search":function($event){_vm.search()}}}),_vm._v(" "),_c('div',{directives:[{name:"loading",rawName:"v-loading",value:(_vm.loading),expression:"loading"}],staticClass:"canlendar",class:[_vm.theme ? _vm.theme : ''],style:(_vm.getCalerndarStyle),attrs:{"id":"canlendar"}},[_c('div',{staticClass:"canlendar_content flex flex-wrap"},[_vm._l((_vm.weekArr),function(item){return _c('div',{key:item,staticClass:"header-item flex flex-column flex-center"},[_c('div',[_vm._v(_vm._s(item))])])}),_vm._v(" "),_vm._l((_vm.dayArr),function(value,index){return _c('div',{key:index,class:[
|
|
70440
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"id":"canlendarBox"}},[_c('ct-searchScreen',{key:_vm.reloadKeyScreen,ref:"screen",staticStyle:{"margin-bottom":"10px"},attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.apiParam},on:{"loaded":_vm.screenLoaded,"resetSearch":function($event){_vm.resetSearch()},"search":function($event){_vm.search()}}}),_vm._v(" "),_c('div',{directives:[{name:"loading",rawName:"v-loading",value:(_vm.loading),expression:"loading"}],staticClass:"canlendar",class:[_vm.theme ? _vm.theme : ''],style:(_vm.getCalerndarStyle),attrs:{"id":"canlendar"}},[_c('div',{staticClass:"canlendar_content flex flex-wrap",attrs:{"id":"fieldNameBox"}},[_vm._l((_vm.weekArr),function(item){return _c('div',{key:item,staticClass:"header-item flex flex-column flex-center",on:{"contextmenu":function($event){$event.preventDefault();$event.stopPropagation();return _vm.closeRightClick($event)}}},[_c('div',[_vm._v(_vm._s(item))])])}),_vm._v(" "),_vm._l((_vm.dayArr),function(value,index){return _c('div',{key:index,class:[
|
|
70325
70441
|
value.isCurrentMonth ? '' : 'item-disabled',
|
|
70326
70442
|
value.isSelected && !value.isToday ? 'canlendar_selected' : '',
|
|
70327
70443
|
value.isToday ? 'canlendar_today' : '',
|
|
70328
|
-
'item canlendar_item flex flex-column flex-center' ],on:{"contextmenu":function($event){$event.preventDefault();$event.stopPropagation();_vm.
|
|
70444
|
+
'item canlendar_item flex flex-column flex-center' ],attrs:{"id":"fieldName"},on:{"contextmenu":function($event){$event.preventDefault();$event.stopPropagation();_vm.openRightClick($event, value)}}},_vm._l((_vm.getDayData(value.day)),function(item,index){return (_vm.model.columns)?_c('section',{key:index},_vm._l((_vm.model.columns),function(col,index){return _c('div',{key:index},[(col.fieldName != 'operation')?_c('div',[(col.fieldName == 'date')?_c('span',{staticClass:"date-text"},[_vm._v("\n "+_vm._s(_vm.extractedDate(item[col.fieldName]))+"\n ")]):_c('span',{domProps:{"innerHTML":_vm._s(item[col.fieldName])}})]):_vm._e()])})):_vm._e()}))})],2)]),_vm._v(" "),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.menuVisible && _vm.actionRouter),expression:"menuVisible && actionRouter"}],staticClass:"box-menu",style:({ left: _vm.menu_left + 'px', top: _vm.menu_top + 'px' }),attrs:{"id":"boxMenu"}},_vm._l((_vm.actionRouter),function(item,index){return _c('div',{key:index,staticClass:"opertion",on:{"click":function($event){_vm.routerClickHandler(item)}}},[(_vm.currentData[item.rightField] == 1)?_c('div',[_c('div',{staticClass:"memuItem"},[_vm._v(_vm._s(item.label))])]):_vm._e()])}))],1)}
|
|
70329
70445
|
var staticRenderFns = []
|
|
70330
70446
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
70331
70447
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -71970,7 +72086,7 @@ var content = __webpack_require__(567);
|
|
|
71970
72086
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
71971
72087
|
if(content.locals) module.exports = content.locals;
|
|
71972
72088
|
// add the styles to the DOM
|
|
71973
|
-
var update = __webpack_require__(3)("
|
|
72089
|
+
var update = __webpack_require__(3)("65f78cd8", content, true, {});
|
|
71974
72090
|
|
|
71975
72091
|
/***/ }),
|
|
71976
72092
|
/* 567 */
|
|
@@ -71982,7 +72098,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
71982
72098
|
|
|
71983
72099
|
|
|
71984
72100
|
// module
|
|
71985
|
-
exports.push([module.i, ".ct-tableParent{overflow:auto;border-bottom:1px solid #ebeef5;width:100%;outline:0;border-top:1px solid #ebeef5}.ct-searchtable .ct-table{min-width:100%;border-collapse:collapse}.ct-searchtable .ct-table-Shadow{border-collapse:separate}.ct-searchtable .ct-table th{background-color:#ddd!important}.ct-searchtable .ct-tr>.ct-td{padding:2px 20px;cursor:default;background-color:#fff;color:var(--centalineBlack)}.ct-searchtable .ct-tr>.ct-td1{border-right:1px solid #e7e8eb;border-left:1px solid #e7e8eb}.ct-searchtable .ct-tr:last-child>.ct-td1,.ct-searchtable .ct-tr>.ct-td2{border-bottom:1px solid #e7e8eb}.ct-searchtable .ct-tr>.ct-td3{border:1px solid #e7e8eb}.shadowLeft{-webkit-box-shadow:2px 0 3px -1px rgba(0,0,0,.1);box-shadow:2px 0 3px -1px rgba(0,0,0,.1)}.shadowRight{-webkit-box-shadow:-2px 0 3px -1px rgba(0,0,0,.1);box-shadow:-2px 0 3px -1px rgba(0,0,0,.1)}.ct-searchtable body:last-child>.ct-td{border-bottom:0}.ct-searchtable .ct-tr>.ct-td.nowidth{white-space:nowrap}.ct-table{color:#1f2233;font-size:18px;line-height:40px;min-height:40px}.ct-table-mini{font-size:12px;line-height:26px;min-height:28px}.ct-table-small{font-size:14px;line-height:32px;min-height:32px}.ct-table-medium{font-size:16px;line-height:36px;min-height:36px}.ct-table .ct-td>.caret-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:34px;width:10px;vertical-align:middle;cursor:pointer;overflow:initial;position:relative}.ct-table .ct-td>.caret-wrapper>.sort-caret{width:0;height:0;border:5px solid transparent;position:absolute;left:7px}.ct-table .ct-td>.caret-wrapper>.sort-caret.ascending{border-bottom-color:var(--centalinePlaceholder);top:5px}.ct-table .ct-td>.caret-wrapper>.sort-caret.descending{border-top-color:var(--centalinePlaceholder);bottom:7px}.ct-table .ct-td.select
|
|
72101
|
+
exports.push([module.i, ".ct-tableParent{overflow:auto;border-bottom:1px solid #ebeef5;width:100%;outline:0;border-top:1px solid #ebeef5}.ct-searchtable .ct-table{min-width:100%;border-collapse:collapse}.ct-searchtable .ct-table-Shadow{border-collapse:separate}.ct-searchtable .ct-table th{background-color:#ddd!important}.ct-searchtable .ct-tr>.ct-td{padding:2px 20px;cursor:default;background-color:#fff;color:var(--centalineBlack)}.ct-searchtable .ct-tr>.ct-td1{border-right:1px solid #e7e8eb;border-left:1px solid #e7e8eb}.ct-searchtable .ct-tr:last-child>.ct-td1,.ct-searchtable .ct-tr>.ct-td2{border-bottom:1px solid #e7e8eb}.ct-searchtable .ct-tr>.ct-td3{border:1px solid #e7e8eb}.shadowLeft{-webkit-box-shadow:2px 0 3px -1px rgba(0,0,0,.1);box-shadow:2px 0 3px -1px rgba(0,0,0,.1)}.shadowRight{-webkit-box-shadow:-2px 0 3px -1px rgba(0,0,0,.1);box-shadow:-2px 0 3px -1px rgba(0,0,0,.1)}.ct-searchtable body:last-child>.ct-td{border-bottom:0}.ct-searchtable .ct-tr>.ct-td.nowidth{white-space:nowrap}.ct-table{color:#1f2233;font-size:18px;line-height:40px;min-height:40px}.ct-table-mini{font-size:12px;line-height:26px;min-height:28px}.ct-table-small{font-size:14px;line-height:32px;min-height:32px}.ct-table-medium{font-size:16px;line-height:36px;min-height:36px}.ct-table .ct-td>.caret-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:34px;width:10px;vertical-align:middle;cursor:pointer;overflow:initial;position:relative}.ct-table .ct-td>.caret-wrapper>.sort-caret{width:0;height:0;border:5px solid transparent;position:absolute;left:7px}.ct-table .ct-td>.caret-wrapper>.sort-caret.ascending{border-bottom-color:var(--centalinePlaceholder);top:5px}.ct-table .ct-td>.caret-wrapper>.sort-caret.descending{border-top-color:var(--centalinePlaceholder);bottom:7px}.ct-table .ct-td.select,.ct-table .ct-td.selectMerged,.ct-table .ct-tr:hover .ct-td.select,.ct-table .ct-tr:hover .ct-td.selectMerged{background-color:var(backgroundColor)!important}.ct-table .ct-td.asc>.caret-wrapper>.sort-caret.ascending{border-bottom-color:#409eff;top:5px}.ct-table .ct-td.desc>.caret-wrapper>.sort-caret.descending{border-top-color:#409eff;bottom:7px}.ct-table .cell{text-overflow:ellipsis;overflow:hidden;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.ct-table .lineFeedCell{min-width:40px}.ct-table .left-fixation,.ct-table .right-fixation{position:-webkit-sticky;position:sticky}.ct-table .left-fixation-th,.ct-table .right-fixation-th{position:-webkit-sticky;position:sticky;top:0;z-index:99}.ct-table .right-no-fixation-th{position:-webkit-sticky;position:sticky;top:0;z-index:50}.ct-table .checkbox-td{min-width:20px;width:20px;left:0}.ct-table .checkbox-td .checkbox-td-1{vertical-align:inherit}.tab-list{position:relative;margin-bottom:0!important;height:auto!important;display:block;padding-left:8px;padding-right:4px}.tab-list .subdiv_allinline{float:none;display:block;width:-webkit-fill-available;cursor:pointer}.div_allinline .Stats-popover{float:right;margin-top:3px;margin-left:0;height:16px}.icon-more{background:url(" + escape(__webpack_require__(568)) + ") no-repeat;background-size:100% 100%;width:16px;height:16px;display:table-caption;cursor:pointer}.el-popover1{min-width:inherit!important}.ct-searchtable .ct-search-table-tag{background-color:#fdf6ec;border-color:#faecd8;width:100%;-webkit-box-shadow:0 2px 10px 0 rgb(0 0 0/10%);box-shadow:0 2px 10px 0 rgb(0 0 0/10%);margin-bottom:4px}.theadLine{position:relative}.theadLine:before{position:absolute;top:50%;-webkit-transform:translatey(-50%);transform:translatey(-50%);right:0;content:\"\";width:1px;height:18px;background-color:#919296}.theadLine:last-child:before{width:0!important}.theadTitle{z-index:999;border-radius:4px;color:var(--centalineBlack);border:1px solid var(--centalineBlack);font-weight:500;white-space:nowrap}.box-card,.theadTitle{position:absolute;padding:1px 6px;background-color:#fff;font-size:12px}.box-card{z-index:1000;border-radius:4px;color:#606266;border:1px solid;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ct-searchtable .el-loading-spinner .circular{-webkit-animation:none!important;animation:none!important}", ""]);
|
|
71986
72102
|
|
|
71987
72103
|
// exports
|
|
71988
72104
|
|
|
@@ -73247,7 +73363,7 @@ exports.push([module.i, ".el-collapse{border-top:none}.ct-collapse-item-title .e
|
|
|
73247
73363
|
"use strict";
|
|
73248
73364
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFormListTable_vue__ = __webpack_require__(326);
|
|
73249
73365
|
/* unused harmony namespace reexport */
|
|
73250
|
-
/* harmony import */ var
|
|
73366
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_667558d8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFormListTable_vue__ = __webpack_require__(637);
|
|
73251
73367
|
function injectStyle (ssrContext) {
|
|
73252
73368
|
__webpack_require__(635)
|
|
73253
73369
|
}
|
|
@@ -73267,7 +73383,7 @@ var __vue_scopeId__ = null
|
|
|
73267
73383
|
var __vue_module_identifier__ = null
|
|
73268
73384
|
var Component = normalizeComponent(
|
|
73269
73385
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFormListTable_vue__["a" /* default */],
|
|
73270
|
-
|
|
73386
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_667558d8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFormListTable_vue__["a" /* default */],
|
|
73271
73387
|
__vue_template_functional__,
|
|
73272
73388
|
__vue_styles__,
|
|
73273
73389
|
__vue_scopeId__,
|
|
@@ -73288,7 +73404,7 @@ var content = __webpack_require__(636);
|
|
|
73288
73404
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
73289
73405
|
if(content.locals) module.exports = content.locals;
|
|
73290
73406
|
// add the styles to the DOM
|
|
73291
|
-
var update = __webpack_require__(3)("
|
|
73407
|
+
var update = __webpack_require__(3)("6ec823e1", content, true, {});
|
|
73292
73408
|
|
|
73293
73409
|
/***/ }),
|
|
73294
73410
|
/* 636 */
|
|
@@ -80023,7 +80139,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
80023
80139
|
"use strict";
|
|
80024
80140
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicRichText_vue__ = __webpack_require__(398);
|
|
80025
80141
|
/* unused harmony namespace reexport */
|
|
80026
|
-
/* harmony import */ var
|
|
80142
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bb26deac_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicRichText_vue__ = __webpack_require__(801);
|
|
80027
80143
|
function injectStyle (ssrContext) {
|
|
80028
80144
|
__webpack_require__(798)
|
|
80029
80145
|
}
|
|
@@ -80043,7 +80159,7 @@ var __vue_scopeId__ = null
|
|
|
80043
80159
|
var __vue_module_identifier__ = null
|
|
80044
80160
|
var Component = normalizeComponent(
|
|
80045
80161
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicRichText_vue__["a" /* default */],
|
|
80046
|
-
|
|
80162
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bb26deac_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicRichText_vue__["a" /* default */],
|
|
80047
80163
|
__vue_template_functional__,
|
|
80048
80164
|
__vue_styles__,
|
|
80049
80165
|
__vue_scopeId__,
|
|
@@ -80064,7 +80180,7 @@ var content = __webpack_require__(799);
|
|
|
80064
80180
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
80065
80181
|
if(content.locals) module.exports = content.locals;
|
|
80066
80182
|
// add the styles to the DOM
|
|
80067
|
-
var update = __webpack_require__(3)("
|
|
80183
|
+
var update = __webpack_require__(3)("0c537ef8", content, true, {});
|
|
80068
80184
|
|
|
80069
80185
|
/***/ }),
|
|
80070
80186
|
/* 799 */
|
|
@@ -81013,7 +81129,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
81013
81129
|
"use strict";
|
|
81014
81130
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTreeList_vue__ = __webpack_require__(409);
|
|
81015
81131
|
/* unused harmony namespace reexport */
|
|
81016
|
-
/* harmony import */ var
|
|
81132
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_451aa8f4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__ = __webpack_require__(861);
|
|
81017
81133
|
function injectStyle (ssrContext) {
|
|
81018
81134
|
__webpack_require__(851)
|
|
81019
81135
|
}
|
|
@@ -81033,7 +81149,7 @@ var __vue_scopeId__ = null
|
|
|
81033
81149
|
var __vue_module_identifier__ = null
|
|
81034
81150
|
var Component = normalizeComponent(
|
|
81035
81151
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTreeList_vue__["a" /* default */],
|
|
81036
|
-
|
|
81152
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_451aa8f4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTreeList_vue__["a" /* default */],
|
|
81037
81153
|
__vue_template_functional__,
|
|
81038
81154
|
__vue_styles__,
|
|
81039
81155
|
__vue_scopeId__,
|
|
@@ -81054,7 +81170,7 @@ var content = __webpack_require__(852);
|
|
|
81054
81170
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
81055
81171
|
if(content.locals) module.exports = content.locals;
|
|
81056
81172
|
// add the styles to the DOM
|
|
81057
|
-
var update = __webpack_require__(3)("
|
|
81173
|
+
var update = __webpack_require__(3)("7971d2f1", content, true, {});
|
|
81058
81174
|
|
|
81059
81175
|
/***/ }),
|
|
81060
81176
|
/* 852 */
|
|
@@ -81111,7 +81227,7 @@ var Component = normalizeComponent(
|
|
|
81111
81227
|
"use strict";
|
|
81112
81228
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTree_vue__ = __webpack_require__(411);
|
|
81113
81229
|
/* unused harmony namespace reexport */
|
|
81114
|
-
/* harmony import */ var
|
|
81230
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_23ff383a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__ = __webpack_require__(859);
|
|
81115
81231
|
function injectStyle (ssrContext) {
|
|
81116
81232
|
__webpack_require__(855)
|
|
81117
81233
|
}
|
|
@@ -81131,7 +81247,7 @@ var __vue_scopeId__ = null
|
|
|
81131
81247
|
var __vue_module_identifier__ = null
|
|
81132
81248
|
var Component = normalizeComponent(
|
|
81133
81249
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTree_vue__["a" /* default */],
|
|
81134
|
-
|
|
81250
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_23ff383a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__["a" /* default */],
|
|
81135
81251
|
__vue_template_functional__,
|
|
81136
81252
|
__vue_styles__,
|
|
81137
81253
|
__vue_scopeId__,
|
|
@@ -81152,7 +81268,7 @@ var content = __webpack_require__(856);
|
|
|
81152
81268
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
81153
81269
|
if(content.locals) module.exports = content.locals;
|
|
81154
81270
|
// add the styles to the DOM
|
|
81155
|
-
var update = __webpack_require__(3)("
|
|
81271
|
+
var update = __webpack_require__(3)("22ebfd97", content, true, {});
|
|
81156
81272
|
|
|
81157
81273
|
/***/ }),
|
|
81158
81274
|
/* 856 */
|