|
@@ -19,7 +19,7 @@
|
|
@change="doubleEnableChange"
|
|
@change="doubleEnableChange"
|
|
>
|
|
>
|
|
<el-radio :label="false">单评</el-radio>
|
|
<el-radio :label="false">单评</el-radio>
|
|
- <el-radio :label="true">双评</el-radio>
|
|
|
|
|
|
+ <el-radio v-if="openDoubleMarking" :label="true">双评</el-radio>
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<br />
|
|
<br />
|
|
@@ -211,6 +211,7 @@
|
|
import { deepCopy } from "../../../../plugins/utils";
|
|
import { deepCopy } from "../../../../plugins/utils";
|
|
import { organizationList } from "../../../base/api";
|
|
import { organizationList } from "../../../base/api";
|
|
import { SCORE_POLICY_TYPE } from "@/constants/enumerate";
|
|
import { SCORE_POLICY_TYPE } from "@/constants/enumerate";
|
|
|
|
+import { mapState } from "vuex";
|
|
import { omit } from "lodash";
|
|
import { omit } from "lodash";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -321,6 +322,7 @@ export default {
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
|
|
+ ...mapState("markParam", ["openDoubleMarking"]),
|
|
isEdit() {
|
|
isEdit() {
|
|
return !this.instance.isNew;
|
|
return !this.instance.isNew;
|
|
},
|
|
},
|