liwei19941102 1 год назад
Родитель
Сommit
489e10ca4c

+ 63 - 0
src/api/system/expressStatics/index.ts

@@ -0,0 +1,63 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { ExpressStaticsVO, ExpressStaticsForm, ExpressStaticsQuery } from '@/api/system/expressStatics/types';
+
+/**
+ * 查询【请填写功能名称】列表
+ * @param query
+ * @returns {*}
+ */
+
+export const listExpressStatics = (query?: ExpressStaticsQuery): AxiosPromise<ExpressStaticsVO[]> => {
+  return request({
+    url: '/system/expressStatics/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 查询【请填写功能名称】详细
+ * @param id
+ */
+export const getExpressStatics = (id: string | number): AxiosPromise<ExpressStaticsVO> => {
+  return request({
+    url: '/system/expressStatics/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 新增【请填写功能名称】
+ * @param data
+ */
+export const addExpressStatics = (data: ExpressStaticsForm) => {
+  return request({
+    url: '/system/expressStatics',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 修改【请填写功能名称】
+ * @param data
+ */
+export const updateExpressStatics = (data: ExpressStaticsForm) => {
+  return request({
+    url: '/system/expressStatics',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 删除【请填写功能名称】
+ * @param id
+ */
+export const delExpressStatics = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/system/expressStatics/' + id,
+    method: 'delete'
+  });
+};

+ 71 - 0
src/api/system/expressStatics/types.ts

@@ -0,0 +1,71 @@
+export interface ExpressStaticsVO {
+  /**
+   * 
+   */
+  id: string | number;
+
+  /**
+   * 
+   */
+  userId: string | number;
+
+  /**
+   * 
+   */
+  month: string;
+
+  /**
+   * 
+   */
+  data: string;
+
+}
+
+export interface ExpressStaticsForm extends BaseEntity {
+  /**
+   * 
+   */
+  id?: string | number;
+
+  /**
+   * 
+   */
+  userId?: string | number;
+
+  /**
+   * 
+   */
+  month?: string;
+
+  /**
+   * 
+   */
+  data?: string;
+
+}
+
+export interface ExpressStaticsQuery extends PageQuery {
+
+  /**
+   * 
+   */
+  userId?: string | number;
+
+  /**
+   * 
+   */
+  month?: string;
+
+  /**
+   * 
+   */
+  data?: string;
+
+    /**
+     * 日期范围参数
+     */
+    params?: any;
+}
+
+
+

+ 288 - 0
src/views/system/expressStatics/index.vue

@@ -0,0 +1,288 @@
+<template>
+  <div class="p-2">
+    <transition :enter-active-class="proxy?.animate.searchAnimate.enter"
+      :leave-active-class="proxy?.animate.searchAnimate.leave">
+      <div class="search" v-show="showSearch">
+        <el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
+          <el-form-item label="名称" prop="userId">
+            <el-select v-model="queryParams.userId" clearable placeholder="请选择快递员" style="width: 240px">
+              <el-option v-for="item in userList" :key="item.userId" :label="item.nickName" :value="item.userId" />
+            </el-select>
+          </el-form-item>
+          <el-form-item>
+            <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
+            <el-button icon="Refresh" @click="resetQuery">重置</el-button>
+          </el-form-item>
+        </el-form>
+      </div>
+    </transition>
+
+    <el-card shadow="never">
+      <template #header>
+        <el-row :gutter="10" class="mb8">
+          <el-col :span="1.5">
+            <el-button type="primary" plain icon="Plus" @click="handleAdd"
+              v-hasPermi="['system:expressStatics:add']">新增</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()"
+              v-hasPermi="['system:expressStatics:edit']">修改</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()"
+              v-hasPermi="['system:expressStatics:remove']">删除</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport"
+              v-hasPermi="['system:expressStatics:export']">导出</el-button>
+          </el-col>
+          <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
+        </el-row>
+      </template>
+
+      <el-table v-loading="loading" :data="expressStaticsList" @selection-change="handleSelectionChange">
+        <el-table-column type="selection" width="55" align="center" />
+        <!-- <el-table-column label="" align="center" prop="id" v-if="true" /> -->
+        <el-table-column label="用户" align="center" prop="userId">
+          <template #default="scope">
+            <span>{{ getUserName(scope.row) }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="月份" align="center" prop="month" />
+        <el-table-column label="投递数" align="center" prop="data">
+          <template #default="scope">
+            <span>{{ getData(scope.row) }}</span>
+          </template>
+        </el-table-column>
+        <!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+          <template #default="scope">
+            <el-tooltip content="修改" placement="top">
+              <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)"
+                v-hasPermi="['system:expressStatics:edit']"></el-button>
+            </el-tooltip>
+            <el-tooltip content="删除" placement="top">
+              <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
+                v-hasPermi="['system:expressStatics:remove']"></el-button>
+            </el-tooltip>
+          </template>
+        </el-table-column> -->
+      </el-table>
+
+      <pagination v-show="total>0" :total="total" v-model:page="queryParams.pageNum"
+        v-model:limit="queryParams.pageSize" @pagination="getList" />
+    </el-card>
+    <!-- 添加或修改【请填写功能名称】对话框 -->
+    <el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
+      <el-form ref="expressStaticsFormRef" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="" prop="userId">
+          <el-input v-model="form.userId" placeholder="请输入" />
+        </el-form-item>
+        <el-form-item label="" prop="month">
+          <el-input v-model="form.month" placeholder="请输入" />
+        </el-form-item>
+        <el-form-item label="" prop="data">
+          <el-input v-model="form.data" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+          <el-button @click="cancel">取 消</el-button>
+        </div>
+      </template>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup name="ExpressStatics" lang="ts">
+  import { listExpressStatics, getExpressStatics, delExpressStatics, addExpressStatics, updateExpressStatics } from '@/api/system/expressStatics';
+  import { ExpressStaticsVO, ExpressStaticsQuery, ExpressStaticsForm } from '@/api/system/expressStatics/types';
+  import api from "@/api/system/user"
+  import { UserForm, UserQuery, UserVO } from '@/api/system/user/types';
+
+  const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+  const expressStaticsList = ref < ExpressStaticsVO[] > ([]);
+  const buttonLoading = ref(false);
+  const loading = ref(true);
+  const showSearch = ref(true);
+  const ids = ref < Array < string | number >> ([]);
+  const single = ref(true);
+  const multiple = ref(true);
+  const total = ref(0);
+  const userList = ref([]);
+
+  const queryFormRef = ref < ElFormInstance > ();
+  const expressStaticsFormRef = ref < ElFormInstance > ();
+
+  const dialog = reactive < DialogOption > ({
+    visible: false,
+    title: ''
+  });
+
+  const initFormData: ExpressStaticsForm = {
+    id: undefined,
+    userId: undefined,
+    month: undefined,
+    data: undefined,
+  }
+  const data = reactive < PageData < ExpressStaticsForm, ExpressStaticsQuery>> ({
+    form: { ...initFormData },
+    queryParams: {
+      pageNum: 1,
+      pageSize: 10,
+      userId: undefined,
+      month: undefined,
+      data: undefined,
+      params: {
+      }
+    },
+    userParams: {
+      pageNum: 1,
+      pageSize: 1000,
+      userName: '',
+      phonenumber: '',
+      status: '',
+      deptId: '',
+      params: {
+        roleNames: '司机'
+      }
+    },
+    rules: {
+      id: [
+        { required: true, message: "不能为空", trigger: "blur" }
+      ],
+      userId: [
+        { required: true, message: "不能为空", trigger: "blur" }
+      ],
+      month: [
+        { required: true, message: "不能为空", trigger: "blur" }
+      ],
+      data: [
+        { required: true, message: "不能为空", trigger: "blur" }
+      ],
+    }
+  });
+
+  const { queryParams,userParams,form, rules } = toRefs(data);
+
+  const getData = (data) => {
+    console.log(data.data)
+    var jsonData = JSON.parse(data.data)
+    if (jsonData.code == 0) {
+      console.log(jsonData.data.delivery_count)
+      return jsonData.data.delivery_count
+    }
+  }
+
+  /** 查询【请填写功能名称】列表 */
+  const getList = async () => {
+    loading.value = true;
+    const res = await listExpressStatics(queryParams.value);
+    expressStaticsList.value = res.rows;
+    total.value = res.total;
+    loading.value = false;
+  }
+
+  const getUserList = async () => {
+    const res = await api.listUser(userParams.value);
+    console.log(res)
+    userList.value = res.rows;
+    getList();
+  }
+
+  /** 取消按钮 */
+  const cancel = () => {
+    reset();
+    dialog.visible = false;
+  }
+
+  /** 表单重置 */
+  const reset = () => {
+    form.value = { ...initFormData };
+    expressStaticsFormRef.value?.resetFields();
+  }
+
+  /** 搜索按钮操作 */
+  const handleQuery = () => {
+    queryParams.value.pageNum = 1;
+    getList();
+  }
+
+  /** 重置按钮操作 */
+  const resetQuery = () => {
+    queryFormRef.value?.resetFields();
+    handleQuery();
+  }
+
+  /** 多选框选中数据 */
+  const handleSelectionChange = (selection: ExpressStaticsVO[]) => {
+    ids.value = selection.map(item => item.id);
+    single.value = selection.length != 1;
+    multiple.value = !selection.length;
+  }
+
+  /** 新增按钮操作 */
+  const handleAdd = () => {
+    reset();
+    dialog.visible = true;
+    dialog.title = "添加【请填写功能名称】";
+  }
+
+  /** 修改按钮操作 */
+  const handleUpdate = async (row?: ExpressStaticsVO) => {
+    reset();
+    const _id = row?.id || ids.value[0]
+    const res = await getExpressStatics(_id);
+    Object.assign(form.value, res.data);
+    dialog.visible = true;
+    dialog.title = "修改【请填写功能名称】";
+  }
+
+  /** 提交按钮 */
+  const submitForm = () => {
+    expressStaticsFormRef.value?.validate(async (valid: boolean) => {
+      if (valid) {
+        buttonLoading.value = true;
+        if (form.value.id) {
+          await updateExpressStatics(form.value).finally(() => buttonLoading.value = false);
+        } else {
+          await addExpressStatics(form.value).finally(() => buttonLoading.value = false);
+        }
+        proxy?.$modal.msgSuccess("修改成功");
+        dialog.visible = false;
+        await getList();
+      }
+    });
+  }
+
+  const getUserName = (item) => {
+    console.log(item.userId)
+    for(var index in userList.value){
+       if(userList.value[index].userId == item.userId){
+        // console.log(userList.value[index])
+           return userList.value[index].nickName;
+       }
+    }
+  }
+
+  /** 删除按钮操作 */
+  const handleDelete = async (row?: ExpressStaticsVO) => {
+    const _ids = row?.id || ids.value;
+    await proxy?.$modal.confirm('是否确认删除【请填写功能名称】编号为"' + _ids + '"的数据项?').finally(() => loading.value = false);
+    await delExpressStatics(_ids);
+    proxy?.$modal.msgSuccess("删除成功");
+    await getList();
+  }
+
+  /** 导出按钮操作 */
+  const handleExport = () => {
+    proxy?.download('system/expressStatics/export', {
+      ...queryParams.value
+    }, `expressStatics_${new Date().getTime()}.xlsx`)
+  }
+
+  onMounted(() => {
+    getUserList();
+  });
+</script>