sc
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
<el-table-column type="index" width="50" fixed="left" />
|
||||
<el-table-column prop="nickname" label="姓名" width="80" fixed="left" />
|
||||
<el-table-column
|
||||
v-for="(item, index) in new Date().getMonth() + 1"
|
||||
v-for="(item, index) in 12"
|
||||
:key="index"
|
||||
:label="item + '月'"
|
||||
sortable
|
||||
|
||||
@@ -116,7 +116,13 @@
|
||||
<el-table-column type="index" width="40" />
|
||||
<el-table-column prop="username" label="姓名" width="80" />
|
||||
<el-table-column prop="followNum" label="成交数量" width="90" sortable />
|
||||
<el-table-column prop="signPrice" label="成交额" min-width="90" sortable />
|
||||
<el-table-column
|
||||
v-if="appStore.getAppInfo?.instanceType != 1"
|
||||
prop="signPrice"
|
||||
label="成交额"
|
||||
min-width="90"
|
||||
sortable
|
||||
/>
|
||||
<el-table-column prop="deptName" label="所属组织" width="150" />
|
||||
</el-table>
|
||||
</el-skeleton>
|
||||
|
||||
@@ -174,10 +174,10 @@ const searchForm = ref({})
|
||||
|
||||
function handleReset() {
|
||||
const year = new Date().getFullYear()
|
||||
const month = new Date().getMonth() + 1
|
||||
const month = new Date().getMonth() + 1 + ''
|
||||
searchForm.value = {
|
||||
nickname: undefined,
|
||||
consultTime: [`${year}-${month}-01`, formatDate(new Date())],
|
||||
consultTime: [`${year}-${month.padStart(2, '0')}-01`, formatDate(new Date())],
|
||||
licenseTypeList: [],
|
||||
sourceId: undefined
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user