Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
d243d3cd11
|
@ -396,6 +396,12 @@ export default {
|
||||||
return false
|
return false
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
UserTypeList: {
|
||||||
|
type: Array,
|
||||||
|
default() {
|
||||||
|
return []
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -407,13 +413,6 @@ export default {
|
||||||
total: 0,
|
total: 0,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
|
||||||
UserTypeList() {
|
|
||||||
return this.$d.UserType.filter(
|
|
||||||
(item) => ![7, 31, 32, 21, 26, 27].includes(item.value)
|
|
||||||
)
|
|
||||||
},
|
|
||||||
},
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.trialId = this.$route.query.trialId
|
this.trialId = this.$route.query.trialId
|
||||||
this.getList()
|
this.getList()
|
||||||
|
|
|
@ -358,6 +358,7 @@
|
||||||
@getList="getList"
|
@getList="getList"
|
||||||
:is-distinguish-criteria="isDistinguishCriteria"
|
:is-distinguish-criteria="isDistinguishCriteria"
|
||||||
:isShow="isBtnShow"
|
:isShow="isBtnShow"
|
||||||
|
:UserTypeList="UserTypeList"
|
||||||
@close="addVisible = false"
|
@close="addVisible = false"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -423,7 +424,7 @@ export default {
|
||||||
computed: {
|
computed: {
|
||||||
UserTypeList() {
|
UserTypeList() {
|
||||||
return this.$d.UserType.filter(
|
return this.$d.UserType.filter(
|
||||||
(item) => ![7, 8, 31, 32, 21, 26, 27].includes(item.value)
|
(item) => ![4, 7, 8, 31, 32, 21, 26, 27].includes(item.value)
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -522,7 +522,7 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
refreshSysData(){
|
refreshSysData(){
|
||||||
--this.tabList.SysWaitSignDocCount
|
this.tabList.SysWaitSignDocCount = this.tabList.SysWaitSignDocCount - 1
|
||||||
store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
|
store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
|
||||||
},
|
},
|
||||||
getUserTobeDoneRecord() {
|
getUserTobeDoneRecord() {
|
||||||
|
|
Loading…
Reference in New Issue