diff --git a/src/components/XyTable/index.vue b/src/components/XyTable/index.vue index a1f72d6..7302ed9 100644 --- a/src/components/XyTable/index.vue +++ b/src/components/XyTable/index.vue @@ -528,8 +528,8 @@ export default { { return ( @@ -538,7 +538,13 @@ export default { data={this.$props?.tableItem} props={{ props: { key: 'prop', label: 'label' } - }}> + }} + scopedSlots={{ + default: ({ option }) => { + return option.label.length > 6 ? ({option.label}) : ({option.label}) + } + }}> + ) // return ( // diff --git a/src/views/lease/component/payList.vue b/src/views/lease/component/payList.vue index 92eebf5..8c799d7 100644 --- a/src/views/lease/component/payList.vue +++ b/src/views/lease/component/payList.vue @@ -266,11 +266,23 @@ export default { { prop: "weidaoweiyuanyin", label: "未到位原因", - align: "left" + align: "left", + minWidth: 180 }, { prop: "shijidaozhangriqi", - label: "实际到账日期" + label: "实际到账日期", + width: 180 + }, + { + prop: "zulinjieduankaishiriqi", + label: "请选择租赁阶段开始日期", + width: 200 + }, + { + prop: "zulinjieduanjieshuriqi", + label: "请选择租赁阶段结束日期", + width: 200 }, { prop: 'destroy', diff --git a/src/views/statics/DepartmentStatistics.vue b/src/views/statics/DepartmentStatistics.vue new file mode 100644 index 0000000..7bca3b2 --- /dev/null +++ b/src/views/statics/DepartmentStatistics.vue @@ -0,0 +1,40 @@ + + + + +