shuishen
2021-07-10 545cf6b362f62da4c3941c264350fe0dc880a485
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-09 17:06:49
 * 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',
@@ -97,13 +98,13 @@
                        label: "注册资金",
                        prop: "registeredcapital",
                        display: false,
                        width: 160
                        width: 200
                    },
                    {
                        label: "实缴资金",
                        prop: "capital",
                        display: false,
                        width: 160
                        width: 200
                    },
                    {
                        label: "企业类型",
@@ -113,10 +114,30 @@
                    {
                        label: "注册地址",
                        prop: "address",
                        display: false,
                        width: 200
                    },
                    {
                        label: "企业类别",
                        prop: "stats",
                        type: 'select',
                        search: true,
                        searchSpan: 5,
                        dicData: [{
                            label: '自招保安单位',
                            value: '0'
                        }, {
                            label: '保安培训公司',
                            value: '1',
                        }, {
                            label: '保安服务公司',
                            value: '2',
                        }, {
                            label: '武装守押公司',
                            value: '3',
                        }],
                        display: false,
                        width: 80
                        width: 200
                    }
                ]
                ,
@@ -261,7 +282,20 @@
                this.loading = false;
                this.selectionClear();
            });
        }
        },
        // 行单击
        handleRowClick (row) {
            // delete (row["name"]);
            var obj = row
            obj["name"] = "保安公司详细资料"
            this.$router.push({
                path: `/securityCompany/index`,
                query: obj,
            });
        },
    }
};
</script>