修复谷歌按钮登录失效问题

This commit is contained in:
X1627315083
2025-02-03 16:07:17 +08:00
parent 2c7d953f1b
commit e1d03323d2
25 changed files with 127 additions and 72 deletions

View File

@@ -48,10 +48,10 @@
></a-select>
</div>
<div class="admin_state_item">
<span>payerTotal:</span>
<span>Payment Amount:</span>
<input
v-model="payerTotal"
placeholder="Please enter payer total"
placeholder="Please enter payment amount"
@keydown.enter="gettrialList"
type="text"
style="width: 250px"
@@ -289,7 +289,7 @@ export default defineComponent({
width:150,
ellipsis:true,
},{
title: "Payer Total",
title: "Payment Amount",
align: "center",
dataIndex: "payerTotal",
key: "payerTotal",
@@ -422,6 +422,8 @@ export default defineComponent({
let endDate: any = filterData.rangePickerValue?.[1]
? filterData.rangePickerValue[1] + " " + "23:59:59"
: "";
console.log(startDate);
let data = {
order: filterData.order,
orderBy: filterData.orderBy,
@@ -493,10 +495,12 @@ export default defineComponent({
} else if (str == "week") {
thirtyDaysAgoTimestamp = currentTimestamp - 7 * 24 * 60 * 60;
}
filterData.rangePickerValue[0] = formatTime(
thirtyDaysAgoTimestamp,
"YYYY-MM-DD"
);
// filterData.rangePickerValue[0] = formatTime(
// thirtyDaysAgoTimestamp,
// "YYYY-MM-DD"
// );
filterData.rangePickerValue = [formatTime(thirtyDaysAgoTimestamp,'YYYY-MM-DD'),formatTime(currentTimestamp,'YYYY-MM-DD')]
gettrialList();
};
let filterOption = (input: any, option: any) => {