From 5504233baae78e2c387ea740adf17c3bce22cd26 Mon Sep 17 00:00:00 2001
From: 小小儁爺 <1694218219@qq.com>
Date: 星期一, 12 八月 2024 11:33:42 +0800
Subject: [PATCH] 1.增加页面缓存2.工资统计精度问题
---
src/views/basicSettings/postList.vue | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/views/basicSettings/postList.vue b/src/views/basicSettings/postList.vue
index 4177e23..2ea41ad 100644
--- a/src/views/basicSettings/postList.vue
+++ b/src/views/basicSettings/postList.vue
@@ -3,7 +3,13 @@
<div class="body" :style="{height:mainHeight+'px'}">
<div class="bodyTopButtonGroup" style="justify-content: space-between">
<el-button v-waves type="primary" icon="el-icon-circle-plus-outline" @click="add('add')">鏂板</el-button>
- <el-button v-waves type="success" icon="el-icon-download" @click="$router.push('./../systemSetting/dataImport?fileCode=1')">瀵煎叆</el-button>
+ <el-button
+ v-waves
+ type="success"
+ icon="el-icon-download"
+ @click="$router.push('./../systemSetting/dataImport?fileCode=1')"
+ >瀵煎叆
+ </el-button>
</div>
<div class="bodyTopFormGroup">
@@ -96,7 +102,7 @@
sortable="custom"
>
<template slot-scope="{row}">
- {{ row.description?row.description:'/' }}
+ {{ row.description ? row.description : '/' }}
</template>
</el-table-column>
<el-table-column
@@ -200,18 +206,13 @@
<script>
import Pagination from '@/components/Pagination'
-import {
- AddUpdateOrganization, AddUpdatePost,
- DeleteOrganization, DeletePost, PostData,
- PrentOrganization,
- STorgData
-} from '@/api/basicSettings'
+import { AddUpdatePost, DeletePost, PostData } from '@/api/basicSettings'
import { validateCode } from '@/utils/global'
import elDragDialog from '@/directive/el-drag-dialog'
import waves from '@/directive/waves'
export default {
- name: 'Zzjg',
+ name: 'PersonList',
components: {
Pagination
},
--
Gitblit v1.9.3