doway-coms 2.11.37 → 2.11.39

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "2.11.37",
3
+ "version": "2.11.39",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -237,7 +237,6 @@
237
237
  size="small"
238
238
  @change="cellValueChange(scope)"
239
239
  value-format="YYYY-MM-DD"
240
- :disabled-date="(current) => disabledDate(current,scope.column.params)"
241
240
  />
242
241
  </div>
243
242
  </template>
@@ -24,6 +24,8 @@
24
24
  :columns="innerColumns"
25
25
  :height="gridHeight"
26
26
  :rows="gridRows"
27
+ :dataCode="dataCode"
28
+ :moduleCode="moduleCode"
27
29
  :pager="gridPager"
28
30
  :showCheckBox="false"
29
31
  :editStates="['view']"
@@ -43,6 +45,14 @@ export default {
43
45
  columns: {
44
46
  type: Array,
45
47
  required: true
48
+ },
49
+ dataCode: {
50
+ type: String,
51
+ default: '',
52
+ },
53
+ moduleCode: {
54
+ type: String,
55
+ default: '',
46
56
  }
47
57
  },
48
58
  data() {
@@ -39,4 +39,7 @@
39
39
  }
40
40
  .vxe-table .vxe-sort--asc-btn, .vxe-table .vxe-sort--desc-btn{
41
41
  color:black;
42
+ }
43
+ .vxe-table--render-default{
44
+ color:black;
42
45
  }