Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
commit
196dd3de92
|
@ -104,7 +104,7 @@
|
||||||
v-if="config.configType === 2"
|
v-if="config.configType === 2"
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
ref="multipleTable"
|
ref="multipleTable"
|
||||||
:data="$d && $d.GlobalAssessType"
|
:data="GlobalAssessType"
|
||||||
stripe
|
stripe
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
>
|
>
|
||||||
|
@ -165,7 +165,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import BaseModel from '@/components/BaseModel'
|
import BaseModel from '@/components/BaseModel'
|
||||||
import { getAssessType, setAssessType, setDictionaryBaseLineUse, setDictionaryFollowVisitUse, setSystemGlobalInfo, getSystemGlobalInfo } from '@/api/dictionary'
|
import { getCriterionDictionary, getAssessType, setAssessType, setDictionaryBaseLineUse, setDictionaryFollowVisitUse, setSystemGlobalInfo, getSystemGlobalInfo } from '@/api/dictionary'
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
data: {
|
data: {
|
||||||
|
@ -192,7 +192,8 @@ export default {
|
||||||
IsMustGlobalReading: false,
|
IsMustGlobalReading: false,
|
||||||
form: {
|
form: {
|
||||||
IsMustGlobalReading: false
|
IsMustGlobalReading: false
|
||||||
}
|
},
|
||||||
|
GlobalAssessType: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforecreate() {
|
beforecreate() {
|
||||||
|
@ -204,8 +205,17 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getList()
|
this.getList()
|
||||||
this.getSystemGlobalInfo()
|
this.getSystemGlobalInfo()
|
||||||
|
this.getCriterionDictionary()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
getCriterionDictionary() {
|
||||||
|
getCriterionDictionary({
|
||||||
|
ReadingCriterionId: this.criterionId,
|
||||||
|
DictionaryCode: 'GlobalAssessType'
|
||||||
|
}).then(res => {
|
||||||
|
this.GlobalAssessType = res.Result.GlobalAssessType
|
||||||
|
})
|
||||||
|
},
|
||||||
getSystemGlobalInfo() {
|
getSystemGlobalInfo() {
|
||||||
getSystemGlobalInfo({
|
getSystemGlobalInfo({
|
||||||
SystemCriterionId: this.criterionId
|
SystemCriterionId: this.criterionId
|
||||||
|
|
Loading…
Reference in New Issue