-
+
+ 审批部门 :
+
@@ -161,16 +161,12 @@ const props = defineProps({
});
const roleIds = ref([]); //角色ID
const chooseVisible = ref(false); //选择布控人员弹窗
-const activeName = ref('人员信息'); //选中tab
-const btns = reactive(['人员信息', '车辆信息', '电信通讯信息', '网络信息', '人像信息']); //按钮组
-const bkdxList = ref([
- { label: "人员", value: "1" },
- { label: "群体", value: "2" },
-]); //布控对象字典
+const bkqyArr = ref([]); //布控区域
const { proxy } = getCurrentInstance();
const dialogForm = ref(false); //弹窗
const loading = ref(false)
const listQuery = ref({
+ bkYz:'01',
ssqy:'全国',
dtqy:'+范围选择(地图)',
dwlx:'3',
@@ -180,21 +176,7 @@ const listQuery = ref({
fqbm:'发起部门:巴宜区公安局城区派出所',
shqr:'审核部门:巴宜区公安局',
spqr:'审批部门:巴宜区公安局',
- bkdxList: [{
- fjZp: "https://via.placeholder.com/50",
- xm: "张三",
- xb: "男",
- mz: "汉族",
- sfzh: "123456789012345678",
- hjd: "北京市朝阳区",
- xjzdz: "北京市海淀区",
- sjh: "13800138000",
- xnsf: "虚拟身份123",
- cph: "京A12345",
- cjh: "1234567890",
- tzms: "特征描述示例",
- rybq: "人员标签示例"
- }],
+ bkdxList: [],
}); //表单数据
const tableDate = reactive({
keyCount: 0,
@@ -227,7 +209,17 @@ const tableDate = reactive({
// 初始化数据
const init = (type, row) => {
dialogForm.value = true;
+ get_bkqy_list()
};
+// 获取布控区域
+const get_bkqy_list = () =>{
+ qcckGet({},'/mosty-gsxt/tbGsxtBkQy/selectList').then(res=>{
+ let arr = res || [];
+ bkqyArr.value = arr.map(item=>{
+ return {...item,label:item.qymc,value:item.id}
+ })
+ })
+}
// 选择重点人
const choosed = (val) => {
@@ -281,4 +273,20 @@ defineExpose({ init });
::v-deep .el-upload--picture-card i{
width: 156px;
}
+.depBox{
+ border: 1px solid #e9e9e9;
+ width: 305px;
+ padding: 0 0 0 4px;
+ border-radius: 4px;
+ ::v-deep .el-input__inner{
+ border: none;
+ }
+ ::v-deep .el-cascader .el-input.is-focus .el-input__inner{
+ border-color: transparent !important;
+ }
+ ::v-deep .el-input__inner:focus {
+ box-shadow: none;
+ }
+
+}
diff --git a/src/views/backOfficeSystem/IntelligentControl/myControl/index.vue b/src/views/backOfficeSystem/IntelligentControl/myControl/index.vue
index d42e0c3..c757484 100644
--- a/src/views/backOfficeSystem/IntelligentControl/myControl/index.vue
+++ b/src/views/backOfficeSystem/IntelligentControl/myControl/index.vue
@@ -59,7 +59,7 @@