参数修改

This commit is contained in:
zzyuan 2025-07-04 14:25:16 +08:00
parent 1a73643923
commit 9bb1df9d36
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
<el-form-item label="计划日期">
<el-date-picker
v-model="dateRange"

View File

@ -748,6 +748,9 @@ export default {
}
getStaffListApi(param).then(response => {
this.tableListData = response.rows;
this.tableListData.forEach(item=>{
this.$set(item,"mobile",decryptWithSM4(item.mobile))
})
this.total = Number(response.total);
this.loading = false;
});