From f14f0da460090f06455010b05c55d2c572294fde Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Mon, 23 Aug 2021 15:57:10 +0800
Subject: [PATCH] 社保

---
 src/views/social/social.vue |  403 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 403 insertions(+), 0 deletions(-)

diff --git a/src/views/social/social.vue b/src/views/social/social.vue
new file mode 100644
index 0000000..f74a163
--- /dev/null
+++ b/src/views/social/social.vue
@@ -0,0 +1,403 @@
+<template>
+  <basic-container>
+    <avue-crud :option="option"
+               :table-loading="loading"
+               :data="data"
+               :page.sync="page"
+               :permission="permissionList"
+               :before-open="beforeOpen"
+               v-model="form"
+               ref="crud"
+               @row-update="rowUpdate"
+               @row-save="rowSave"
+               @row-del="rowDel"
+               @search-change="searchChange"
+               @search-reset="searchReset"
+               @selection-change="selectionChange"
+               @current-change="currentChange"
+               @size-change="sizeChange"
+               @refresh-change="refreshChange"
+               @on-load="onLoad">
+      <template slot="menuLeft">
+        <el-button type="danger"
+                   size="small"
+                   icon="el-icon-delete"
+                   plain
+                   v-if="permission.social_delete"
+                   @click="handleDelete">删 除
+        </el-button>
+                    <el-button type="success"
+                              size="small"
+                             plain
+                               icon="el-icon-upload2"
+                               @click="handleImport">导入
+                  </el-button>
+      </template>
+    </avue-crud>
+    <el-dialog title="用户数据导入"
+                         append-to-body
+                         :visible.sync="excelBox"
+                         width="555px">
+                <avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
+                  <template slot="excelTemplate">
+                    <el-button type="primary" @click="handleTemplate">
+                      点击下载<i class="el-icon-download el-icon--right"></i>
+                    </el-button>
+                  </template>
+                </avue-form>
+              </el-dialog>
+  </basic-container>
+</template>
+
+<script>
+  import {getList, getDetail, add, update, remove} from "@/api/social/social";
+  import {mapGetters} from "vuex";
+  import {getToken} from "@/util/auth";
+
+  export default {
+    data() {
+      return {
+        form: {},
+        query: {},
+        loading: true,
+        excelBox: false,
+        page: {
+          pageSize: 10,
+          currentPage: 1,
+          total: 0
+        },
+        selectionList: [],
+        option: {
+          height:'auto',
+          calcHeight: 30,
+          tip: false,
+          searchShow: true,
+          searchMenuSpan: 6,
+          border: true,
+          index: true,
+          viewBtn: true,
+          selection: true,
+          dialogClickModal: false,
+          column: [
+            {
+              label: "姓名",
+              prop: "namb",
+              rules: [{
+                required: true,
+                message: "请输入姓名",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "性别",
+              prop: "sex",
+              rules: [{
+                required: true,
+                message: "请输入性别",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "民族",
+              prop: "nation",
+              rules: [{
+                required: true,
+                message: "请输入民族",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "出生日期",
+              prop: "birthday",
+              rules: [{
+                required: true,
+                message: "请输入出生日期",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "联系电话",
+              prop: "telephone",
+              rules: [{
+                required: true,
+                message: "请输入联系电话",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "身份证号",
+              prop: "cardid",
+              rules: [{
+                required: true,
+                message: "请输入身份证号",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "户籍所在地址",
+              prop: "residence",
+              rules: [{
+                required: true,
+                message: "请输入户籍所在地址",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "居住地址  ",
+              prop: "address",
+              rules: [{
+                required: true,
+                message: "请输入居住地址  ",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "户籍性质",
+              prop: "nature",
+              rules: [{
+                required: true,
+                message: "请输入户籍性质",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "个人缴费额",
+              prop: "amount",
+              rules: [{
+                required: true,
+                message: "请输入个人缴费额",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "参保时间",
+              prop: "insuredtime",
+              rules: [{
+                required: true,
+                message: "请输入参保时间",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "所属机构",
+              prop: "deptid",
+              addDisplay: false,
+              type: "select",
+              dicUrl: "/api/blade-system/dept/selectIn",
+              props: {
+                label: "deptname",
+                value: "deptid"
+              },
+            },
+          ]
+        },
+        data: [],
+        excelForm: {},
+        excelOption: {
+          submitBtn: false,
+          emptyBtn: false,
+          column: [
+            {
+              label: '模板上传',
+              prop: 'excelFile',
+              type: 'upload',
+              drag: true,
+              loadText: '模板上传中,请稍等',
+              span: 24,
+              propsHttp: {
+                res: 'data'
+              },
+              tip: '请上传 .xls,.xlsx 标准格式文件',
+              action: "/api/social/import-user"
+            },
+            {
+              label: "数据覆盖",
+              prop: "isCovered",
+              type: "switch",
+              align: "center",
+              hide:true,
+              width: 80,
+              dicData: [
+                {
+                  label: "否",
+                  value: 0
+                },
+                {
+                  label: "是",
+                  value: 1
+                }
+              ],
+              value: 0,
+              slot: true,
+              rules: [
+                {
+                  required: true,
+                  message: "请选择是否覆盖",
+                  trigger: "blur"
+                }
+              ]
+            },
+            {
+              label: '模板下载',
+              prop: 'excelTemplate',
+              formslot: true,
+              span: 24,
+            }
+          ]
+        }
+      };
+    },
+    watch: {
+      'excelForm.isCovered'() {
+        if (this.excelForm.isCovered !== '') {
+          const column = this.findObject(this.excelOption.column, "excelFile");
+          column.action = `/api/social/import-user?isCovered=${this.excelForm.isCovered}`+"&deptid="+this.userInfo.dept_id;
+        }
+      }
+    },
+    computed: {
+      ... mapGetters(["permission", "userInfo"]),
+      permissionList() {
+        return {
+          addBtn: this.vaildData(this.permission.social_add, false),
+          viewBtn: this.vaildData(this.permission.social_view, false),
+          delBtn: this.vaildData(this.permission.social_delete, false),
+          editBtn: this.vaildData(this.permission.social_edit, false)
+        };
+      },
+      ids() {
+        let ids = [];
+        this.selectionList.forEach(ele => {
+          ids.push(ele.id);
+        });
+        return ids.join(",");
+      }
+    },
+    methods: {
+      rowSave(row, done, loading) {
+        add(row).then(() => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!"
+          });
+          done();
+        }, error => {
+          loading();
+          window.console.log(error);
+        });
+      },
+      rowUpdate(row, index, done, loading) {
+        update(row).then(() => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!"
+          });
+          done();
+        }, error => {
+          loading();
+          console.log(error);
+        });
+      },
+      rowDel(row) {
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(row.id);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+          });
+      },
+      handleTemplate() {
+        window.open(`/api/social/export-template?${this.website.tokenHeader}=${getToken()}`);
+      },
+      uploadAfter(res, done, loading, column) {
+        window.console.log(column);
+        this.excelBox = false;
+        this.refreshChange();
+        done();
+      },
+      handleImport() {
+        this.excelBox = true;
+      },
+      handleDelete() {
+        if (this.selectionList.length === 0) {
+          this.$message.warning("请选择至少一条数据");
+          return;
+        }
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(this.ids);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+            this.$refs.crud.toggleSelection();
+          });
+      },
+      beforeOpen(done, type) {
+        if (["edit", "view"].includes(type)) {
+          getDetail(this.form.id).then(res => {
+            this.form = res.data.data;
+          });
+        }
+        done();
+      },
+      searchReset() {
+        this.query = {};
+        this.onLoad(this.page);
+      },
+      searchChange(params, done) {
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+        done();
+      },
+      selectionChange(list) {
+        this.selectionList = list;
+      },
+      selectionClear() {
+        this.selectionList = [];
+        this.$refs.crud.toggleSelection();
+      },
+      currentChange(currentPage){
+        this.page.currentPage = currentPage;
+      },
+      sizeChange(pageSize){
+        this.page.pageSize = pageSize;
+      },
+      refreshChange() {
+        this.onLoad(this.page, this.query);
+      },
+      onLoad(page, params = {}) {
+        this.loading = true;
+        getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
+          const data = res.data.data;
+          this.page.total = data.total;
+          this.data = data.records;
+          this.loading = false;
+          this.selectionClear();
+        });
+      }
+    }
+  };
+</script>
+
+<style>
+</style>

--
Gitblit v1.9.3