修改待办流程批量任务确认,批量符合性确认 --> 增加批量二字,提醒用户
This commit is contained in:
@@ -1774,4 +1774,6 @@ module.exports = {
|
|||||||
theVerificationComplianceProcessCannotBeEmpty:'The delivery type of the verification compliance process cannot be empty',
|
theVerificationComplianceProcessCannotBeEmpty:'The delivery type of the verification compliance process cannot be empty',
|
||||||
deadlineForConfirmationDesignComplianceResponsibility:'Deadline for Confirmation of Design Compliance Responsibility',
|
deadlineForConfirmationDesignComplianceResponsibility:'Deadline for Confirmation of Design Compliance Responsibility',
|
||||||
deadlineForVerifyingComplianceResponsibilityConfirmation:'Deadline for verifying compliance responsibility confirmation',
|
deadlineForVerifyingComplianceResponsibilityConfirmation:'Deadline for verifying compliance responsibility confirmation',
|
||||||
|
batchTaskResponsibilityConfirmation:'Batch task responsibility confirmation',
|
||||||
|
batchComplianceConfirmation:'Batch compliance confirmation',
|
||||||
}
|
}
|
||||||
@@ -1876,4 +1876,6 @@ module.exports = {
|
|||||||
theVerificationComplianceProcessCannotBeEmpty:'验证符合性流程的交付物类型不能为空',
|
theVerificationComplianceProcessCannotBeEmpty:'验证符合性流程的交付物类型不能为空',
|
||||||
deadlineForConfirmationDesignComplianceResponsibility:'设计符合性责任确认截止日期',
|
deadlineForConfirmationDesignComplianceResponsibility:'设计符合性责任确认截止日期',
|
||||||
deadlineForVerifyingComplianceResponsibilityConfirmation:'验证符合性责任确认截止日期',
|
deadlineForVerifyingComplianceResponsibilityConfirmation:'验证符合性责任确认截止日期',
|
||||||
|
batchTaskResponsibilityConfirmation:'批量任务责任确认',
|
||||||
|
batchComplianceConfirmation:'批量符合性确认',
|
||||||
}
|
}
|
||||||
@@ -175,7 +175,7 @@
|
|||||||
projectNameId: row.projectNameId,
|
projectNameId: row.projectNameId,
|
||||||
primaryKeyId: row.primaryKeyId,
|
primaryKeyId: row.primaryKeyId,
|
||||||
}
|
}
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceProcess'))
|
||||||
} else if (row.flowType == '3') {
|
} else if (row.flowType == '3') {
|
||||||
row.taskId = row.taskId + ''
|
row.taskId = row.taskId + ''
|
||||||
if (row.taskId.length > 30) {
|
if (row.taskId.length > 30) {
|
||||||
@@ -238,7 +238,7 @@
|
|||||||
projectNameId: row.projectNameId,
|
projectNameId: row.projectNameId,
|
||||||
primaryKeyId: row.primaryKeyId,
|
primaryKeyId: row.primaryKeyId,
|
||||||
}
|
}
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('verificationComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('validationComplianceProcess'))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -339,7 +339,7 @@
|
|||||||
:title="text">
|
:title="text">
|
||||||
{{text}}
|
{{text}}
|
||||||
</span>
|
</span>
|
||||||
<a v-else @click="designFlowStatusClick(result,$t('designComplianceReview'))"
|
<a v-else @click="designFlowStatusClick(result,$t('designComplianceProcess'))"
|
||||||
:title="text">{{text}}</a>
|
:title="text">{{text}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="verifyFlowStatusName" slot-scope="text,result">
|
<span slot="verifyFlowStatusName" slot-scope="text,result">
|
||||||
@@ -348,7 +348,7 @@
|
|||||||
:title="text">
|
:title="text">
|
||||||
{{text}}
|
{{text}}
|
||||||
</span>
|
</span>
|
||||||
<a v-else @click="designFlowStatusClick(result,$t('verificationComplianceReview'))"
|
<a v-else @click="designFlowStatusClick(result,$t('validationComplianceProcess'))"
|
||||||
:title="text">{{text}}</a>
|
:title="text">{{text}}</a>
|
||||||
</span>
|
</span>
|
||||||
</a-table>
|
</a-table>
|
||||||
|
|||||||
@@ -20,7 +20,8 @@
|
|||||||
@click="viewClick(record)">{{$t('view')}}</a>
|
@click="viewClick(record)">{{$t('view')}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="RelatedItems" slot-scope="text,record">
|
<span slot="RelatedItems" slot-scope="text,record">
|
||||||
<a @click="RelatedItemsClick(record)" :title="text">{{text}}</a>
|
<!-- @click="RelatedItemsClick(record)"-->
|
||||||
|
<span :title="text">{{text}}</span>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text">
|
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text">
|
||||||
@@ -49,10 +50,11 @@
|
|||||||
import { getAction, postAction, deleteAction } from '@/api/manage'
|
import { getAction, postAction, deleteAction } from '@/api/manage'
|
||||||
import { ResizeHeader, ResizeColumnProvide } from '@/mixins/header'
|
import { ResizeHeader, ResizeColumnProvide } from '@/mixins/header'
|
||||||
import designCompliance from './designCompliance'
|
import designCompliance from './designCompliance'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SentList',
|
name: 'SentList',
|
||||||
mixins:[ResizeHeader, ResizeColumnProvide],
|
mixins: [ResizeHeader, ResizeColumnProvide],
|
||||||
components:{
|
components: {
|
||||||
designCompliance
|
designCompliance
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@@ -227,7 +229,7 @@
|
|||||||
if (row.taskId.length > 30) {
|
if (row.taskId.length > 30) {
|
||||||
row.taskId = ''
|
row.taskId = ''
|
||||||
}
|
}
|
||||||
if (row.taskDefinitionKey == 'fqlc'){
|
if (row.taskDefinitionKey == 'fqlc') {
|
||||||
row.taskId = ''
|
row.taskId = ''
|
||||||
}
|
}
|
||||||
query = {
|
query = {
|
||||||
@@ -259,7 +261,7 @@
|
|||||||
// query: query
|
// query: query
|
||||||
// })
|
// })
|
||||||
// window.open(newUrl.href, '_blank')
|
// window.open(newUrl.href, '_blank')
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceProcess'))
|
||||||
} else if (row.flowType == '3') {
|
} else if (row.flowType == '3') {
|
||||||
row.taskId = row.taskId + ''
|
row.taskId = row.taskId + ''
|
||||||
if (row.taskId.length > 30) {
|
if (row.taskId.length > 30) {
|
||||||
@@ -295,7 +297,7 @@
|
|||||||
if (row.taskId.length > 30) {
|
if (row.taskId.length > 30) {
|
||||||
row.taskId = ''
|
row.taskId = ''
|
||||||
}
|
}
|
||||||
if (row.taskDefinitionKey == 'fqlc'){
|
if (row.taskDefinitionKey == 'fqlc') {
|
||||||
row.taskId = ''
|
row.taskId = ''
|
||||||
}
|
}
|
||||||
query = {
|
query = {
|
||||||
@@ -322,7 +324,7 @@
|
|||||||
primaryKeyId: row.primaryKeyId,
|
primaryKeyId: row.primaryKeyId,
|
||||||
PersonChargeFeedback: row.personChargeFeedback
|
PersonChargeFeedback: row.personChargeFeedback
|
||||||
}
|
}
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('verificationComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('validationComplianceProcess'))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
searchQuery(value) {
|
searchQuery(value) {
|
||||||
@@ -391,6 +393,7 @@
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
@import '~@assets/less/common.less';
|
@import '~@assets/less/common.less';
|
||||||
|
|
||||||
.page {
|
.page {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|||||||
@@ -22,7 +22,8 @@
|
|||||||
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="RelatedItems" slot-scope="text,record">
|
<span slot="RelatedItems" slot-scope="text,record">
|
||||||
<a @click="RelatedItemsClick(record)" :title="text">{{text}}</a>
|
<!-- @click="RelatedItemsClick(record)"-->
|
||||||
|
<span :title="text">{{text}}</span>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text">
|
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text">
|
||||||
@@ -324,7 +325,7 @@
|
|||||||
// query: query
|
// query: query
|
||||||
// })
|
// })
|
||||||
// window.open(newUrl.href, '_blank')
|
// window.open(newUrl.href, '_blank')
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceProcess'))
|
||||||
|
|
||||||
} else if (row.flowType == '3') {
|
} else if (row.flowType == '3') {
|
||||||
row.taskId = row.taskId + ''
|
row.taskId = row.taskId + ''
|
||||||
@@ -400,7 +401,7 @@
|
|||||||
// query: query
|
// query: query
|
||||||
// })
|
// })
|
||||||
// window.open(newUrl.href, '_blank')
|
// window.open(newUrl.href, '_blank')
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('verificationComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('validationComplianceProcess'))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
searchQuery(value) {
|
searchQuery(value) {
|
||||||
|
|||||||
+2
-1
@@ -101,7 +101,8 @@
|
|||||||
projectInformationList: [
|
projectInformationList: [
|
||||||
{
|
{
|
||||||
title: this.$t('entryName'),
|
title: this.$t('entryName'),
|
||||||
value: 'projectName'
|
value: 'projectName',
|
||||||
|
projectVersion:'projectVersion',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('regulationNo'),
|
title: this.$t('regulationNo'),
|
||||||
|
|||||||
@@ -20,9 +20,10 @@
|
|||||||
@click="viewClick(record)">{{$t('view')}}</a>
|
@click="viewClick(record)">{{$t('view')}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="RelatedItems" slot-scope="text,record">
|
<span slot="RelatedItems" slot-scope="text,record">
|
||||||
<a @click="RelatedItemsClick(record)" :title="text">
|
<!-- @click="RelatedItemsClick(record)"-->
|
||||||
|
<span :title="text">
|
||||||
{{text}}
|
{{text}}
|
||||||
</a>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text">
|
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text">
|
||||||
@@ -249,7 +250,7 @@
|
|||||||
primaryKeyId: row.primaryKeyId,
|
primaryKeyId: row.primaryKeyId,
|
||||||
PersonChargeFeedback: row.personChargeFeedback
|
PersonChargeFeedback: row.personChargeFeedback
|
||||||
}
|
}
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('designComplianceProcess'))
|
||||||
}else if(row.flowType == '3'){
|
}else if(row.flowType == '3'){
|
||||||
row.taskId = row.taskId + ''
|
row.taskId = row.taskId + ''
|
||||||
if (row.taskId.length > 30) {
|
if (row.taskId.length > 30) {
|
||||||
@@ -316,7 +317,7 @@
|
|||||||
primaryKeyId: row.primaryKeyId,
|
primaryKeyId: row.primaryKeyId,
|
||||||
PersonChargeFeedback: row.personChargeFeedback
|
PersonChargeFeedback: row.personChargeFeedback
|
||||||
}
|
}
|
||||||
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('verificationComplianceReview'))
|
this.$refs.designComplianceRef.getList(JSON.parse(JSON.stringify(query)), this.$t('validationComplianceProcess'))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
searchQuery(value) {
|
searchQuery(value) {
|
||||||
|
|||||||
+20
-1
@@ -17,6 +17,11 @@
|
|||||||
@click="standardClick(queryForm)"
|
@click="standardClick(queryForm)"
|
||||||
v-else-if="item.type == '4'" :title="queryForm[item.value]"
|
v-else-if="item.type == '4'" :title="queryForm[item.value]"
|
||||||
>{{queryForm[item.value]}}</span>
|
>{{queryForm[item.value]}}</span>
|
||||||
|
<span class="text-field-right text-field-right-url"
|
||||||
|
@click="RelatedItemsClick(queryForm)"
|
||||||
|
v-else-if="item.projectVersion == 'projectVersion'"
|
||||||
|
:title="queryForm[item.value]+queryForm[item.projectVersion]"
|
||||||
|
>{{queryForm[item.value]+'-'+queryForm[item.projectVersion]}}</span>
|
||||||
<span class="text-field-right" v-else :title="queryForm[item.value]"
|
<span class="text-field-right" v-else :title="queryForm[item.value]"
|
||||||
>{{queryForm[item.value]}}</span>
|
>{{queryForm[item.value]}}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -93,7 +98,21 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
}
|
},
|
||||||
|
|
||||||
|
RelatedItemsClick(item) {
|
||||||
|
let newUrl = this.$router.resolve({
|
||||||
|
path: '/ProjectDetails',
|
||||||
|
query: {
|
||||||
|
id: item.projectLibraryId,
|
||||||
|
projectName: item.projectName+'-'+item.projectVersion,
|
||||||
|
projectNameId: item.projectNameId,
|
||||||
|
targetMarket: item.targetMarket,
|
||||||
|
studioEngineer: item.studioEngineer
|
||||||
|
}
|
||||||
|
})
|
||||||
|
window.open(newUrl.href, '_blank')
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -81,12 +81,12 @@
|
|||||||
<div @click="TaskresponsibilityrecognitionClick"
|
<div @click="TaskresponsibilityrecognitionClick"
|
||||||
class="operator-text">
|
class="operator-text">
|
||||||
<a-icon type="form"/>
|
<a-icon type="form"/>
|
||||||
{{$t('Taskresponsibilityrecognition')}}
|
{{$t('batchTaskResponsibilityConfirmation')}}
|
||||||
</div>
|
</div>
|
||||||
<div @click="complianceConfirmationClick"
|
<div @click="complianceConfirmationClick"
|
||||||
class="operator-text">
|
class="operator-text">
|
||||||
<a-icon type="form"/>
|
<a-icon type="form"/>
|
||||||
{{$t('complianceConfirmation')}}
|
{{$t('batchComplianceConfirmation')}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a-tabs v-model="tabActive" @change="callback">
|
<a-tabs v-model="tabActive" @change="callback">
|
||||||
|
|||||||
Reference in New Issue
Block a user