ソースを参照

项目文件管理完成

2545307760@qq.com 5 ヶ月 前
コミット
d8a57ae6cd

+ 2 - 0
package.json

@@ -10,6 +10,7 @@
   },
   "dependencies": {
     "@element-plus/icons-vue": "^2.3.1",
+    "amfe-flexible": "^2.2.1",
     "axios": "^1.7.7",
     "element-plus": "^2.8.4",
     "js-cookie": "^3.0.5",
@@ -27,6 +28,7 @@
   },
   "devDependencies": {
     "@vitejs/plugin-vue": "^5.1.2",
+    "postcss-pxtorem": "^6.1.0",
     "unplugin-auto-import": "^0.18.3",
     "unplugin-vue-components": "^0.27.4",
     "vite": "^5.4.1"

+ 20 - 0
pnpm-lock.yaml

@@ -11,6 +11,9 @@ importers:
       '@element-plus/icons-vue':
         specifier: ^2.3.1
         version: 2.3.1(vue@3.5.10)
+      amfe-flexible:
+        specifier: ^2.2.1
+        version: 2.2.1
       axios:
         specifier: ^1.7.7
         version: 1.7.7
@@ -57,6 +60,9 @@ importers:
       '@vitejs/plugin-vue':
         specifier: ^5.1.2
         version: 5.1.4(vite@5.4.8(less@4.2.0)(sass@1.79.4))(vue@3.5.10)
+      postcss-pxtorem:
+        specifier: ^6.1.0
+        version: 6.1.0(postcss@8.4.47)
       unplugin-auto-import:
         specifier: ^0.18.3
         version: 0.18.3(@vueuse/core@9.13.0(vue@3.5.10))(rollup@4.22.5)
@@ -434,6 +440,9 @@ packages:
     engines: {node: '>=0.4.0'}
     hasBin: true
 
+  amfe-flexible@2.2.1:
+    resolution: {integrity: sha512-L2VfvDzoETBjhRptg5u/IUuzHSuxm22JpSRb404p/TBGeRfwWmmNEbB+TFPIP/sS/+pbM18bCFH9QnMojLuPNw==}
+
   anymatch@3.1.3:
     resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
     engines: {node: '>= 8'}
@@ -738,6 +747,11 @@ packages:
   pkg-types@1.2.0:
     resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
 
+  postcss-pxtorem@6.1.0:
+    resolution: {integrity: sha512-ROODSNci9ADal3zUcPHOF/K83TiCgNSPXQFSbwyPHNV8ioHIE4SaC+FPOufd8jsr5jV2uIz29v1Uqy1c4ov42g==}
+    peerDependencies:
+      postcss: ^8.0.0
+
   postcss@8.4.47:
     resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
     engines: {node: ^10 || ^12 || >=14}
@@ -1203,6 +1217,8 @@ snapshots:
 
   acorn@8.12.1: {}
 
+  amfe-flexible@2.2.1: {}
+
   anymatch@3.1.3:
     dependencies:
       normalize-path: 3.0.0
@@ -1512,6 +1528,10 @@ snapshots:
       mlly: 1.7.1
       pathe: 1.1.2
 
+  postcss-pxtorem@6.1.0(postcss@8.4.47):
+    dependencies:
+      postcss: 8.4.47
+
   postcss@8.4.47:
     dependencies:
       nanoid: 3.3.7

+ 11 - 0
postcss.config.js

@@ -0,0 +1,11 @@
+// postcss.config.js
+module.exports = {
+    plugins: {
+        'postcss-pxtorem': {
+            rootValue({ file }) {
+                return file.indexOf('vant') !== -1 ? 37.5 : 75; // 因为vant框架是以375px的稿子为基础的,所以需要适配一下
+            },
+            propList: ['*'], // 需要转换的css属性,默认*全部
+        }
+    }
+}

+ 1 - 20
src/main.js

@@ -7,8 +7,7 @@ import ElementPlus from 'element-plus'
 import 'element-plus/dist/index.css'
 import vantage from 'vant'
 import 'vant/lib/index.css';
-import Viewer from 'v-viewer';
-// import 'viewerjs/dist/viewer.css';
+import 'amfe-flexible'
 
 const manage = createPinia()
 const app = createApp(App)
@@ -16,22 +15,4 @@ app.use(manage)
 app.use(ElementPlus)
 app.use(router)
 app.use(vantage)
-app.use(Viewer, {
-    Options: {
-        'inline': true,
-        'button': true, //右上角按钮
-        'navbar': true, //底部缩略图
-        'title': true, //当前图片标题
-        'toolbar': true, //底部工具栏
-        'tooltip': true, //显示缩放百分比
-        'movable': true, //是否可以移动
-        'zoomable': true, //是否可以缩放
-        'rotatable': true, //是否可旋转
-        'scalable': true, //是否可翻转
-        'transition': true, //使用 CSS3 过度
-        'fullscreen': true, //播放时是否全屏
-        'keyboard': true, //是否支持键盘
-        'url': 'data-source',
-    },
-})
 app.mount('#app')

+ 0 - 78
src/style.css

@@ -1,79 +1 @@
-/*:root {*/
-/*  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;*/
-/*  line-height: 1.5;*/
-/*  font-weight: 400;*/
 
-/*  color-scheme: light dark;*/
-/*  color: rgba(255, 255, 255, 0.87);*/
-/*  background-color: #242424;*/
-
-/*  font-synthesis: none;*/
-/*  text-rendering: optimizeLegibility;*/
-/*  -webkit-font-smoothing: antialiased;*/
-/*  -moz-osx-font-smoothing: grayscale;*/
-/*}*/
-
-/*a {*/
-/*  font-weight: 500;*/
-/*  color: #646cff;*/
-/*  text-decoration: inherit;*/
-/*}*/
-/*a:hover {*/
-/*  color: #535bf2;*/
-/*}*/
-
-/*body {*/
-/*  margin: 0;*/
-/*  display: flex;*/
-/*  place-items: center;*/
-/*  min-width: 320px;*/
-/*  min-height: 100vh;*/
-/*}*/
-
-/*h1 {*/
-/*  font-size: 3.2em;*/
-/*  line-height: 1.1;*/
-/*}*/
-
-/*button {*/
-/*  border-radius: 8px;*/
-/*  border: 1px solid transparent;*/
-/*  padding: 0.6em 1.2em;*/
-/*  font-size: 1em;*/
-/*  font-weight: 500;*/
-/*  font-family: inherit;*/
-/*  background-color: #1a1a1a;*/
-/*  cursor: pointer;*/
-/*  transition: border-color 0.25s;*/
-/*}*/
-/*button:hover {*/
-/*  border-color: #646cff;*/
-/*}*/
-/*button:focus,*/
-/*button:focus-visible {*/
-/*  outline: 4px auto -webkit-focus-ring-color;*/
-/*}*/
-
-/*.card {*/
-/*  padding: 2em;*/
-/*}*/
-
-/*#app {*/
-/*  max-width: 1280px;*/
-/*  margin: 0 auto;*/
-/*  padding: 2rem;*/
-/*  text-align: center;*/
-/*}*/
-
-/*@media (prefers-color-scheme: light) {*/
-/*  :root {*/
-/*    color: #213547;*/
-/*    background-color: #ffffff;*/
-/*  }*/
-/*  a:hover {*/
-/*    color: #747bff;*/
-/*  }*/
-/*  button {*/
-/*    background-color: #f9f9f9;*/
-/*  }*/
-/*}*/

+ 94 - 24
src/view/finance/components/projectCost.vue

@@ -1,19 +1,36 @@
 <template>
-  <van-row style="margin-top: 1rem" @click="dateScreenShow = true">
+  <van-row style="margin-top: 20px" @click="dateScreenShow = true">
     <van-col :span="24">
-      <van-cell title="筛选条件" is-link size="large">
-        <template #value>
-          <van-text-ellipsis content="内容" class="cellContent"/>
-        </template>
-        <template #right-icon>
-          <van-icon
+      <van-cell-group>
+        <van-cell title="筛选条件" is-link size="large">
+          <template #value>
+            <van-text-ellipsis content="内容" class="cellContent"/>
+          </template>
+          <template #right-icon>
+            <van-icon
               class="closeIcon"
               name="close"
-          />
-        </template>
-      </van-cell>
+            />
+          </template>
+        </van-cell>
+      </van-cell-group>
     </van-col>
   </van-row>
+  <van-cell-group>
+    <van-cell
+        v-for="item in projectCostList"
+        :key="item.ID"
+        :title="item.user.nickName"
+        :label="item.feeTime"
+        is-link
+        style="height: 64px;"
+        @click="openCostDetail(item)"
+    >
+      <template #value>
+        <van-text-ellipsis :content="item.projectFeeGenre.name"/>
+      </template>
+    </van-cell>
+  </van-cell-group>
   <van-popup
       v-model:show="dateScreenShow"
       position="bottom"
@@ -93,10 +110,10 @@
           </el-form-item>
           <el-form-item label="费用类型:" size="large">
             <el-select
-                placeholder="请选择费用类型"
                 v-model="projectCostBody.genre"
+                placeholder="请选择费用类型"
                 clearable
-                @clear="projectCostBody.genre = ''"
+                @clear="projectCostBody.genre = 0"
             >
               <el-option
                   v-for="item in costTypeList"
@@ -111,7 +128,7 @@
                 placeholder="请选择人员"
                 v-model="projectCostBody.reimburser"
                 clearable
-                @clear="projectCostBody.reimburser = ''"
+                @clear="projectCostBody.reimburser = 0"
             >
               <el-option
                   v-for="item in userList"
@@ -140,13 +157,50 @@
       </el-col>
     </van-row>
   </van-popup>
+  <van-popup
+      v-model:show="detailShow"
+      style="height: 50vh;width: 80vw;"
+  >
+    <van-cell-group style="font-size: 16px">
+      <van-cell size="large">
+        <template #title>
+          <van-text-ellipsis content="部门:"/>
+        </template>
+        <template #value>
+          <van-text-ellipsis :content="detailInfo.department.name"/>
+        </template>
+      </van-cell>
+      <van-cell size="large">
+        <template #title>
+          <van-text-ellipsis content="支入金额:"/>
+        </template>
+        <template #value>
+          <van-text-ellipsis :content="detailInfo.department.name"/>
+        </template>
+      </van-cell>
+      <van-cell size="large">
+        <template #title>
+          <van-text-ellipsis content="支出金额:"/>
+        </template>
+        <template #value>
+          <van-text-ellipsis :content="detailInfo.department.name"/>
+        </template>
+      </van-cell>
+      <van-cell size="large">
+        <template #title>
+          <van-text-ellipsis content="余额:"/>
+        </template>
+        <template #value>
+          <van-text-ellipsis :content="detailInfo.department.name"/>
+        </template>
+      </van-cell>
+    </van-cell-group>
+  </van-popup>
 </template>
 
 <script setup>
-import { getProjectCostType } from '@/api/project.js'
+import { getProjectCostType, getAllProject, getProjectCost } from '@/api/project.js'
 import { getAllUsers } from "@/api/user.js"
-import { getAllProject } from "@/api/project.js";
-
 defineOptions({
   name: 'projectCost',
 })
@@ -154,15 +208,17 @@ onMounted(() => {
   queryProjectCostType()
   queryAllUsers()
   queryAllProject()
+  queryProjectCost()
 })
+// 条件显示
 const projectCostBody = reactive({
   pageInfo: {
     page: 1,
     pageSize: 8
   },
-  reimburser: "",
+  reimburser: 0,
   projectCode: "",
-  genre: "",
+  genre: 0,
   dayTime: "",
   monthTime: "",
   yearTime: ""
@@ -176,16 +232,16 @@ const queryProjectCostType = () => {
     }
   })
 }
+// 项目
 const projectList = reactive([])
 const queryAllProject = () => {
   getAllProject().then(res => {
     if (res.code === 0) {
-      projectList.push(...res.data)
-      console.log(projectCostBody.projectCode)
+      const list = res.data
+      projectList.push(...list)
     }
   })
 }
-
 // 人员
 const userList = reactive([])
 const queryAllUsers = () => {
@@ -223,16 +279,30 @@ const changeDateType = (val) => {
 // 查询项目费用
 const timeTypeValue = ref('day')
 
+const projectCostList = reactive([])
+
 const queryProjectCost = () => {
-  console.log('数据')
+  getProjectCost(projectCostBody).then(res => {
+    if (res.code === 0) {
+      dateScreenShow.value = false
+      projectCostList.push(...res.data.list)
+      console.log(projectCostList)
+    }
+  })
 }
 
-
+const detailShow = ref(false)
+const detailInfo = reactive({})
+const openCostDetail = (item) => {
+  console.log(item)
+  detailShow.value = true
+  Object.assign(detailInfo,item)
+}
 </script>
 
 <style scoped>
 .closeIcon{
-  font-size: 1.5rem;
+  font-size: 24px;
   line-height: inherit;
 }
 .cellContent{

+ 3 - 3
src/view/login/login.vue

@@ -5,13 +5,13 @@
         <van-row justify="center">
           <van-col>
             <van-image
-                width="6rem"
-                height="6rem"
+                width="100px"
+                height="100px"
                 :src="logo"
             />
           </van-col>
         </van-row>
-        <van-form style="width: 90vw;margin: 4vh 0 0 5vw">
+        <van-form style="width: 90vw;margin: 30px 0 0 5vw">
           <van-cell-group inset>
             <van-field v-model="loginFormData.username" label="用户名" placeholder="请输入用户名" size="large"/>
             <van-field v-model="unencrypted" label="密码" placeholder="请输入密码" size="large"/>

+ 1 - 1
src/view/navigation/navigation.vue

@@ -57,7 +57,7 @@ const navigatorJump = (mine) => {
       <span style="font-weight: 500">{{pageTitle}}</span>
     </template>
     <template #right>
-      <van-icon name="bars" size="2rem" @click="openNavigation"/>
+      <van-icon name="bars" size="28px" @click="openNavigation"/>
     </template>
   </van-nav-bar>
   <router-view/>

+ 21 - 14
src/view/project/project.vue

@@ -1,11 +1,11 @@
 <template>
-  <van-row style="margin-top: 1rem;height: 3.2rem;">
+  <van-row style="margin-top: 20px;height: 50px;">
     <van-col :span="18">
       <van-search
           v-model="fileName"
           placeholder="请输入文件名称"
           shape="round"
-          style="height: 3.2rem"
+          style="height: 50px"
           @search="fileSearch"
       />
     </van-col>
@@ -15,34 +15,41 @@
           type="primary"
           plain
           @click="fileReset"
-          style="border: 0;font-size: 1.2rem">
+          style="border: 0;font-size: 21px">
         重置
       </van-button>
     </van-col>
   </van-row>
-  <van-row style="margin-top: 1rem;height: 3rem">
-    <van-col :span="11" :offset="1" style="display: flex;align-items: center">
+  <van-row style="margin-top: 20px;height: 50px">
+    <van-col
+        :span="11"
+        :offset="1"
+        style="display: flex;
+        align-items: center">
       <van-icon
           name="arrow-down"
-          color="#1989fa" />
+          color="#1989fa"
+          size="18"
+      />
       <van-text-ellipsis
           content="文件检索"
           @click="fileRetrievalShow = true"
-          style="color:#1989fa"
+          style="color:#1989fa;font-size: 18px"
       />
     </van-col>
     <van-col :span="10" class="design">
       <van-icon
           name="plus"
+          size="18"
           color="#1989fa" />
       <van-text-ellipsis
           content="添加"
           @click="uploadFileShow = true"
-          style="color:#1989fa"
+          style="color:#1989fa;font-size: 18px"
       />
     </van-col>
   </van-row>
-  <van-row style="margin-top: 1rem;height: 30rem;">
+  <van-row style="margin-top: 20px;height: 560px;">
     <van-col :span="24">
       <van-list
           finished-text="没有更多了"
@@ -50,7 +57,7 @@
           :finished="finished"
       >
         <van-cell-group>
-          <van-cell v-for="item in fileList" :key="item.ID" style="height: 3.7rem">
+          <van-cell v-for="item in fileList" :key="item.ID" style="height: 70px">
             <template #title>
               <el-text size="large" style="width: 45vw" :line-clamp="1">{{item.name}}</el-text>
             </template>
@@ -59,7 +66,7 @@
                   icon="search"
                   type="primary"
                   plain
-                  style="border: 0;font-size: 1rem"
+                  style="border: 0;"
                   @click="filePreview(item.name, item.path)">
                 预览
               </van-button>
@@ -69,7 +76,7 @@
       </van-list>
     </van-col>
   </van-row>
-  <van-row style="margin-top: 2rem">
+  <van-row style="margin-top: 30px">
     <el-col :span="22" :offset="1">
       <van-pagination v-model="currentPage" :total-items="pageTotal" :items-per-page="8" @change="pageChange"/>
     </el-col>
@@ -83,10 +90,10 @@
   >
     <van-row style="margin-top: 2vh">
       <van-col :span="16" :offset="1">
-        <span style="font-size: 1.1rem;">上传文件</span>
+        <span style="font-size: 18px;">上传文件</span>
       </van-col>
     </van-row>
-    <van-row style="margin-top: 3vh">
+    <van-row style="margin-top: 2vh;height: 46px">
       <van-col :span="8" :offset="1">
         <van-button
             type="primary"