From 192010c64e8c3ff3418f27c906e499ccdad1bbad Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 09 Jul 2021 08:45:45 +0800
Subject: [PATCH] 公司详情关联出资人和管理人,派遣管理关联各小区自己的派遣记录
---
src/views/securityUnit/data.js | 414 +++++++++++++++++++++++++++++++----------------------------
1 files changed, 218 insertions(+), 196 deletions(-)
diff --git a/src/views/securityUnit/data.js b/src/views/securityUnit/data.js
index a13f16b..dd11928 100644
--- a/src/views/securityUnit/data.js
+++ b/src/views/securityUnit/data.js
@@ -19,6 +19,7 @@
{
label: "统一社会信用代码",
prop: "creditcode",
+ width: 140
// hide: true,
// editDisplay: false,
// addDisplay: false
@@ -33,13 +34,16 @@
{
label: "企业名称",
prop: "enterprisename",
- // search: true,
+ search: true,
+ width: 130,
},
{
label: "法定代表人",
prop: "representative",
- // width: 70,
- // search: true,
+ width: 80,
+ search: true,
+ searchSpan: 5,
+ searchLabelWidth: 100
},
// {
// label: "登记状态",
@@ -64,6 +68,8 @@
{
label: "成立日期",
prop: "establishtime",
+ width: 130,
+ overHidden: true,
// addDisplay: true,
// editDisplay: true,
// viewDisplay: true,
@@ -82,15 +88,16 @@
// // }],
},
{
- label: "注册资本",
+ label: "注册资本(万元人民币)",
prop: "registeredcapital",
// search: true,
- // width: 110,
+ width: 110,
// overHidden: true
},
{
- label: "实缴资本",
+ label: "实缴资本(万元人民币)",
prop: "capital",
+ width: 85,
// search: true,
// searchSpan: 4,
// overHidden: true
@@ -98,6 +105,7 @@
{
label: "组织机构代码",
prop: "organizationcode",
+ width: 110,
// search: true,
// searchSpan: 4,
},
@@ -130,6 +138,7 @@
{
label: "企业类型",
prop: "enterprises",
+ width: 130,
// addDisplay: true,
// editDisplay: true,
// viewDisplay: true,
@@ -196,207 +205,220 @@
// },
]
-export var column1 = [
+var w = 160
+ , s = 12;
+export var column0 = [
{
- label: "id",
- prop: "id",
- },{
- label: "股东",
- prop: "shareholder",
- },{
- label: "持股比例",
- prop: "shareholdingratio",
- },{
- label: "最终受益股份",
- prop: "beneficial",
- },{
- label: "出资金额",
- prop: "capital",
- },{
- label: "出资时间",
- prop: "capitaltime",
- },{
- label: "身份证",
- prop: "cardid",
- },{
- label: "联系电话",
- prop: "cell",
- },{
+ label: "",
+ labelWidth: 20,
+ type: 'title',
+ prop: "title",
+ span: 24,
+ styles: {
+ fontSize: '24px'
+ }
+ },
+ {
label: "统一社会信用代码",
prop: "creditcode",
+ labelWidth: w,
+ span: s,
+ rules: [{
+ required: true,
+ message: "请输入社会信用代码",
+ trigger: "blur"
+ }]
+ },
+ {
+ label: "企业名称",
+ prop: "enterprisename",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "法定代表人",
+ prop: "representative",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "成立日期",
+ prop: "establishtime",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "注册资本(万元人民币)",
+ prop: "registeredcapital",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "实缴资本(万元人民币)",
+ prop: "capital",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "组织机构代码",
+ prop: "organizationcode",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "工商注册号",
+ prop: "registrationnumber",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "纳税人识别号",
+ prop: "identificationnumber",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "企业类型",
+ prop: "enterprises",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "注册地址",
+ prop: "address",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "经营范围",
+ prop: "business",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "所属地区",
+ prop: "region",
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "登记机关",
+ prop: "registration",
+ labelWidth: w,
+ span: s
+ },
+
+ {
+ label: "所属行业",
+ prop: "industry",
+ labelWidth: w,
+ span: s
+ }
+]
+
+export var column1 = [
+ {
+ label: "",
+ labelWidth: 20,
+ type: 'title',
+ prop: "title",
+ span: 24,
+ styles: {
+ fontSize: '24px'
+ }
+ },
+ {
+ label: "统一社会信用代码",
+ prop: "creditcode",
+ disabled: true,
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "股东",
+ prop: "shareholder",
+ labelWidth: w,
+ span: s
+ }, {
+ label: "持股比例(%)",
+ prop: "shareholdingratio",
+ labelWidth: w,
+ span: s
+ },
+ // {
+ // label: "最终受益股份",
+ // prop: "beneficial",
+ // labelWidth: w,
+ // span: s
+ // },
+ {
+ label: "出资金额",
+ prop: "capital",
+ labelWidth: w,
+ span: s
+ }, {
+ label: "出资时间",
+ prop: "capitaltime",
+ type: "date",
+ format: "yyyy-MM-dd hh:mm:ss",
+ valueFormat: "timestamp",
+ labelWidth: w,
+ span: s
+ }, {
+ label: "身份证",
+ prop: "cardid",
+ labelWidth: w,
+ span: s
+ }, {
+ label: "联系电话",
+ prop: "cell",
+ labelWidth: w,
+ span: s
},
]
export var column2 = [
{
- label: "id",
- prop: "id",
- },{
- label: "股东",
- prop: "shareholder",
- },{
- label: "持股比例",
- prop: "shareholdingRatio",
- },{
- label: "最终受益股份",
- prop: "beneficial",
- },{
- label: "出资金额",
- prop: "capital",
- },{
- label: "出资时间",
- prop: "capitalTime",
- },{
+ label: "",
+ labelWidth: 20,
+ type: 'title',
+ prop: "title",
+ span: 24,
+ styles: {
+ fontSize: '24px'
+ }
+ },
+ {
+ label: "统一社会信用代码",
+ prop: "creditcode",
+ disabled: true,
+ labelWidth: w,
+ span: s
+ },
+ {
+ label: "姓名",
+ prop: "name",
+ labelWidth: w,
+ span: s
+ }, {
+ label: "职务",
+ prop: "post",
+ labelWidth: w,
+ span: s
+ }, {
label: "身份证",
prop: "cardid",
- },{
+ labelWidth: w,
+ span: s
+ }, {
label: "联系电话",
prop: "cell",
- },{
- label: "统一社会信用代码",
- prop: "creditCode",
- },
-]
-
-export var data = [
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "3年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "5年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
- },
- {
- "tenant_id": "xx保安公司", "name": "xx职务",
- "number": "10",
- "education": "大专以上",
- "experience": "2年",
- "max_salary": "8k",
- "units_scale": "200人+",
- "linkman": "XX",
- "phone": "xxxxxxxxxx",
- "address": "环城路地一大道30号口下",
- "start_time": "7月8日",
- "end_time": "7月31日",
- "status": "2"
+ labelWidth: w,
+ span: s
+ }, {
+ label: "持股比例(%)",
+ prop: "shareholdingRatio",
+ labelWidth: w,
+ span: s
}
]
--
Gitblit v1.9.3