From 089bf5d2378b3c4a61d795b2a92bede2c193b771 Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Tue, 06 Jan 2026 11:22:58 +0800
Subject: [PATCH] 1

---
 src/views/modules/user/addr.vue |  144 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 144 insertions(+), 0 deletions(-)

diff --git a/src/views/modules/user/addr.vue b/src/views/modules/user/addr.vue
new file mode 100644
index 0000000..840d511
--- /dev/null
+++ b/src/views/modules/user/addr.vue
@@ -0,0 +1,144 @@
+<template>
+  <div class="mod-user-userAddr">
+    <avue-crud
+      ref="crud"
+      :page.sync="page"
+      :data="dataList"
+      :table-loading="dataListLoading"
+      :option="tableOption"
+      @search-change="searchChange"
+      @on-load="getDataList"
+      @refresh-change="refreshChange"
+      @row-del="rowDel"
+    >
+      <template slot="menuLeft">
+        <el-button
+          type="primary"
+          icon="el-icon-plus"
+          size="small"
+          v-if="isAuth('user:addr:save')"
+          @click="addOrUpdateHandle()"
+          >新增</el-button
+        >
+      </template>
+      <template slot-scope="scope" slot="menu">
+        <el-button
+          type="primary"
+          icon="el-icon-edit"
+          size="small"
+          v-if="isAuth('user:addr:update')"
+          @click="addOrUpdateHandle(scope.row.addrId)"
+          >修改</el-button
+        >
+        <el-button
+          type="danger"
+          icon="el-icon-delete"
+          size="small"
+          v-if="isAuth('user:addr:delete')"
+          @click="rowDel(scope.row, scope.$index)"
+          >删除</el-button
+        >
+      </template>
+    </avue-crud>
+    <add-or-update
+      v-if="addOrUpdateVisible"
+      ref="addOrUpdate"
+      @refreshDataList="refreshChange"
+    ></add-or-update>
+  </div>
+</template>
+
+<script>
+import { tableOption } from "@/crud/user/addr";
+import AddOrUpdate from "./addr-add-or-update";
+export default {
+  data() {
+    return {
+      dataList: [],
+      page: {
+        total: 0, // 总页数
+        currentPage: 1, // 当前页数
+        pageSize: 10, // 每页显示多少条
+      },
+      dataListLoading: false,
+      tableOption: tableOption,
+      permission: {
+        delBtn: this.isAuth("user:userAddr:delete"),
+      },
+      addOrUpdateVisible: false,
+    };
+  },
+  created() {},
+  mounted() {},
+  components: {
+    AddOrUpdate,
+  },
+  methods: {
+    getDataList(page, params, done) {
+      this.dataListLoading = true;
+      this.$http({
+        url: this.$http.adornUrl("/user/addr/page"),
+        method: "get",
+        params: this.$http.adornParams(
+          Object.assign(
+            {
+              current: page == null ? this.page.currentPage : page.currentPage,
+              size: page == null ? this.page.pageSize : page.pageSize,
+            },
+            params
+          )
+        ),
+      }).then(({ data }) => {
+        this.dataList = data.records;
+        this.page.total = data.total;
+        this.dataListLoading = false;
+        if (done) {
+          done();
+        }
+      });
+    },
+    // 新增 / 修改
+    addOrUpdateHandle(id) {
+      this.addOrUpdateVisible = true;
+      this.$nextTick(() => {
+        this.$refs.addOrUpdate.init(id);
+      });
+    },
+    rowDel(row, index) {
+      this.$confirm("确定进行删除操作?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(() => {
+          this.$http({
+            url: this.$http.adornUrl("/user/addr/" + row.addrId),
+            method: "delete",
+            data: this.$http.adornData({}),
+          }).then(({ data }) => {
+            this.$message({
+              message: "操作成功",
+              type: "success",
+              duration: 1500,
+              onClose: () => {
+                this.getDataList(this.page);
+              },
+            });
+          });
+        })
+        .catch(() => {});
+    },
+    /**
+     * 刷新回调
+     */
+    refreshChange() {
+      this.getDataList(this.page);
+    },
+    searchChange(params, done) {
+      this.getDataList(this.page, params, done);
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped></style>

--
Gitblit v1.9.3