修改流程中心中英文切换

This commit is contained in:
qq787203167
2022-04-27 18:17:58 +08:00
parent bfcc8a67d9
commit 80464b97bf
7 changed files with 14 additions and 8 deletions
+3
View File
@@ -726,4 +726,7 @@ module.exports = {
taskDataConfirmation: 'Please select the data whose list confirmation status is accepted and task confirmation status is not initiated or rejected, and the regulatory engineer and certification engineer are not empty', taskDataConfirmation: 'Please select the data whose list confirmation status is accepted and task confirmation status is not initiated or rejected, and the regulatory engineer and certification engineer are not empty',
selectIssuer:'Select issuer', selectIssuer:'Select issuer',
sendBack:'send back', sendBack:'send back',
taskConfirmationProcess:'Task confirmation process',
notFinished:'not finished',
Finished:'Finished',
} }
+3
View File
@@ -731,4 +731,7 @@ module.exports = {
operationNode:'操作节点', operationNode:'操作节点',
selectIssuer:'选择下发人', selectIssuer:'选择下发人',
sendBack:'退回', sendBack:'退回',
taskConfirmationProcess:'任务确认流程',
notFinished:'未完成',
Finished:'已完成',
} }
@@ -15,7 +15,7 @@
{{prcTypeName[text]}} {{prcTypeName[text]}}
</span> </span>
<span slot="isEnd" slot-scope="text,record"> <span slot="isEnd" slot-scope="text,record">
{{text && text == 0 ? '未完成':'已完成'}} {{text && text == 0 ? $t('notFinished'):$t('Finished')}}
</span> </span>
<span slot="operation" slot-scope="record"> <span slot="operation" slot-scope="record">
<a @click="classAdd(record)" style="margin-right:8px">{{$t('See')}}</a> <a @click="classAdd(record)" style="margin-right:8px">{{$t('See')}}</a>
@@ -49,7 +49,7 @@
pageSize: 10, pageSize: 10,
selectedRowKeys: [], selectedRowKeys: [],
prcTypeName: { prcTypeName: {
1: '任务确认流程' 1: this.$t('taskConfirmationProcess')
}, },
columns: [ columns: [
{ {
@@ -15,7 +15,7 @@
{{prcTypeName[text]}} {{prcTypeName[text]}}
</span> </span>
<span slot="isEnd" slot-scope="text,record"> <span slot="isEnd" slot-scope="text,record">
{{text && text == 0 ? '未完成':'已完成'}} {{text && text == 0 ? $t('notFinished'):$t('Finished')}}
</span> </span>
<span slot="operation" slot-scope="record"> <span slot="operation" slot-scope="record">
<a @click="classAdd(record)" style="margin-right:8px">{{$t('See')}}</a> <a @click="classAdd(record)" style="margin-right:8px">{{$t('See')}}</a>
@@ -50,7 +50,7 @@
pageSize: 10, pageSize: 10,
selectedRowKeys: [], selectedRowKeys: [],
prcTypeName: { prcTypeName: {
1: '任务确认流程' 1: this.$t('taskConfirmationProcess')
}, },
columns: [ columns: [
{ {
@@ -15,7 +15,7 @@
{{prcTypeName[text]}} {{prcTypeName[text]}}
</span> </span>
<span slot="isEnd" slot-scope="text,record"> <span slot="isEnd" slot-scope="text,record">
{{text && text == 0 ? '未完成':'已完成'}} {{text && text == 0 ? $t('notFinished'):$t('Finished')}}
</span> </span>
<span slot="operation" slot-scope="record"> <span slot="operation" slot-scope="record">
<a @click="classAdd(record)" style="margin-right:8px">{{$t('See')}}</a> <a @click="classAdd(record)" style="margin-right:8px">{{$t('See')}}</a>
@@ -50,7 +50,7 @@
pageSize: 10, pageSize: 10,
selectedRowKeys: [], selectedRowKeys: [],
prcTypeName: { prcTypeName: {
1: '任务确认流程' 1: this.$t('taskConfirmationProcess')
}, },
columns: [ columns: [
{ {
@@ -47,7 +47,7 @@
pageSize: 10, pageSize: 10,
selectedRowKeys: [], selectedRowKeys: [],
prcTypeName: { prcTypeName: {
1: '任务确认流程' 1: this.$t('taskConfirmationProcess')
}, },
columns: [ columns: [
{ {
@@ -17,7 +17,7 @@
<a-icon type="export" :rotate="-90"/> <a-icon type="export" :rotate="-90"/>
{{$t('export')}} {{$t('export')}}
</div> </div>
<div class="operator-text"> <div class="operator-text" v-if="this.$route.query.studioEngineer == this.userInfo().id">
<ImportFile :url="url" :projectId="$route.query.id" :isTrue="true" :accept="'.xls'" <ImportFile :url="url" :projectId="$route.query.id" :isTrue="true" :accept="'.xls'"
@getList="getPersonnelList"/> @getList="getPersonnelList"/>
</div> </div>