mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-23 21:36:37 +08:00
Compare commits
2 Commits
193fcece8b
...
7684a5333e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7684a5333e | ||
|
|
e495cdc9a8 |
@ -44,7 +44,8 @@ export const messages = {
|
||||
selectNextHandler: 'Please select next handler',
|
||||
submitSuccess: 'Submit successfully',
|
||||
submitFailed: 'Submit failed',
|
||||
administrator: 'Administrator'
|
||||
administrator: 'Administrator',
|
||||
end: 'End'
|
||||
}
|
||||
},
|
||||
zh: {
|
||||
@ -92,7 +93,8 @@ export const messages = {
|
||||
selectNextHandler: '请选择下一节点处理人',
|
||||
submitSuccess: '提交成功',
|
||||
submitFailed: '提交失败',
|
||||
administrator: '管理员'
|
||||
administrator: '管理员',
|
||||
end: '结束'
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -138,6 +138,8 @@
|
||||
<el-option v-if="itemReleaseDetailInfo.nextAudit.backIndex" value="1400"
|
||||
:label="$t('itemReleaseDetail.returnToSubmitter')" />
|
||||
<el-option value="1300" :label="$t('itemReleaseDetail.transfer')" />
|
||||
<!--&& userId == itemReleaseDetailInfo.pools.createUserId-->
|
||||
<el-option v-if="itemReleaseDetailInfo.nextAudit.exit " value="1500" :label="$t('itemReleaseDetail.end')" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('itemReleaseDetail.workOrderDescription')">
|
||||
@ -189,6 +191,7 @@ import {
|
||||
listRunWorkflowImage,
|
||||
queryNextDealUser
|
||||
} from '@/api/work/itemReleaseDetailApi'
|
||||
import {getUserId} from '@/api/user/userApi'
|
||||
|
||||
export default {
|
||||
name: 'ItemReleaseDetailList',
|
||||
@ -198,6 +201,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
communityId: '',
|
||||
userId:'',
|
||||
itemReleaseDetailInfo: {
|
||||
irId: '',
|
||||
flowId: '',
|
||||
@ -205,6 +209,7 @@ export default {
|
||||
resNames: [],
|
||||
comments: [],
|
||||
action: '',
|
||||
|
||||
audit: {
|
||||
auditCode: '1100',
|
||||
auditMessage: '',
|
||||
@ -220,6 +225,7 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.communityId = getCommunityId()
|
||||
this.userId = getUserId()
|
||||
this.initData()
|
||||
},
|
||||
methods: {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user