@@ -69,7 +71,7 @@ const countersignApplys = inject("countersignApplys");
const activeNames = ref([]);
watch(countersignApplys, () => {
for (let i = 0; i < countersignApplys.value.length; i++) {
- console.log(i)
+ console.log(i);
activeNames.value.push(`countersign${i}`);
}
});
diff --git a/src/components/negative/dialog.vue b/src/components/negative/dialog.vue
index b3a7032..6b12973 100644
--- a/src/components/negative/dialog.vue
+++ b/src/components/negative/dialog.vue
@@ -275,6 +275,7 @@ watch(
() => props.id,
() => {
getDetails();
+ verifyEditFlag.value = false;
}
);
diff --git a/src/components/negative/verify.vue b/src/components/negative/verify.vue
index 2145f86..c2615ea 100644
--- a/src/components/negative/verify.vue
+++ b/src/components/negative/verify.vue
@@ -139,6 +139,7 @@
type="textarea"
placeholder="请输入问题核查情况"
v-model="form.checkStatusDesc"
+ :autosize="{ minRows: 4 }"
/>
diff --git a/src/enums/dictEnums.ts b/src/enums/dictEnums.ts
index 8eff3de..595f102 100644
--- a/src/enums/dictEnums.ts
+++ b/src/enums/dictEnums.ts
@@ -55,8 +55,11 @@ export enum ProblemSources {
JZXX = '23',
// 12337信访
XF12337 = '24',
+ XCDC = '13',
// 专项督察
ZXDC = '15',
+ // 现场督察
+
// 其他
XF_QT = '25'
}
diff --git a/src/style/public.scss b/src/style/public.scss
index 5421cfa..f3b70f6 100644
--- a/src/style/public.scss
+++ b/src/style/public.scss
@@ -190,6 +190,10 @@ svg + span {
position: relative;
}
+.pt-20 {
+ padding-top: 20px;
+}
+
.m-1 {
margin: 1px;
}
diff --git a/src/views/sensitivePerception/Model.vue b/src/views/sensitivePerception/Model.vue
index efdbe72..7f84d07 100644
--- a/src/views/sensitivePerception/Model.vue
+++ b/src/views/sensitivePerception/Model.vue
@@ -197,83 +197,100 @@
/>
-
-
-
-
-
-
-
-
-
-
- {{ item.dictLabel
- }}{{ item.remark ? `(${item.remark})` : "" }}
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.dictLabel
+ }}{{
+ item.remark ? `(${item.remark})` : ""
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
@@ -450,10 +463,21 @@
添加问题
-
+
-
+
{
listModelClass().then((data) => {
classes.value = data;
});
+ listRiskScoreRuleTree().then((data) => {
+ treeOptions.value = data
+ })
});
function handleChangeClass(id) {
@@ -789,7 +816,7 @@ const show = ref(false);
const mode = ref("add");
const form = ref({
distributionMethod: "1",
- problems: []
+ problems: [],
});
watch(mode, (val) => {
@@ -799,10 +826,10 @@ watch(mode, (val) => {
});
function initForm() {
- form.value = {
+ form.value = {
distributionMethod: "1",
- problems: []
- };
+ problems: [],
+ };
}
const formRef = ref(null);
@@ -815,15 +842,15 @@ function handleEdit() {
show.value = true;
mode.value = "edit";
form.value = { ...activeModel.value };
- form.value.problems = []
+ form.value.problems = [];
}
function handleAddProblem() {
- form.value.problems.push({})
+ form.value.problems.push({});
}
function handleRemoveProblem(index) {
- form.value.problems.splice(index, 1)
+ form.value.problems.splice(index, 1);
}
async function handleSubmit() {
@@ -903,8 +930,6 @@ function handleSelectInvolveProblem(vals) {
};
});
}
-
-
diff --git a/src/views/work/Fav.vue b/src/views/work/Fav.vue
index d6a966a..755fcee 100644
--- a/src/views/work/Fav.vue
+++ b/src/views/work/Fav.vue
@@ -108,29 +108,27 @@