|
|
@@ -38,7 +38,6 @@ import Text from '@/components/basic/Text.vue';
|
|
|
import CheckBox from '@/components/form/CheckBox.vue';
|
|
|
import Tag from '@/components/display/Tag.vue';
|
|
|
import Alert from '@/components/feedback/Alert.vue';
|
|
|
-import { onMounted } from 'vue';
|
|
|
|
|
|
type OpinionField = 'ichUnit' | 'county' | 'district' | 'province';
|
|
|
type PointsField = 'unitPoints' | 'countyPoints' | 'districtPoints' | 'provincePoints';
|
|
|
@@ -47,13 +46,6 @@ const props = defineProps<{
|
|
|
currentForm: SelfAssessmentDetail;
|
|
|
}>();
|
|
|
|
|
|
-onMounted(() => {
|
|
|
- setTimeout(() => {
|
|
|
- props.currentForm.rejectType = 2;
|
|
|
- props.currentForm.rejectReason = '测试退回';
|
|
|
- }, 200);
|
|
|
-});
|
|
|
-
|
|
|
const opinionOptions = [
|
|
|
{ label: '优秀', value: 1 },
|
|
|
{ label: '合格', value: 2 },
|