centaline-data-driven 1.5.69 → 1.5.71

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.
@@ -62,6 +62,7 @@ const paths = {
62
62
  "dynamicContainer": "./src/centaline/dynamicContainer/index.js", //容器控件
63
63
  "dynamicSearch": "./src/centaline/dynamicSearch/index.js", //查询条件
64
64
  "dynamicCalendar": "./src/centaline/dynamicCalendar/index.js", //日历控件
65
+ "dynamicLH": "./src/centaline/dynamicLH/index.js", //html 标签
65
66
  },
66
67
  "plugs": {
67
68
  "api": "./src/centaline/api/index.js", //调用API插件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.5.69",
3
+ "version": "1.5.71",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,29 @@
1
+ ## v1.5.71
2
+ 2023-10-30
3
+
4
+ 新增
5
+
6
+ 日历组件以及时间组件新增查询自动加载功能
7
+
8
+ html标签
9
+
10
+ ## v1.5.70
11
+ 2023-10-27
12
+
13
+ BUG
14
+
15
+ 列表更新列属性,只有第一页才更新表头
16
+
17
+ 列表自定义行选中颜色,滚动翻页后,原选中行 自定义颜色失效
18
+
19
+ 优化
20
+
21
+ 列表页有无查询条件时不同的样式优化
22
+
23
+ 多行文本不显示只有最大值的提示
24
+
25
+ formData添加execRouter方法
26
+
1
27
  ## v1.5.69
2
28
  2023-10-25
3
29
 
@@ -60,7 +60,6 @@ export default {
60
60
  });
61
61
  },
62
62
  loaded(data) {
63
- debugger
64
63
  var self = this;
65
64
  self.isShowSearchlist = false;
66
65
  self.apiParam = data;
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="'/api/distribution/transactionCommAdjust/detail'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
4
+ <ct-form :api="'/EmployeeAttendanceBillApply/getLayoutOfNew'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
5
5
  <ct-dialog-list></ct-dialog-list>
6
6
  </div>
7
7
  </template>
@@ -12,7 +12,9 @@
12
12
  data() {
13
13
  return {
14
14
  apiParam:{
15
- transactionId: "1699302916360077313", actionType: "1", pageStyle: "2", pageOnly: "true"
15
+ actionType
16
+ :
17
+ 2
16
18
  },
17
19
  topHeight:10,
18
20
  }
@@ -93,7 +93,11 @@
93
93
 
94
94
  <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/ReportMonthAttendanceList/getLayoutOfSearch'" :searchDataApi="'/ReportMonthAttendanceList/getListOfSearchModel'"></ct-searchlist> -->
95
95
 
96
- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/PersonHolidayList/getLayoutOfSearch'" :searchDataApi="'/PersonHolidayList/getListOfSearchModel'"></ct-searchlist>
96
+ <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/PersonHolidayList/getLayoutOfSearch'" :searchDataApi="'/PersonHolidayList/getListOfSearchModel'"></ct-searchlist> -->
97
+
98
+ <!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/EmployeeAttendanceBillList/getLayoutOfSearch'" :searchDataApi="'/EmployeeAttendanceBillList/getListOfSearchModel'"></ct-searchlist> -->
99
+
100
+ <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/HolidayTypeList/getLayoutOfSearch'" :searchDataApi="'/HolidayTypeList/getListOfSearchModel'"></ct-searchlist>
97
101
 
98
102
 
99
103
  <ct-dialog-list></ct-dialog-list>
@@ -926,3 +926,7 @@ color: var(--centalinePlaceholder);
926
926
  .ct-searchcategory .el-radio-button__inner:hover {
927
927
  color: var(--chinaRed);
928
928
  }
929
+ .sidebar{
930
+ border-top-left-radius: 6px;
931
+ border-bottom-left-radius: 6px;
932
+ }