1234567891011121314151617181920212223242526272829303132333435363738 |
- export const columns = [
- {
- title: 'Customer Name',
- dataIndex: 'merchandiseEnglishName',
- },
- {
- title: 'Clue Encoding',
- dataIndex: 'affiliationBrandName',
- },
- {
- title: 'Clue Status',
- dataIndex: 'sellPrice',
- },
- {
- title: 'Commission(USD)',
- dataIndex: 'sellPrice',
- },
- {
- title: 'Commission Status',
- dataIndex: 'state',
- },
- ]
- export const useGetData = () => {
- const condition = ref({
- year: '',
- })
- const clientList = ref([])
- const clientLoading = ref(false)
- const orderList = ref([])
- const orderLoading = ref(false)
- return {
- condition,
- clientList,
- orderList,
- clientLoading,
- orderLoading,
- }
- }
|