From 31d4d28d1c98319da151f4585494c4ac87807e57 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Tue, 23 Jan 2024 11:35:20 +0800
Subject: [PATCH] 代码优化

---
 src/views/community/index.vue                  |  699 ++++++++++++++++++++++++++---------------------------
 src/views/property/propertyCompanyDistrict.vue |   22 +
 2 files changed, 367 insertions(+), 354 deletions(-)

diff --git a/src/views/community/index.vue b/src/views/community/index.vue
index 8f3ed27..489f9ef 100644
--- a/src/views/community/index.vue
+++ b/src/views/community/index.vue
@@ -1,368 +1,363 @@
 <template>
-    <basic-container>
-        <avue-crud :option="option" :table-loading="loading" :data="data" :page.sync="page" ref="crud" @row-del="rowDel"
-            v-model="form" :permission="permissionList" @row-update="rowUpdate" @row-save="rowSave"
-            :before-open="beforeOpen" @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 size="small" icon="el-icon-delete" plain v-if="permission.community_delete"
-                    @click="handleDelete">删 除
-                </el-button>
-            </template>
-        </avue-crud>
-    </basic-container>
+  <basic-container>
+    <avue-crud :option="option" :table-loading="loading" :data="data" :page.sync="page" ref="crud" @row-del="rowDel"
+      v-model="form" :permission="permissionList" @row-update="rowUpdate" @row-save="rowSave" :before-open="beforeOpen"
+      @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 size="small" icon="el-icon-delete" plain v-if="permission.community_delete" @click="handleDelete">删 除
+        </el-button>
+      </template>
+    </avue-crud>
+  </basic-container>
 </template>
 
 <script>
-import { getList, remove, update, add, getCommunity } from "@/api/community/index"
-import { mapGetters } from "vuex"
-import website from '@/config/website'
-export default {
-    data () {
-        return {
-            form: {},
-            query: {},
-            loading: true,
-            page: {
-                pageSize: 10,
-                currentPage: 1,
-                total: 0,
+  import {
+    getList,
+    remove,
+    update,
+    add,
+    getCommunity
+  } from "@/api/community/index"
+  import {
+    mapGetters
+  } from "vuex"
+  import website from '@/config/website'
+  export default {
+    data() {
+      return {
+        form: {},
+        query: {},
+        loading: true,
+        page: {
+          pageSize: 10,
+          currentPage: 1,
+          total: 0,
+        },
+        datetime: "",
+        selectionList: [],
+        option: {
+          labelWidth: 96,
+          searchLabelWidth: 96,
+          searchShow: true,
+          searchMenuSpan: 3,
+          menuWidth: 210,
+
+          height: "auto",
+          calcHeight: 54,
+          dialogWidth: 950,
+          tip: false,
+          border: true,
+          //stripe:true,
+          index: true,
+          viewBtn: true,
+          selection: true,
+          dialogClickModal: false,
+          column: [{
+              width: 156,
+              overHidden: true,
+              label: "社区名称",
+              prop: "name",
+              searchSpan: 4,
+              search: true,
+              span: 12,
+              rules: [{
+                required: true,
+                message: "请输入社区名称",
+                trigger: "blur",
+              }, ],
             },
-            datetime: "",
-            selectionList: [],
-            option: {
-                labelWidth: 96,
-                searchLabelWidth: 96,
-                searchShow: true,
-                searchMenuSpan: 3,
-                menuWidth: 210,
-
-                height: "auto",
-                calcHeight: 54,
-                dialogWidth: 950,
-                tip: false,
-                border: true,
-                //stripe:true,
-                index: true,
-                viewBtn: true,
-                selection: true,
-                dialogClickModal: false,
-                column: [
-                    {
-                        width: 156,
-                        overHidden: true,
-                        label: "社区名称",
-                        prop: "name",
-                        searchSpan: 4,
-                        search: true,
-                        span: 12,
-                        rules: [
-                            {
-                                required: true,
-                                message: "请输入社区名称",
-                                trigger: "blur",
-                            },
-                        ],
-                    },
-                    {
-                        width: 110,
-                        overHidden: true,
-                        label: "社区编号",
-                        prop: "code",
-                        searchSpan: 4,
-                        search: true,
-                        span: 12,
-                        rules: [
-                            {
-                                required: true,
-                                message: "请输入社区编号",
-                                trigger: "blur",
-                            },
-                        ],
-                    },
-
-                    {
-                        width: 110,
-                        label: "所属街道",
-                        parent: false,
-                        addDisplay: false,
-                        editDisplay: false,
-                        viewDisplay: false,
-                        prop: "townName",
-                        search: true,
-                        searchSpan: 4
-                    },
-
-                    {
-                        label: "所属街道",
-                        hide: true,
-                        parent: false,
-                        prop: "streetCode",
-                        type: "tree",
-                        dicUrl: "/api/blade-system/region/getTownTree",
-                        props: {
-                            label: "name",
-                            value: "id"
-                        },
-                        rules: [
-                            {
-                                required: true,
-                                message: "请选择所属街道",
-                                trigger: "blur",
-                            },
-                        ],
-                    },
-
-                    {
-                        width: 110,
-                        label: "社区民警",
-                        prop: "resPoliceUserId",
-                        type: "tree",
-                        dicUrl: "/api/blade-system/user/getUserListByParam?roleName=民警",
-                        props: {
-                            label: "name",
-                            value: "id"
-                        },
-                        rules: [
-                            {
-                                required: true,
-                                message: "请选择社区民警",
-                                trigger: "blur",
-                            },
-                        ],
-                    },
-                    {
-                        width: 110,
-                        label: "社区图片",
-                        prop: "picUrl",
-                        type: "upload",
-                        listType: "picture-img",
-                        action: "/api/blade-resource/oss/endpoint/put-file",
-                        propsHttp: {
-                            res: "data",
-                            url: "link",
-                        },
-                        span: 24,
-                    },
-
-                    {
-                        overHidden: true,
-                        label: "地址",
-                        prop: "address",
-                        span: 24,
-                        rules: [
-                            {
-                                required: false,
-                                message: "请输入地址",
-                                trigger: "blur",
-                            },
-                        ],
-                    },
-                    {
-                        label: "社区简介",
-                        prop: "remark",
-                        component: "AvueUeditor",
-                        options: {
-                            action: "/api/blade-resource/oss/endpoint/put-file",
-                            props: {
-                                res: "data",
-                                url: "link",
-                            },
-                        },
-                        hide: true,
-                        minRows: 6,
-                        span: 24,
-                    },
-
-                ],
+            {
+              width: 110,
+              overHidden: true,
+              label: "社区编号",
+              prop: "code",
+              searchSpan: 4,
+              search: true,
+              span: 12,
+              rules: [{
+                required: true,
+                message: "请输入社区编号",
+                trigger: "blur",
+              }, ],
             },
-            data: [],
-        }
+
+            {
+              width: 110,
+              label: "所属街道",
+              parent: false,
+              addDisplay: false,
+              editDisplay: false,
+              viewDisplay: false,
+              prop: "townName",
+              search: true,
+              searchSpan: 4
+            },
+
+            {
+              label: "所属街道",
+              hide: true,
+              parent: false,
+              prop: "streetCode",
+              type: "tree",
+              dicUrl: "/api/blade-system/region/getTownTree",
+              props: {
+                label: "name",
+                value: "id"
+              },
+              rules: [{
+                required: true,
+                message: "请选择所属街道",
+                trigger: "blur",
+              }, ],
+            },
+
+            {
+              width: 110,
+              label: "社区民警",
+              prop: "resPoliceUserId",
+              type: "tree",
+              multiple: true,
+              dicUrl: "/api/blade-system/user/getUserListByParam?roleName=民警",
+              props: {
+                label: "name",
+                value: "id"
+              },
+              rules: [{
+                required: true,
+                message: "请选择社区民警",
+                trigger: "blur",
+              }, ],
+            },
+            {
+              width: 110,
+              label: "社区图片",
+              prop: "picUrl",
+              type: "upload",
+              listType: "picture-img",
+              action: "/api/blade-resource/oss/endpoint/put-file",
+              propsHttp: {
+                res: "data",
+                url: "link",
+              },
+              span: 24,
+            },
+
+            {
+              overHidden: true,
+              label: "地址",
+              prop: "address",
+              span: 24,
+              rules: [{
+                required: false,
+                message: "请输入地址",
+                trigger: "blur",
+              }, ],
+            },
+            {
+              label: "社区简介",
+              prop: "remark",
+              component: "AvueUeditor",
+              options: {
+                action: "/api/blade-resource/oss/endpoint/put-file",
+                props: {
+                  res: "data",
+                  url: "link",
+                },
+              },
+              hide: true,
+              minRows: 6,
+              span: 24,
+            },
+
+          ],
+        },
+        data: [],
+      }
     },
-    watch: {
-    },
+    watch: {},
     computed: {
-        ...mapGetters(["permission", "userInfo"]),
-        permissionList () {
-            return {
-                addBtn: this.vaildData(this.permission.community_add, true),
-                viewBtn: this.vaildData(this.permission.community_view, true),
-                delBtn: this.vaildData(this.permission.community_delete, true),
-                editBtn: this.vaildData(this.permission.community_edit, true),
-            }
-        },
-        ids () {
-            let ids = []
-            this.selectionList.forEach((ele) => {
-                ids.push(ele.id)
-            })
-            return ids.join(",")
-        },
+      ...mapGetters(["permission", "userInfo"]),
+      permissionList() {
+        return {
+          addBtn: this.vaildData(this.permission.community_add, true),
+          viewBtn: this.vaildData(this.permission.community_view, true),
+          delBtn: this.vaildData(this.permission.community_delete, true),
+          editBtn: this.vaildData(this.permission.community_edit, true),
+        }
+      },
+      ids() {
+        let ids = []
+        this.selectionList.forEach((ele) => {
+          ids.push(ele.id)
+        })
+        return ids.join(",")
+      },
     },
     methods: {
-        rowSave (row, done, loading) {
-            if (row.picUrl.length > 0) {
-                var urls = []
-                var split = row.picUrl.split(",")
-                split.forEach(url => {
-                    var names = url.split("jczz/")
-                    urls.push(names[1])
-                })
-                row.picUrl = urls.join(",")
-            }
-            row.userid = this.userInfo.user_id
-            add(row).then(
-                () => {
-                    this.onLoad(this.page)
-                    this.$message({
-                        type: "success",
-                        message: "操作成功!",
-                    })
-                    done()
-                },
-                (error) => {
-                    window.console.log(error)
-                    loading()
-                }
-            )
-        },
-        rowUpdate (row, index, done, loading) {
-            if (row.picUrl.length > 0) {
-                var urls = []
-                var split = row.picUrl.split(",")
-                split.forEach(url => {
-                    var names = url.split("jczz/")
-                    urls.push(names[1])
-                })
-                row.picUrl = urls.join(",")
-            }
-            update(row).then(
-                () => {
-                    this.onLoad(this.page)
-                    this.$message({
-                        type: "success",
-                        message: "操作成功!",
-                    })
-                    done()
-                },
-                (error) => {
-                    window.console.log(error)
-                    loading()
-                }
-            )
-        },
-        rowDel (row) {
-            this.$confirm("确定将选择数据删除?", {
-                confirmButtonText: "确定",
-                cancelButtonText: "取消",
-                type: "warning",
-            })
-                .then(() => {
-                    return remove(row.id)
-                })
-                .then(() => {
-                    this.onLoad(this.page)
-                    this.$message({
-                        type: "success",
-                        message: "操作成功!",
-                    })
-                })
-        },
-        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()
-        },
-        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)) {
-                getCommunity(this.form.id).then((res) => {
-                    this.form = res.data.data
-                    if (this.form.picUrl.length > 0) {
-                        var urls = []
-                        var names = this.form.picUrl.split(",")
-                        names.forEach(name => {
-                            urls.push(website.minioUrl + name)
-                        })
-                        this.form.picUrl = urls.join(",")
-                    }
-                })
-            }
-            // con
-            done()
-        },
-        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.data.forEach(item => {
-                    if (item.picUrl) {
-                        if (item.picUrl.length > 0) {
-                            var urls = []
-                            var names = item.picUrl.split(",")
-                            names.forEach(name => {
-                                urls.push(website.minioUrl + name)
-                            })
-                            item.picUrl = urls.join(",")
-                        }
-                    }
-                })
-                this.loading = false
-                this.selectionClear()
-            })
+      rowSave(row, done, loading) {
+        if (row.picUrl.length > 0) {
+          var urls = []
+          var split = row.picUrl.split(",")
+          split.forEach(url => {
+            var names = url.split("jczz/")
+            urls.push(names[1])
+          })
+          row.picUrl = urls.join(",")
         }
+        row.userid = this.userInfo.user_id
+        add(row).then(
+          () => {
+            this.onLoad(this.page)
+            this.$message({
+              type: "success",
+              message: "操作成功!",
+            })
+            done()
+          },
+          (error) => {
+            window.console.log(error)
+            loading()
+          }
+        )
+      },
+      rowUpdate(row, index, done, loading) {
+        if (row.picUrl.length > 0) {
+          var urls = []
+          var split = row.picUrl.split(",")
+          split.forEach(url => {
+            var names = url.split("jczz/")
+            urls.push(names[1])
+          })
+          row.picUrl = urls.join(",")
+        }
+        update(row).then(
+          () => {
+            this.onLoad(this.page)
+            this.$message({
+              type: "success",
+              message: "操作成功!",
+            })
+            done()
+          },
+          (error) => {
+            window.console.log(error)
+            loading()
+          }
+        )
+      },
+      rowDel(row) {
+        this.$confirm("确定将选择数据删除?", {
+            confirmButtonText: "确定",
+            cancelButtonText: "取消",
+            type: "warning",
+          })
+          .then(() => {
+            return remove(row.id)
+          })
+          .then(() => {
+            this.onLoad(this.page)
+            this.$message({
+              type: "success",
+              message: "操作成功!",
+            })
+          })
+      },
+      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()
+      },
+      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)) {
+          getCommunity(this.form.id).then((res) => {
+            this.form = res.data.data
+            if (this.form.picUrl.length > 0) {
+              var urls = []
+              var names = this.form.picUrl.split(",")
+              names.forEach(name => {
+                urls.push(website.minioUrl + name)
+              })
+              this.form.picUrl = urls.join(",")
+            }
+          })
+        }
+        // con
+        done()
+      },
+      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.data.forEach(item => {
+            if (item.picUrl) {
+              if (item.picUrl.length > 0) {
+                var urls = []
+                var names = item.picUrl.split(",")
+                names.forEach(name => {
+                  urls.push(website.minioUrl + name)
+                })
+                item.picUrl = urls.join(",")
+              }
+            }
+          })
+          this.loading = false
+          this.selectionClear()
+        })
+      }
     }
-}
+  }
 </script>
 
 <style>
-.avue-upload__icon {
+  .avue-upload__icon {
     line-height: 6;
-}
-</style>
+  }
+</style>
\ No newline at end of file
diff --git a/src/views/property/propertyCompanyDistrict.vue b/src/views/property/propertyCompanyDistrict.vue
index b73c595..39c6166 100644
--- a/src/views/property/propertyCompanyDistrict.vue
+++ b/src/views/property/propertyCompanyDistrict.vue
@@ -150,8 +150,8 @@
               prop: 'principal',
               span: 12,
               type: "tree",
-              multiple: true,
-              remote: true,
+              // multiple: true,
+              // remote: true,
               props: {
                 label: 'name',
                 value: 'id'
@@ -239,6 +239,24 @@
                 trigger: "blur",
               }, ],
             },
+            {
+              label: '电子合同',
+              type: 'upload',
+              listType: 'picture-img',
+              propsHttp: {
+                res: 'data',
+                url: 'link',
+              },
+              canvasOption: {
+                text: ' ',
+                ratio: 0.1
+              },
+              action: '/api/blade-resource/oss/endpoint/put-file',
+              tip: '只能上传jpg/png图片,且不超过500kb',
+              span: 12,
+              row: true,
+              prop: 'electronicContract'
+            }
           ],
         },
         data: [],

--
Gitblit v1.9.3