centaline-data-driven 1.6.54 → 1.6.55
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/package.json +1 -1
- package/release-log.md +8 -0
- package/src/Form.vue +2 -2
- package/src/SearchList.vue +2 -2
- package/src/centaline/dynamicForm/src/dynamicForm.vue +3 -3
- package/src/centaline/dynamicSo/src/dynamicSo.vue +1 -1
- package/src/centaline/dynamicSosNew/src/dynamicSosNew.vue +4 -2
- package/src/main.js +4 -4
- package/wwwroot/static/centaline/centaline-data-driven.js +15 -13
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/release-log.md
CHANGED
package/src/Form.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="form-app" class="data-driven" style="width:100%;height:100%;overflow:auto">
|
|
3
3
|
<!-- <ct-form :source="formdata.content" :apiParam="apiParam"></ct-form> -->
|
|
4
|
-
<ct-form :api="'/
|
|
4
|
+
<ct-form :api="'/api/third-dept-tran/transaction/edit'" :apiParam="apiParam" :topHeight="topHeight" :documentHeight="'600px'"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
"
|
|
15
|
+
"originalTraId":"1913105048579919873","actionType":3,"pageStyle":2,"pageTitle":"修改成交单","pageOnly":true
|
|
16
16
|
},
|
|
17
17
|
topHeight:10,
|
|
18
18
|
}
|
package/src/SearchList.vue
CHANGED
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist> -->
|
|
36
36
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/commissionquery/properformanceszjjbreport/getLayoutOfSearch'" :searchDataApi="'/commissionquery/properformanceszjjbreport/getList'"></ct-searchlist> -->
|
|
37
37
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/employeelist/getLayoutOfSearch'" :searchDataApi="'/employeelist/getList'"></ct-searchlist> -->
|
|
38
|
-
|
|
38
|
+
<ct-searchlist :apiParam="para" :searchConditionApi="'/estatemanage/estatlist/getLayoutOfSearch'" :searchDataApi="'/estatemanage/estatlist/getList'"></ct-searchlist>
|
|
39
39
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/system/AreaList/getLayoutOfSearch'" :searchDataApi="'/system/AreaList/getList'"></ct-searchlist> -->
|
|
40
40
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/roomtypelist/getLayoutOfSearch'" :searchDataApi="'/roomtypelist/getList'"></ct-searchlist> -->
|
|
41
|
-
<ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/priceuploadlist/getLayoutOfSearch'" :searchDataApi="'//salemattersmanage/priceuploadlist/getList'"></ct-searchlist>
|
|
41
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/priceuploadlist/getLayoutOfSearch'" :searchDataApi="'//salemattersmanage/priceuploadlist/getList'"></ct-searchlist> -->
|
|
42
42
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/app/workbenchdetails/getContractLayoutOfSearch'" :searchDataApi="'/app/workbenchdetails/getContractList'"></ct-searchlist> -->
|
|
43
43
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/selectionactivitymanage/EvaluationActWorksList/getLayoutOfSearch'" :searchDataApi="'/selectionactivitymanage/EvaluationActWorksList/getListOfSearchModel'"></ct-searchlist> -->
|
|
44
44
|
<!-- CCES -->
|
|
@@ -1379,7 +1379,7 @@
|
|
|
1379
1379
|
submitData.lat=field.code2;
|
|
1380
1380
|
submitData = router.getActionPara(submitData).para;
|
|
1381
1381
|
|
|
1382
|
-
|
|
1382
|
+
let dialogOption = {
|
|
1383
1383
|
title: router.pageTitle || router.label,
|
|
1384
1384
|
pane: self.$common.getParentPane(self),
|
|
1385
1385
|
content: [{
|
|
@@ -1400,8 +1400,8 @@
|
|
|
1400
1400
|
}
|
|
1401
1401
|
self.$common.closeDialog(dialogOption.dialog);
|
|
1402
1402
|
},
|
|
1403
|
-
closeDialog(ev) {
|
|
1404
|
-
self.$common.closeDialog(dialogOption.dialog);
|
|
1403
|
+
closeDialog(ev) {
|
|
1404
|
+
// self.$common.closeDialog(dialogOption.dialog);
|
|
1405
1405
|
}
|
|
1406
1406
|
}
|
|
1407
1407
|
}]
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
var dropdown = self.$refs["pop"];
|
|
133
133
|
this.unwatch1=self.$watch('model.options', function (newVal, oldVal) {
|
|
134
134
|
self.$nextTick(() => {
|
|
135
|
-
if (typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
|
|
135
|
+
if (dropdown && typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
|
|
136
136
|
dropdown.popperJS.destroy();
|
|
137
137
|
dropdown.popperJS = null;
|
|
138
138
|
dropdown.updatePopper();
|
|
@@ -110,8 +110,10 @@
|
|
|
110
110
|
removeReadOnly() {
|
|
111
111
|
this.$nextTick(() => {
|
|
112
112
|
setTimeout(() => {
|
|
113
|
-
|
|
114
|
-
|
|
113
|
+
if(this.$refs.refselect){
|
|
114
|
+
const input = this.$refs.refselect.$el.querySelector('.el-input__inner');
|
|
115
|
+
input.removeAttribute('readonly');
|
|
116
|
+
}
|
|
115
117
|
}, 200);
|
|
116
118
|
});
|
|
117
119
|
},
|
package/src/main.js
CHANGED
|
@@ -30,7 +30,7 @@ Vue.use(centaline, {
|
|
|
30
30
|
// baseUrl: "http://10.25.10.67:9999/service-api/",
|
|
31
31
|
// baseUrl: "http://10.25.10.69:8080/",
|
|
32
32
|
// baseUrl: "https://ccesutest.centaline.com.cn/service-api/v1/form/router",
|
|
33
|
-
|
|
33
|
+
baseUrl: "http://10.88.22.69:8080/",
|
|
34
34
|
// baseUrl: "http://10.88.22.42:9999/service-api/",
|
|
35
35
|
// baseUrl: "http://10.1.245.111:38908/service-api/",
|
|
36
36
|
// baseUrl: "http://10.1.245.111:31574/service-api/",
|
|
@@ -68,7 +68,7 @@ Vue.use(centaline, {
|
|
|
68
68
|
// 获取请求头
|
|
69
69
|
getRequestHeaders: function () {
|
|
70
70
|
return {
|
|
71
|
-
oldToken: '
|
|
71
|
+
oldToken: '30bf66c7-b93e-47b4-9d6f-3a7e85c19ac0',
|
|
72
72
|
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjksOwjAMBe-SdS05tuPE7PpJNhwCBWglWCHaSiDE3SniEGznjfTm5eb16HYuIUWltoc-sYKkYGDcF_ApGWYzjrE_CHOHKANQxAJSYgYTCYBoahaC0qAHJc6lbRW8bLuUbpNIBDS3QTJhZiHXuPFxczsfmXxCJG3cpS4_gMb6Bes83vfj8x9x1-Wy3eJ48seQJuCaziATTWDRIlSazCNrlerd-wMAAP__.93H7c7k4TLTqbKpozp0aTSU4U_WrQu3eS990iS-TCpw',
|
|
73
73
|
// authObject: '{token:"jiangzf-1955865005534617600",platform:"WEB"}',
|
|
74
74
|
|
|
@@ -77,8 +77,8 @@ Vue.use(centaline, {
|
|
|
77
77
|
estateId: '',
|
|
78
78
|
appinfo:'{"appId":"8F184E91-2C73-45E3-B518-889491E07CDA","appName":"%E6%95%B0%E6%8D%AE%E9%A9%B1%E5%8A%A8%E7%AE%A1%E7%90%86%E5%90%8E%E5%8F%B0"}',
|
|
79
79
|
|
|
80
|
-
authObject: '{"currentEstate":{
|
|
81
|
-
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.
|
|
80
|
+
authObject: '{"currentEstate":{},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"KAuXV9","time":1758521266777,"sign":"7b7b810344386d079c18a92a30bfb5e4","systemSource":"CCESU","empNo":"hqxtgl","empId":"2411121446336B97FBEB7FD54905A903","clientVersion":"12.5","empName":"hq%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86","roleName":"%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86%E5%91%98","deptFullName":"%E6%9C%AA%E5%8C%B9%E9%85%8DCCHR%E4%B8%ADHROC%E9%83%A8%E9%97%A8%2F%E9%9B%86%E5%9B%A2IT%2FCCES%E7%BB%84"}',
|
|
81
|
+
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjFjYzc4ZTY3LTM0YjAtNDNmMC1iN2U1LThmMzc3NGQxMmYyMyJ9.QrBgk0iLrBj9sDdDdfxBApNUXVH0DX1sYIsFgmIWxTwCWJU_RRbaGmHuZ_xV3Co_j_9GmDCNjRBeQWoRoiYaRg',
|
|
82
82
|
};
|
|
83
83
|
},
|
|
84
84
|
// 请求完成事件,可判断是否登录过期执行响应操作
|
|
@@ -11342,7 +11342,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
11342
11342
|
"use strict";
|
|
11343
11343
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(188);
|
|
11344
11344
|
/* unused harmony namespace reexport */
|
|
11345
|
-
/* harmony import */ var
|
|
11345
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_579cd88f_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(622);
|
|
11346
11346
|
function injectStyle (ssrContext) {
|
|
11347
11347
|
__webpack_require__(616)
|
|
11348
11348
|
}
|
|
@@ -11362,7 +11362,7 @@ var __vue_scopeId__ = null
|
|
|
11362
11362
|
var __vue_module_identifier__ = null
|
|
11363
11363
|
var Component = normalizeComponent(
|
|
11364
11364
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
|
|
11365
|
-
|
|
11365
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_579cd88f_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
|
|
11366
11366
|
__vue_template_functional__,
|
|
11367
11367
|
__vue_styles__,
|
|
11368
11368
|
__vue_scopeId__,
|
|
@@ -30587,7 +30587,7 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
|
|
|
30587
30587
|
self.$common.closeDialog(dialogOption.dialog);
|
|
30588
30588
|
},
|
|
30589
30589
|
closeDialog: function closeDialog(ev) {
|
|
30590
|
-
self.$common.closeDialog(dialogOption.dialog);
|
|
30590
|
+
// self.$common.closeDialog(dialogOption.dialog);
|
|
30591
30591
|
}
|
|
30592
30592
|
}
|
|
30593
30593
|
}]
|
|
@@ -55735,7 +55735,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
55735
55735
|
var dropdown = self.$refs["pop"];
|
|
55736
55736
|
this.unwatch1 = self.$watch('model.options', function (newVal, oldVal) {
|
|
55737
55737
|
self.$nextTick(function () {
|
|
55738
|
-
if (typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
|
|
55738
|
+
if (dropdown && typeof dropdown.popperJS !== 'undefined' && dropdown.popperJS) {
|
|
55739
55739
|
dropdown.popperJS.destroy();
|
|
55740
55740
|
dropdown.popperJS = null;
|
|
55741
55741
|
dropdown.updatePopper();
|
|
@@ -68767,8 +68767,10 @@ var ctSpan = {
|
|
|
68767
68767
|
|
|
68768
68768
|
this.$nextTick(function () {
|
|
68769
68769
|
setTimeout(function () {
|
|
68770
|
-
|
|
68771
|
-
|
|
68770
|
+
if (_this.$refs.refselect) {
|
|
68771
|
+
var input = _this.$refs.refselect.$el.querySelector('.el-input__inner');
|
|
68772
|
+
input.removeAttribute('readonly');
|
|
68773
|
+
}
|
|
68772
68774
|
}, 200);
|
|
68773
68775
|
});
|
|
68774
68776
|
},
|
|
@@ -80288,7 +80290,7 @@ var content = __webpack_require__(617);
|
|
|
80288
80290
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
80289
80291
|
if(content.locals) module.exports = content.locals;
|
|
80290
80292
|
// add the styles to the DOM
|
|
80291
|
-
var update = __webpack_require__(3)("
|
|
80293
|
+
var update = __webpack_require__(3)("39bb2448", content, true, {});
|
|
80292
80294
|
|
|
80293
80295
|
/***/ }),
|
|
80294
80296
|
/* 617 */
|
|
@@ -86305,7 +86307,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
86305
86307
|
"use strict";
|
|
86306
86308
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSo_vue__ = __webpack_require__(358);
|
|
86307
86309
|
/* unused harmony namespace reexport */
|
|
86308
|
-
/* harmony import */ var
|
|
86310
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_96144d24_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSo_vue__ = __webpack_require__(732);
|
|
86309
86311
|
function injectStyle (ssrContext) {
|
|
86310
86312
|
__webpack_require__(730)
|
|
86311
86313
|
}
|
|
@@ -86325,7 +86327,7 @@ var __vue_scopeId__ = null
|
|
|
86325
86327
|
var __vue_module_identifier__ = null
|
|
86326
86328
|
var Component = normalizeComponent(
|
|
86327
86329
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSo_vue__["a" /* default */],
|
|
86328
|
-
|
|
86330
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_96144d24_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSo_vue__["a" /* default */],
|
|
86329
86331
|
__vue_template_functional__,
|
|
86330
86332
|
__vue_styles__,
|
|
86331
86333
|
__vue_scopeId__,
|
|
@@ -86346,7 +86348,7 @@ var content = __webpack_require__(731);
|
|
|
86346
86348
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
86347
86349
|
if(content.locals) module.exports = content.locals;
|
|
86348
86350
|
// add the styles to the DOM
|
|
86349
|
-
var update = __webpack_require__(3)("
|
|
86351
|
+
var update = __webpack_require__(3)("18dc7aa8", content, true, {});
|
|
86350
86352
|
|
|
86351
86353
|
/***/ }),
|
|
86352
86354
|
/* 731 */
|
|
@@ -88954,7 +88956,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
88954
88956
|
"use strict";
|
|
88955
88957
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSosNew_vue__ = __webpack_require__(417);
|
|
88956
88958
|
/* unused harmony namespace reexport */
|
|
88957
|
-
/* harmony import */ var
|
|
88959
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1df7239a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSosNew_vue__ = __webpack_require__(872);
|
|
88958
88960
|
function injectStyle (ssrContext) {
|
|
88959
88961
|
__webpack_require__(870)
|
|
88960
88962
|
}
|
|
@@ -88974,7 +88976,7 @@ var __vue_scopeId__ = null
|
|
|
88974
88976
|
var __vue_module_identifier__ = null
|
|
88975
88977
|
var Component = normalizeComponent(
|
|
88976
88978
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSosNew_vue__["a" /* default */],
|
|
88977
|
-
|
|
88979
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1df7239a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSosNew_vue__["a" /* default */],
|
|
88978
88980
|
__vue_template_functional__,
|
|
88979
88981
|
__vue_styles__,
|
|
88980
88982
|
__vue_scopeId__,
|
|
@@ -88995,7 +88997,7 @@ var content = __webpack_require__(871);
|
|
|
88995
88997
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
88996
88998
|
if(content.locals) module.exports = content.locals;
|
|
88997
88999
|
// add the styles to the DOM
|
|
88998
|
-
var update = __webpack_require__(3)("
|
|
89000
|
+
var update = __webpack_require__(3)("4182b9ac", content, true, {});
|
|
88999
89001
|
|
|
89000
89002
|
/***/ }),
|
|
89001
89003
|
/* 871 */
|