1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
| <template>
| <div style="width: 100%; height: 100%; background: #ccc">
| <div style="background-color: #25aff3; width: 100%; height: 50px">
| <span
| style="
| display: inline-block;
| color: #ffffff;
| font-size: 24px;
| line-height: 50px;
| margin-left: 5px;
| "
| >服务许可审批备案系统</span
| >
| <div
| style="
| display: block;
| float: right;
| height: 50px;
| padding-right: 52px;
| color: #fff;
| line-height: 50px;
| cursor: pointer;
| position: relative;
| "
| >
| <img
| src="http://nx.baibaodun.cn:80/assets/images/username-person.png"
| style="display: inline-block; vertical-align: middle"
| />
| <i
| style="
| font-style: normal;
| color: #ffffff;
| font-size: 16px;
| line-height: 50px;
| display: inline-block;
| margin: 0;
| padding-left: 4px;
| "
| >{{ userName }}</i
| >
| <a
| style="
| margin-left: 15px;
| color: #ffffff;
| font-size: 16px;
| line-height: 50px;
| "
| @click="logout"
| >退出登录</a
| >
| </div>
| </div>
| <div
| style="position: relative; width: 100%; height: 100%; background: #eff2fa"
| >
| <div class="header">
| <h2 style="text-align: center; margin: 0; padding-top: 20px">
| 保安相关申请流程
| </h2>
| <button
| style="
| border: 1px solid red;
| border-radius: 3px;
| position: absolute;
| right: 16%;
| top: 30px;
| height: 25px;
| width: 140px;
| text-align: center;
| "
| @click="ss"
| >
| 审批进度查询
| </button>
| </div>
|
| <div class="main">
| <div v-for="(item, index) in menuData" :key="index" class="item-box">
| <div
| class="box-top"
| :style="{ background: item.topUrl }"
| @click="targetClick(item)"
| >
| <div class="img-box">
| <img :src="item.centerUrl" alt="" />
| </div>
| </div>
|
| <div class="box-bottom">
| {{ item.menuName }}
| </div>
| </div>
| </div>
| </div>
| <div class="detail-box" v-show="onit">
| <span class="layui-layer-setwin">
| <a
| class="layui-layer-ico layui-layer-close layui-layer-close1"
| href="javascript:;"
| id="close"
| ></a>
| </span>
| <div class="layui-layer-title" style="height: 40px; line-height: 40px">
| 保安服务公司许可证
| </div>
| <span class="layui-layer-setwin"
| ><a
| class="layui-layer-ico layui-layer-close layui-layer-close1"
| href="javascript:;"
| @click="js_method"
| ></a
| ></span>
| <div id="" class="layui-layer-content" style="height: 298px">
| <div class="radio-custom radio-primary">
| <label for="sponsorlicenseType1">
| <input
| id="sponsorlicenseType1"
| type="radio"
| value="0"
| name="sponsorlicenseType"
| ref="name"
| checked=""
| />保安服务公司设立许可</label
| >
| <div class="handling-guideline">
| <p>
| 材料说明:普通保安服务公司是指申请服务范围为:门卫、巡逻、守护、随身护卫、安全检查、安全技术防范、安全风险评估、区域秩序维护的公司。
| </p>
| </div>
| </div>
| <div class="radio-custom radio-primary">
| <label for="sponsorlicenseType2"
| ><input
| id="sponsorlicenseType2"
| type="radio"
| value="1"
| ref="name"
| name="sponsorlicenseType"
| />保安培训公司设立许可</label
| >
| <div class="handling-guideline">
| <p>
| 国务院《保安服务管理条例》(2009年国务院令第564号)第九条:申请设立保安服务公司,应当向所在地设区的市级人民政府公安机关提交申请书以及能够证明其符合本条例第八条规定条件的材料。
| </p>
| </div>
| </div>
| </div>
| <div class="layui-layer-btn" style="margin-left: 260px">
| <button
| class="layui-layer-btn0"
| @click="onNext"
| style="
| position: absolute;
| width: 95px;
| border: 1px solid #2673e5;
| background: rgb(46, 141, 237);
| border-radius: 4px;
| width: 100px;
| height: 38px;
| "
| >
| 确认
| </button>
| </div>
| </div>
|
| <div class="lod" v-if="forms != 0">
| <div class="lod-in">
| <div v-show="forms == 1" class="first-box-outer">
| <div class="first-box-title" style="">设立保安服务公司行政许可证</div>
| <div class="first-box-content">
| <div class="handling-guideline">
| <h2 class="hand-title">保安服务公司许可办理指南</h2>
| <div class="hand-content">
| <p><label>审批依据:</label></p>
| <p>
| 1、《保安服务管理条例》(中华人民共和国国务院令第564号);<br />
|
| 2、《公安机关实施保安服务管理条例办法》(中华人民共和国公安部令
| 第 112 号);<br />
|
| 3、关于印发《宁夏回族自治区保安服务公司许可备案实施细则(试行)》和《宁夏回族自治区保安培训机构管理办法实施细则(试行)》的通知(宁公通〔2017〕61号);<br />
| </p>
| <p>
| <label>申请条件:</label
| >自然人、法人和其他组织。自然人需要有完全民事行为能力,年满18周岁且不具有精神疾病。
| </p>
| <p><label>申请材料:</label></p>
| <p>
| 1、《申请设立保安服务公司行政许可审批表》。<br />
| 2、设立保安服务公司申请书<br />
| 3、设立保安服务公司可行性分析报告<br />
|
| 4、保安服务从业单位法定代表人(主要负责人)登记表<br />
| 5、保安服务公司章程<br />
| 6、注册资本认缴金额证明。<br />
| 7、拟任的法定代表人、主要管理人员应提供下列材料:<br />
| ①有效身份证件;②保安师资格证书原件及复印件;③个人简历及5年以上军队、公安、安全、审判、检察、司法行政或者治保安卫、保安经营管理工作经验证明。<br />
| 8、专业技术人员名单,法律、行政法规有资格要求的资格证明。<br />
| 9、拟设保安服务公司住所的所有权或使用权有效证明文件和提供保安服务所需的有关设备、交通工具等材料并附彩色照片。<br />
| 10、组织机构和保安服务管理制度、岗位责任制度、保安员管理制度材料。<br />
| 11、工商行政管理部门核发的企业名称预先核准通知书。<br />
| </p>
|
| <p>
| <label
| >申请设立中外合资、中外合作或者外资独资保安服务公司除以上1-11项内容外还需另外提供以下材料:</label
| >
| </p>
|
| <p>
| 1、中外合资、中外合作合同原件及复印件。<br />
|
| 2、外方的资信证明和注册登记文件原件及复印件。<br />
|
| 3、境外法定代表人、主要管理人员所属国家或者地区无被刑事处罚记录证明(原居住地警察机构出具并经公证机关公证)。<br />
|
| 4、境外法定代表人、主要管理人员5年以上保安经营管理工作经验证明。<br />
| </p>
|
| <p><label>法定周期:</label>区、市20个工作日</p>
| <p><label>承诺时限:</label>区、市20个工作日</p>
|
| <p><label>受理部门:</label>市级公安机关</p>
|
| <p><label>审批机关::</label>区级公安机关</p>
|
| <p>
| <label
| >申请设立或增设从事武装守护押运业务的保安服务公司还需另外提供以下材料:</label
| >
| </p>
|
| <p>
| 1、1000万元人民币以上注册资本。<br />
|
| 2、出资属国有独资或者国有资本占注册资本总额51%以上的有效证明文件原件及复印件。<br />
|
| 3、符合国家或者行业标准的专用运输车辆以及通信、报警设备的材料。<br />
|
| 4、枪支安全管理制度和保管设施情况的材料。<br />
| </p>
|
| <p><label>法定周期:</label>区、市20个工作日</p>
| <p><label>承诺时限:</label>区、市20个工作日</p>
|
| <p><label>受理部门:</label>市级公安机关</p>
|
| <p><label>审批机关::</label>区级公安机关</p>
|
| <p><label>审批机关::</label>公安部</p>
| </div>
| </div>
| <div class="hand-next">
| <el-button type="primary" @click="tip0">下一步</el-button>
| <el-button type="primary" @click="qx">取消</el-button>
| </div>
| </div>
| </div>
| <div v-show="forms == 2" class="first-box-outer">
| <avue-form ref="form1" v-model="obj0" :option="option">
| <template slot="menuForm">
| <el-button type="primary" @click="tip1up1">上一页</el-button>
| <el-button type="primary" @click="tip1">暂存</el-button>
| <el-button type="primary" @click="up()">提交审批</el-button>
| <el-button type="info" @click="tipover">取消</el-button>
| </template>
| </avue-form>
| </div>
| </div>
| </div>
|
| <div class="lod" v-show="onits">
| <div class="lod-in">
| <div class="first-box-outers">
| <div class="first-box-titles">
| 审批进度
| <a
| style="margin-left: 1120px; font-size: 18px"
| href="javascript:;"
| @click="js_methods"
| >X</a
| >
| </div>
| <div class="first-box-content">
| <avue-crud
| :option="option1"
| :table-loading="loading"
| :data="data"
| :page.sync="page"
| :permission="permissionList"
| :before-open="beforeOpen"
| v-model="form"
| ref="crud"
| @row-update="rowUpdate"
| @row-save="rowSave"
| @row-del="rowDel"
| @search-change="searchChange"
| @search-reset="searchReset"
| @selection-change="selectionChange"
| @current-change="currentChange"
| @size-change="sizeChange"
| @refresh-change="refreshChange"
| @on-load="onLoad"
| :row-style="rowStyle"
| >
| <template class="tdtype" slot-scope="{ row }" slot="type">
| <el-tag class="dtype">
| {{
| row.type == "0"
| ? "通过"
| : row.type == "1"
| ? "不通过"
| : "待审核"
| }}
| <i class="gz" v-if="row.type == '0'"></i>
| <i class="yj" v-if="row.type == '1'"></i>
| <i class="zc" v-if="row.type == '2'"></i>
| </el-tag>
| </template>
| </avue-crud>
| </div>
| </div>
| </div>
| </div>
| </div>
| </template>
|
| <script>
| import {
| add,
| adds,
| getDetail,
| getList,
| getListre,
| getListrek,
| getListrev,
| remove,
| selectIn,
| update,
| } from "@/api/permit/permit";
| import { mapGetters } from "vuex";
| import { resetRouter } from "@/router/router";
|
| export default {
| data() {
| return {
| query: {},
| loading: true,
| page: {
| pageSize: 10,
| currentPage: 1,
| total: 0,
| },
| obj0: {
| title0: "保安服务公司许可证审批",
| },
| // option0: {
| // emptyBtn: false,
| // submitBtn: false,
| // gutter: 30,
| // column: column0,
| // },
| option: {
| emptyBtn: false,
| submitBtn: false,
| gutter: 50,
| column: [
| {
| label: "",
| labelWidth: 20,
| type: "title",
| prop: "title0",
| span: 24,
| styles: {
| fontSize: "24px",
| },
| },
| {
| label: "统一社会信用代码",
| prop: "creditcode",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入社会信用代码",
| trigger: "blur",
| },
| ],
| },
| {
| label: "辖区",
| prop: "jurisdiction",
| // type: "tree",
| // disabled: true,
| type: "tree",
| dicUrl: "/api/jurisdiction/lazy-trees",
| props: {
| label: "title",
| value: "id",
| },
| labelWidth: 160,
| span: 12,
| },
| {
| label: "企业类型",
| prop: "ptype",
| hide: true,
| display: false,
| },
| {
| label: "所属单位",
| prop: "deptid",
| hide: true,
| display: false,
| },
| {
| label: "企业名称",
| prop: "enterprisename",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入企业名称",
| trigger: "blur",
| },
| ],
| },
| {
| label: "法定代表人",
| prop: "representative",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入法定代表人",
| trigger: "blur",
| },
| ],
| },
| {
| label: "法定代表人电话",
| prop: "representativecell",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "法定代表人电话",
| trigger: "blur",
| },
| ],
| },
| {
| label: "联系人",
| prop: "contacts",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "联系人",
| trigger: "blur",
| },
| ],
| },
| {
| label: "联系人电话",
| prop: "contactscell",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "联系人电话",
| trigger: "blur",
| },
| ],
| },
| {
| label: "成立日期",
| prop: "establishtime",
| labelWidth: 160,
| span: 12,
| type: "date",
| format: "yyyy-MM-dd",
| valueFormat: "timestamp",
| },
| {
| label: "注册资本(万元人民币)",
| prop: "registeredcapital",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入注册资本",
| trigger: "blur",
| },
| ],
| },
| // {
| // label: "实缴资本(万元人民币)",
| // prop: "capital",
| // labelWidth: 160,
| // span: 12,
| // rules: [{
| // required: true,
| // message: "请输入实缴资本",
| // trigger: "blur"
| // }]
| // },
| {
| label: "组织机构代码",
| prop: "organizationcode",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入组织机构代码",
| trigger: "blur",
| },
| ],
| },
| {
| label: "工商注册号",
| prop: "registrationnumber",
|
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入工商注册号",
| trigger: "blur",
| },
| ],
| },
| // {
| // label: "纳税人识别号",
| // prop: "identificationnumber",
| // labelWidth: 160,
| // span: 12,
| // rules: [{
| // required: true,
| // message: "请输入纳税人识别号",
| // trigger: "blur"
| // }]
| // },
| {
| label: "注册地址",
| prop: "address",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入注册地址",
| trigger: "blur",
| },
| ],
| },
| {
| label: "经营范围",
| prop: "business",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入经营范围",
| trigger: "blur",
| },
| ],
| },
| {
| label: "所属地区",
| prop: "region",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入所属地区",
| trigger: "blur",
| },
| ],
| },
| {
| label: "登记机关",
| prop: "registration",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入登记机关",
| trigger: "blur",
| },
| ],
| // overHidden: true,
| },
| {
| label: "所属行业",
| prop: "industry",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入所属行业",
| trigger: "blur",
| },
| ],
| },
| {
| label: "拖拽上传",
| prop: "imgUrl5",
| type: "upload",
| span: 12,
| drag: true,
| propsHttp: {
| res: "data",
| },
| tip: "只能上传jpg/png文件,且不超过500kb",
| action:
| "/api/blade-resource/oss/endpoint/put-file-attach?deptid=&type=0",
| },
| ],
| },
| option1: {
| delBtn: false,
| editBtn: false,
| addBtn: false,
| height: "auto",
| calcHeight: 260,
| tip: false,
| searchShow: true,
| searchMenuSpan: 8,
| labelWidth: 130,
| headerAlign: "center",
| align: "center",
| border: true,
| index: true,
| viewBtn: true,
| selection: true,
| dialogClickModal: false,
| column: [
| {
| label: "企业名称",
| prop: "enterprisename",
| labelWidth: 160,
| span: 12,
| rules: [
| {
| required: true,
| message: "请输入企业名称",
| trigger: "blur",
| },
| ],
| },
| {
| label: "许可类型",
| prop: "ptype",
| type: "select",
| dicData: [
| {
| label: "保安服务公司许可",
| value: "0",
| },
| {
| label: "保安培训公司许可",
| value: "1",
| },
| {
| label: "保安服务公司备案",
| value: "2",
| },
| {
| label: "跨区域备案",
| value: "3",
| },
| {
| label: "备案撤销",
| value: "4",
| },
| ],
| },
| {
| label: "审批意见",
| prop: "reason",
| },
| {
| label: "提交时间",
| prop: "permitime",
| addDisplay: false,
| type: "date",
| format: "yyyy-MM-dd HH:mm:ss",
| valueFormat: "yyyy-MM-dd HH:mm:ss",
| },
| {
| label: "审核状态",
| prop: "type",
| addDisplay: false,
| type: "select",
| dicData: [
| {
| label: "通过",
| value: "0",
| },
| {
| label: "不通过",
| value: "1",
| },
| {
| label: "待审核",
| value: "2",
| },
| ],
| },
| ],
| },
| data0: {},
| forms: 0,
| onit: false,
| onits: false,
| menuData: [
| {
| menuName: "保安服务公司许可",
| centerUrl: "/img/logo.png",
| topUrl: "url(/img/permit/服务许可背景图.jpg)",
| targetUrl: "per",
| },
| {
| menuName: "保安服务公司备案",
| centerUrl: "/img/logo.png",
| topUrl: "url(/img/permit/服务许可背景图.jpg)",
| },
| {
| menuName: "自招保安单位备案撤销",
| centerUrl: "/img/logo.png",
| topUrl: "url(/img/permit/服务许可背景图.jpg)",
| },
| {
| menuName: "跨区域经营备案",
| centerUrl: "/img/logo.png",
| topUrl: "url(/img/permit/服务许可背景图.jpg)",
| },
| ],
| userName: "",
| };
| },
| computed: {
| ...mapGetters(["userInfo"]),
| },
| created() {
| this.convert();
| this.cc();
| },
| methods: {
| cc: function () {
| this.userName = this.$store.getters.userInfo.user_name;
| },
| convert: function () {
| var caridid = this.$store.getters.userInfo.Id;
| selectIn(caridid).then((res) => {
| this.option.column[1].value = res.data.data.creditCode;
| this.option.column[2].value = res.data.data.jurisdiction;
| this.option.column[3].value = res.data.data.enterpriseName;
| this.option.column[4].value = res.data.data.representative;
| this.option.column[5].value = res.data.data.representativecell;
| this.option.column[6].value = res.data.data.contacts;
| this.option.column[7].value = res.data.data.contactscell;
| this.option.column[8].value = res.data.data.establishTime;
| this.option.column[9].value = res.data.data.registeredCapital;
| this.option.column[10].value = res.data.data.capital;
| this.option.column[11].value = res.data.data.organizationCode;
| this.option.column[12].value = res.data.data.identificationNumber;
| this.option.column[13].value = res.data.data.enterprises;
| this.option.column[14].value = res.data.data.address;
| this.option.column[15].value = res.data.data.business;
| this.option.column[16].value = res.data.data.region;
| this.option.column[17].value = res.data.data.registration;
| this.option.column[18].value = res.data.data.industry;
| });
| },
| ss() {
| this.onits = true;
| //this.$router.push({path: '/homespi'});
| },
| onNext() {
| this.forms = 1;
| this.onit = false;
| },
| targetClick(item) {
| var url = item.targetUrl;
| if (url == "per") {
| this.onit = true;
| }
| },
| tip0() {
| this.forms = 2;
| },
| qx() {
| this.forms = 0;
| },
| up() {
| var d = {};
| for (var k in this.obj0) {
| for (var i in this.option.column) {
| if (k == this.option.column[i].prop && k != "title0") {
| d[k] = this.obj0[k];
| }
| }
| }
| this.data0 = d;
| this.data0.ptype = this.$refs.name.value;
| this.data0.cardid = this.$store.getters.userInfo.Id;
| add(this.data0).then(() => {
| this.tipover();
| });
| },
| tip1() {
| var d = {};
| for (var k in this.obj0) {
| for (var i in this.option.column) {
| if (k == this.option.column[i].prop && k != "title0") {
| d[k] = this.obj0[k];
| }
| }
| }
| this.data0 = d;
| this.data0.ptype = this.$refs.name.value;
| this.data0.deptid = this.$store.getters.userInfo.dept_id;
| adds(this.data0).then(() => {
| this.tipover();
| });
| },
| tip1up1() {
| this.forms = 1;
| },
| 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.loading = false;
| getListre(
| page.currentPage,
| page.pageSize,
| Object.assign(params, this.query)
| ).then((ress) => {
| this.data = this.data.concat(ress.data.data.records);
| });
| getListrek(
| page.currentPage,
| page.pageSize,
| Object.assign(params, this.query)
| ).then((resk) => {
| this.data = this.data.concat(resk.data.data.records);
| });
| getListrev(
| page.currentPage,
| page.pageSize,
| Object.assign(params, this.query)
| ).then((resv) => {
| this.data = this.data.concat(resv.data.data.records);
| });
| });
| },
| rowUpdate(row, index, done, loading) {
| update(row).then(
| () => {
| this.onLoad(this.page);
| this.$message({
| type: "success",
| message: "操作成功!",
| });
| done();
| },
| (error) => {
| loading();
| console.log(error);
| }
| );
| },
| rowDel(row) {
| this.$confirm("确定将选择数据删除?", {
| confirmButtonText: "确定",
| cancelButtonText: "取消",
| type: "warning",
| })
| .then(() => {
| return remove(row.id);
| })
| .then(() => {
| this.onLoad(this.page);
| this.$message({
| type: "success",
| message: "操作成功!",
| });
| });
| },
| beforeOpen(done, type) {
| if (["edit", "view"].includes(type)) {
| getDetail(this.form.id).then((res) => {
| this.form = res.data.data;
| });
| }
| done();
| },
| tipover() {
| this.forms = 0;
| this.obj0 = {
| title0: "保安单位基本信息",
| };
| this.data0 = {};
| },
| js_method() {
| // this.onit = false;
| this.onNext();
| },
| js_methods() {
| this.onits = false;
| },
| logout() {
| this.$confirm(this.$t("logoutTip"), this.$t("tip"), {
| confirmButtonText: this.$t("submitText"),
| cancelButtonText: this.$t("cancelText"),
| type: "warning",
| }).then(() => {
| this.$store.dispatch("LogOut").then(() => {
| resetRouter();
| this.$router.push({ path: "/login" });
| });
| });
| },
| },
| };
| </script>
|
| <style lang="scss" scoped>
| .dtype {
| width: 80px;
| }
|
| .dx {
| position: absolute;
| top: 50%;
| margin-top: -5px;
| margin-left: 6px;
| width: 10px;
| height: 10px;
| border-radius: 30%;
| background: #dfdfdf;
| }
|
| .zc {
| position: absolute;
| top: 50%;
| margin-top: -5px;
| margin-left: 6px;
| width: 10px;
| height: 10px;
| border-radius: 30%;
| background: #29c093;
| }
|
| .yj {
| position: absolute;
| top: 50%;
| margin-top: -5px;
| margin-left: 6px;
| width: 10px;
| height: 10px;
| border-radius: 30%;
| background: #f34a4a;
| }
|
| .gz {
| position: absolute;
| top: 50%;
| margin-top: -5px;
| margin-left: 6px;
| width: 10px;
| height: 10px;
| border-radius: 30%;
| background: #f48f57;
| }
|
| .el-tag {
| display: inline-block;
| width: 80px;
| /*padding-right: 40px !important;*/
| }
|
| .layui-layer-setwin {
| position: absolute;
| right: 15px;
| right: 0;
| top: 15px;
| font-size: 0;
| line-height: initial;
|
| .layui-layer-close1 {
| color: #fff;
| background: url(/img/permit/close-btn.png) no-repeat;
| padding-right: 10px;
| }
|
| a {
| position: relative;
| width: 16px;
| height: 16px;
| margin-left: 10px;
| font-size: 12px;
| _overflow: hidden;
| display: inline-block;
| }
| }
|
| .close {
| position: absolute;
| right: 20px;
| top: 5px;
| }
|
| .hand-next {
| text-align: center;
| padding: 15px 0;
| }
|
| .first-box-outers {
| position: fixed;
| pointer-events: auto;
| z-index: 999;
| width: 100%;
| height: 80%;
| top: 120px;
| left: 340px;
| background-color: #fff;
| box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
| border-radius: 2px;
|
| max-height: 790px;
| max-width: 1240px;
|
| .first-box-titles {
| padding: 0 80px 0 20px;
| height: 42px;
| line-height: 42px;
| overflow: hidden;
| border-radius: 2px 2px 0 0;
| text-overflow: ellipsis;
| white-space: nowrap;
| margin: 0;
| width: 100%;
| }
|
| .first-box-content {
| height: calc(100% - 42px);
| }
| }
|
| .first-box-outer {
| position: fixed;
| pointer-events: auto;
| z-index: 999;
| width: 100%;
| height: 90%;
| top: 30px;
| left: 340px;
| background-color: #fff;
| box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
| border-radius: 2px;
|
| max-height: 790px;
| max-width: 1240px;
|
| .first-box-title {
| padding: 0 80px 0 20px;
| height: 42px;
| line-height: 42px;
| overflow: hidden;
| border-radius: 2px 2px 0 0;
| text-overflow: ellipsis;
| white-space: nowrap;
| margin: 0;
| }
|
| .first-box-content {
| height: calc(100% - 42px);
| overflow-y: auto;
|
| .handling-guideline {
| .hand-title {
| text-align: center;
| font-size: 20px;
| line-height: 50px;
| font-weight: 600;
| }
|
| .hand-content {
| width: 1000px;
| padding: 30px;
| margin: 0 auto;
| margin-bottom: 0px;
| background: #f9f9f9;
| margin-bottom: 15px;
|
| p {
| font-size: 14px;
| line-height: 28px;
|
| label {
| font-weight: bold;
| }
| }
| }
| }
| }
| }
|
| .layui-layer-setwin {
| position: absolute;
| right: 15px;
| right: 0;
| top: 15px;
| font-size: 0;
| line-height: initial;
| }
|
| .detail-box {
| position: fixed;
| top: 0;
| left: 0;
| right: 0;
| bottom: 50px;
| margin: auto;
| width: 600px;
| height: 420px;
| background: #fff;
|
| .radio-custom {
| position: relative;
|
| input {
| position: absolute;
| top: 4px;
| left: 0px;
| }
| }
| }
|
| .radio-custom {
| margin-top: 15px;
| }
|
| .layui-layer-title {
| background: #2575eb;
| color: #fff;
| border: none;
| font-size: 16px;
| text-align: center;
| }
|
| .radio-custom label {
| min-height: 22px;
| line-height: 22px;
| margin-bottom: 0;
| font-weight: 300;
| cursor: pointer;
| display: inline-block;
| vertical-align: middle;
| position: relative;
| padding-left: 30px;
| margin-left: 25px;
| color: black;
| font-weight: 700;
| }
|
| .radio-custom .handling-guideline {
| margin-left: 50px;
| margin-right: 25px;
| margin-top: 5px;
| }
|
| //#barcon {
| // position: fixed;
| // top: calc(50% - 200px);
| // left: calc(50% - 200px);
| // z-index: 10;
| // //top: 0;
| // width: 400px;
| // height: 400px;
| // background-color: red;
| //}
| .main {
| width: 80%;
| display: flex;
| flex-wrap: wrap;
| justify-content: start;
| position: absolute;
| top: 20%;
| right: 0;
| left: 0;
| bottom: auto;
| margin: auto;
|
| .item-box {
| width: calc(25% - 12px);
| height: 280px;
| position: relative;
| margin: 6px;
| background: rgb(255, 255, 255);
| border-radius: 10px;
|
| .box-top {
| position: absolute;
| top: 0px;
| left: 0px;
| width: calc(100%);
| height: calc(100% - 36px);
| border-radius: 10px 10px 0 0;
|
| .img-box {
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| margin: auto;
| width: 36px;
| height: 36px;
| border-radius: 50%;
| background: rgba(17, 17, 17, 0.568);
|
| img {
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| margin: auto;
| width: 24px;
| height: 24px;
| }
| }
| }
|
| .box-bottom {
| position: absolute;
| bottom: 0;
| left: 0;
| width: 100%;
| height: 36px;
| line-height: 36px;
| text-align: center;
| background: white;
| border-radius: 0 0 10px 10px;
| }
| }
| }
| </style>
|
|