申请提现时间:{{ accountDetails.createTime }}
申请ID:{{ accountDetails.erbanNo }}
@@ -274,8 +285,8 @@ import PartitionSelect from "@/views/common/partitionSelect.vue"; // 正确引
export default {
name: "officialWithdrawRecord",
// mixins: [Mixin],
- components: {PartitionSelect, TablePagination },
- data() {
+ components: { PartitionSelect, TablePagination },
+ data () {
return {
dateCycleList: [],
btnLoading: false, // 导出弹出框(dialog)的确认按钮
@@ -352,15 +363,15 @@ export default {
};
},
methods: {
- getlistByPartitionId(){
- adminCountry({partitionId:this.searchForm.partitionId}).then((res) => {
+ getlistByPartitionId () {
+ adminCountry({ partitionId: this.searchForm.partitionId }).then((res) => {
if (res.code == 200) {
this.adminCountryArr = res.data;
this.searchForm.country = ''
}
});
},
- getData() {
+ getData () {
this.tableLoading = true;
let { pageParams, searchForm } = this;
@@ -397,11 +408,11 @@ export default {
}
});
},
- handleSelectionChange(rows) {
+ handleSelectionChange (rows) {
this.idStr = null;
this.idStr = rows.map((obj) => obj.id).join(",");
},
- handleChangeAll() {
+ handleChangeAll () {
ElMessageBox.confirm("确定要结算吗", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
@@ -427,7 +438,7 @@ export default {
});
},
// 查看详情处理函数
- accountInfosFun(res) {
+ accountInfosFun (res) {
var obj = JSON.parse(res.accountInfos);
console.log(obj);
this.accountDetails.createTime = res.createTime ? res.createTime : "-";
@@ -450,7 +461,7 @@ export default {
this.centerDialogVisible2 = true;
},
// 批量驳回
- dialogClick() {
+ dialogClick () {
batchReject({
ids:
this.centerDialogVisibleType == 1
@@ -481,7 +492,7 @@ export default {
});
});
},
- handleChange(row) {
+ handleChange (row) {
ElMessageBox.confirm("确定要结算吗", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
@@ -507,7 +518,7 @@ export default {
});
},
// 点击搜索
- handSearch() {
+ handSearch () {
this.$refs["searchForm"].validate((valid) => {
if (valid) {
this.pageParams.pageNo = 1;
@@ -516,13 +527,13 @@ export default {
});
},
// 重置搜索表单
- resetSearchForm() {
+ resetSearchForm () {
this.$refs["searchForm"].resetFields();
this.pageParams.pageNo = 1;
this.getData();
},
// 确认导出
- confirmExport2Excel() {
+ confirmExport2Excel () {
ElMessageBox.confirm("确定以当前筛选条件导出Excel吗?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
@@ -571,26 +582,26 @@ export default {
});
},
// 分页导航
- handleSizeChange(val) {
+ handleSizeChange (val) {
this.pageParams.pageSize = val;
this.getData();
},
- handlePageChange(val) {
- this.pageParams.pageSize = val;
+ handlePageChange (val) {
+ this.pageParams.pageNo = val;
this.getData();
},
- headerCopy(column, e) {
+ headerCopy (column, e) {
this.$copy(column.label);
},
},
computed: {
- convertTimestamp1() {
+ convertTimestamp1 () {
return function (time) {
let date = new Date(time);
return formatDateYMD(date);
};
},
- convertTimestamp() {
+ convertTimestamp () {
return function (time) {
let date = new Date(time);
return formatDate(date);