CD配唱片
2025-04-23 0109f273556b57c703677cf2198b05adb4974990
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<template>
    <div class="hxlh-table">
        <vxe-grid
            ref="vxeTable"
            :show-header-overflow="true"
            :show-overflow="showOverflow"
            :stripe="true"
            :border="true"
            :show-footer="showfooter"
            header-align="center"
            highlight-hover-column
            highlight-hover-row
            resizable
            size="small"
            :loading="loading"
            :pager-config="tablePage"
            :form-config="tableForm"
            :columns="columns"
            :data.sync="data"
            :checkbox-config="checkboxConfig"
            :height="height"
            :max-height="maxHeight"
            :toolbar="toolbar"
            :reload-data="reloadData"
            :footer-method="footerMethod"
            :footer-cell-class-name="footerCellClassName"
            :scroll-x="{enabled: true}"
            :scroll-y="{enabled: true}"
            :expand-config="expandConfig"
            @sort-change="sortChange"
            @page-change="pagerChange"
            @form-submit="findList"
            @checkbox-change="checkChange"
            @checkbox-all="checkChangeall"
            >
            <template v-slot:buttons="row">
                <slot name="buttons" v-bind="row"/>
            </template>
            <template #expandContent="{ row }">
              <vxe-grid v-bind="subGridOptions" :data="row.subList">
              </vxe-grid>
            </template>
            <template v-slot:status="row" >
              <slot name="status" v-bind="row"/>
          </template>
        </vxe-grid>
    </div>
  </template>
  
<script setup>
// 获取 Vuex 存储实例
// const useStore = useStore();
 
const props = defineProps({
/* table 参数*/
showOverflow: {
    type: Boolean,
    default: () => {
    return true
    }
},
columns: {
    type: Array,
    default: () => {
    return []
    }
},
showfooter: {
    type: Boolean,
    default: () => {
    return false
    }
},
toolbar: {
    type: Object,
    default: () => {
        return {
            id: 'khjgz',
            zoom: true,
            resizable: {
            storage: true
            },
            custom: {
            storage: true
            },
            slots: {
            buttons: 'buttons'
            }
        }
    }
},
data: {
    type: Array,
    default: () => {
    return []
    }
},
loading: {
    type: Boolean,
    default: false
},
page: {
    type: Object,
    default: function() {
        return null
    }
},
checkboxConfig: {
    type: Object,
    default: () => {
    return {}
    }
},
maxHeight: {
    type: String,
    default: () => {
    return ''
    }
},
height: {
    type: String,
    default: () => {
    return ''
    }
},
reloadData: {
    type: Function,
    default: () => {
    return {}
    }
},
footerCellClassName: {
    type: Function,
    default: () => {
    return {}
    }
},
mxTableFootData: {
    type: Array,
    default: () => {
    return []
    }
},
expandConfig: {
  type: Object,
  default: () => {
    return {lazy: false}
  }
},
subGridOptions: {
  type:Object,
  default :()=>{
    return {}
  }
}
})
 
 
const tableForm = ref([]);
 
// const url = computed(() => props.src)
const emit = defineEmits();
 
function pagerChange({ type, currentPage, pageSize }) {
    if (type == 'current') {
        emit("changePageNo", currentPage);
    } else if (type == 'size') {
        emit('changePageSize', pageSize)
    }
}
function findList() {}
 
function sortChange({ column, property, order }) {
    emit('sortTable', property, order)
}
 
function checkChange(info) {
    const { records, checked, row, rowIndex } = info
    emit('on-checkbox', { records, rowIndex, checked })
}
 
function checkChangeall(info) {
    const { records, checked, row } = info
    emit('on-checkbox', { records, rowIndex: null, checked })
}
 
// 定义 footerMethod 函数
function footerMethod({ columns, data }) {
  // 触发 footerMethod 事件
  emit('footerMethod', { columns, data });
  // 返回 Vuex 中的 hxlhTableFootData 状态
//   return useStore.state.hxlhTableFootData;
};
 
function handleSum(list, field) {
    var total = 0
    for (var index = 0; index < list.length; index++) {
    total += Number(list[index][field] || 0)
    }
    return total
}
const vxeTable = ref(null);
 
// 在值发生改变时更新表尾合计
function updateFooter(params) {
    const xTable = vxeTable.value
    xTable.updateFooter()
}
 
// 取消复选框选择
function clearCheckboxRow() {
    const xTable = vxeTable.value
    xTable.clearCheckboxRow()
}
 
// 定义 tablePage 计算属性
const tablePage = computed(() => {
  if (!props.page) {
    return;
  }
  return {
    total: props.page.total,
    currentPage: props.page.current,
    pageSize: props.page.size,
    align: 'left',
    pageSizes: [10, 20, 50, 100, 500],
    layouts: ['PrevJump', 'PrevPage', 'Number', 'NextPage', 'NextJump', 'Sizes', 'FullJump', 'Total'],
    perfect: true
  };
});
 
// 定义 footData 计算属性
const footData = computed(() => props.mxTableFootData);
 
/* const data = computed(() => {
  if (!props.page) {
    return;
  }
  const total = props.page.total; 
  const currentPage = tablePage.value.currentPage;
  const pageSize = tablePage.value.pageSize;
  let start = (currentPage - 1) * pageSize;
  let end = start + pageSize;
  if (end > total) {
    end = total;
  }
  const tableData = [];
  for (let i = start; i < end; i++) {
    tableData.push(props.data[i]);
  }
  return tableData;
}); */
</script>
 
<style lang="scss">
  .hxlh-table .vxe-toolbar .vxe-tools--operate {
    margin-top: -23px;
  }
 
  .hxlh-table .vxe-toolbar {
    min-height: 52px;
    height: auto;
  }
 
  .vxe-table .vxe-footer--column.col-red {
    color: red;
  }
 
</style>