liuyg
2021-07-16 5db28e39983bb71c6e250b00a5c19fe6b0f82e2d
src/views/securityCompany/security.vue
@@ -2,7 +2,7 @@
 * @Author: Morpheus
 * @Date: 2021-07-07 17:30:05
 * @Last Modified by: Morpheus
 * @Last Modified time: 2021-07-08 09:20:26
 * @Last Modified time: 2021-07-10 16:01:42
 * menu-name 保安服务公司查询
 */
<template>
@@ -24,6 +24,7 @@
                   @current-change="currentChange"
                   @size-change="sizeChange"
                   @refresh-change="refreshChange"
                   @row-click="handleRowClick"
                   @on-load="onLoad">
        </avue-crud>
@@ -52,7 +53,7 @@
                editBtn: false,
                addBtn: false,
                selection: false,
                menu: false,
                align: 'center',
                height: 'auto',
@@ -66,7 +67,7 @@
                column: [
                    {
                        label: "企业名称",
                        label: "公司名称",
                        prop: "enterprisename",
                        search: true,
                        searchSpan: 4,
@@ -97,26 +98,24 @@
                        label: "注册资金",
                        prop: "registeredcapital",
                        display: false,
                        width: 160
                        width: 200
                    },
                    {
                        label: "实缴资金",
                        prop: "capital",
                        display: false,
                        width: 160
                        width: 200
                    },
                    {
                        label: "企业类型",
                        label: "公司类型",
                        prop: "enterprises",
                        display: false,
                    },
                    {
                        label: "注册地址",
                        prop: "address",
                        search: true,
                        searchSpan: 5,
                        display: false,
                        width: 80
                        width: 200
                    }
                ]
                ,
@@ -127,7 +126,7 @@
                        icon: 'el-icon-user-solid',
                        column: [
                            {
                                label: "企业名称",
                                label: "公司名称",
                                prop: "enterprisename",
                                display: false,
                            },
@@ -254,14 +253,27 @@
        },
        onLoad (page, params = {}) {
            this.loading = true;
            getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
            getList(page.currentPage, page.pageSize, Object.assign(params, this.query), 2).then(res => {
                const data = res.data.data;
                this.page.total = data.total;
                this.data = data.records;
                this.loading = false;
                this.selectionClear();
            });
        }
        },
        // 行单击
        handleRowClick (row) {
            // delete (row["name"]);
            var obj = row
            obj["name"] = "保安公司详细资料"
            this.$router.push({
                path: `/securityCompany/index`,
                query: obj,
            });
        },
    }
};
</script>