<template>
|
<div v-if="useWhere == 2" class="securityPermit">
|
<slot name="close"></slot>
|
<div class="heards">自招保安单位备案</div>
|
<basic-container>
|
<div v-show="forms == 1" class="first-box-outer">
|
<div class="handling-guideline">
|
<h2 class="hand-title">自招保安单位备案办理指南</h2>
|
<div class="hand-content">
|
<p><label>审批依据:</label></p>
|
<p>
|
1、《保安服务管理条例》(国务院令第564号);<br />
|
2、《公安机关实施保安服务管理条例办法》(公安部第112号令);<br />
|
</p>
|
<p>
|
<label>申请条件:</label
|
>自然人、法人和其他组织。自然人需要有完全民事行为能力,年满18周岁且不具有精神疾病。
|
</p>
|
<p>
|
<label>受理条件:</label>
|
【予以批准的条件】 1、应当具有法人资格;
|
2、有符合本条例规定条件的保安员;
|
3、有健全的保安服务管理制度、岗位责任制度和保安员管理制度。<br />
|
【不予批准的条件】
|
申请人不符合以上条件,或者不能提供足以证明符合条件的相关证明材料<br />
|
</p>
|
<p><label>申请材料:</label></p>
|
<p>
|
1、自行招用保安员单位登记备案表<br />
|
2、企业法人营业执照<br />
|
3、法定代表人身份证<br />
|
4、保安服务分管负责人身份证<br />
|
5、自行招用保安员身份证<br />
|
6、自行招用保安员的保安员证<br />
|
7、保安服务管理制度、岗位责任制度、保安员管理制度材料<br />
|
8、自行招用保安员的在岗培训法律、保安专业知识和技能情况<br />
|
</p>
|
<p><label>法定周期:</label>区、市30个工作日</p>
|
<p><label>承诺时限:</label>区、市14个工作日</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 v-show="forms == 2" class="first-box-outer">
|
<div class="f-b-o-in">
|
<el-collapse v-model="activeNames" @change="handleChange">
|
<el-collapse-item title="公司基本信息" name="1">
|
<avue-form
|
ref="form1"
|
v-model="obj0"
|
:option="option"
|
></avue-form>
|
</el-collapse-item>
|
<el-collapse-item title="附件上传/查询" name="2">
|
<attach :type="type"></attach>
|
</el-collapse-item>
|
</el-collapse>
|
</div>
|
|
<div class="hand-next">
|
<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="qx">取消</el-button>
|
</div>
|
</div>
|
</basic-container>
|
</div>
|
</template>
|
|
<script>
|
import { mapGetters } from "vuex";
|
import { add, adds, selectIn } from "@/api/recordOur/securityGuard";
|
import { column } from "./data.js";
|
import attach from "@/components/attach/attach";
|
export default {
|
components: {
|
attach: attach,
|
},
|
props: ["type"],
|
data() {
|
return {
|
forms: 1,
|
data0: {},
|
obj0: {
|
// title0: "保安服务公司许可证审批",
|
},
|
option: {
|
emptyBtn: false,
|
submitBtn: false,
|
gutter: 50,
|
column: column,
|
},
|
activeNames: ["1"],
|
};
|
},
|
computed: {
|
...mapGetters(["useWhere"]),
|
},
|
watch: {
|
useWhere() {
|
if (this.useWhere == 2) {
|
this.convert();
|
}
|
},
|
},
|
methods: {
|
convert: function () {
|
var caridid = this.$store.getters.userInfo.Id;
|
selectIn(caridid).then((res) => {
|
var d = res.data.data;
|
for (var k in d) {
|
this.obj0[k.toLowerCase()] = d[k];
|
}
|
});
|
},
|
tip0() {
|
this.forms = 2;
|
},
|
qx() {
|
this.tipover();
|
this.$store.commit("changeuseWhere", "close");
|
},
|
tip1up1() {
|
this.forms = 1;
|
},
|
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];
|
}
|
}
|
}
|
console.log(d);
|
this.data0 = d;
|
this.data0.cardid = this.$store.getters.userInfo.Id;
|
this.data0.ptype = this.type;
|
// this.data0.deptid = this.$store.getters.userInfo.dept_id;
|
adds(this.data0).then(() => {
|
this.qx();
|
this.$message({
|
message: "暂存申请成功",
|
type: "success",
|
});
|
});
|
},
|
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;
|
this.data0.ptype = this.type;
|
add(this.data0).then(() => {
|
this.qx();
|
this.$message({
|
message: "提交申请成功",
|
type: "success",
|
});
|
});
|
},
|
tipover() {
|
this.forms = 1;
|
this.obj0 = {
|
// title0: "保安单位基本信息",
|
};
|
var d = {};
|
this.data0 = d;
|
},
|
},
|
};
|
</script>
|
|
<style lang="scss">
|
</style>
|