订单状态:
@@ -92,6 +114,7 @@ const queryData = ref({
time: null,
word: '',
selectKey: null,
+ pay_type: null,
})
const songs = ref([
@@ -111,6 +134,10 @@ const songs = ref([
value: 4,
label: '已过期',
},
+ {
+ value: 5,
+ label: '已销售',
+ },
])
const selectOptions = ref([
@@ -318,6 +345,7 @@ const getList = async () => {
try {
const query_data = {
Status: queryData.value.status || '',
+ PayType: queryData.value.pay_type || '',
StartTime: queryData.value.time === null ? '' : queryData.value.time[0] || '',
EndTime: queryData.value.time === null ? '' : queryData.value.time[1] || '',
}
@@ -360,6 +388,7 @@ const clear = () => {
time: null,
word: '',
selectKey: null,
+ pay_type: null,
}
getList()
}