待办中心增加截止时间,任务列表,任务节点的排序

This commit is contained in:
范强强
2023-04-13 14:08:31 +08:00
parent e4e133e5c3
commit 59cd35f342
7 changed files with 16 additions and 11 deletions
+1 -1
View File
@@ -1696,7 +1696,7 @@ module.exports = {
taskNodeMismatch:'Task Node Mismatch', taskNodeMismatch:'Task Node Mismatch',
ifNot:'If not, fill in "none" or "not involved"', ifNot:'If not, fill in "none" or "not involved"',
designComplianceProcess:'Design Compliance Process', designComplianceProcess:'Design Compliance Process',
validationComplianceProcess:'Validation Compliance Process', validationComplianceProcess:'Verify Compliance Process',
onlyDataInTheReminderProcessBanBeProcessed:'Only data in the reminder process can be processed', onlyDataInTheReminderProcessBanBeProcessed:'Only data in the reminder process can be processed',
expeditionProcess:'Expedition Process', expeditionProcess:'Expedition Process',
addfunction:'Add function', addfunction:'Add function',
@@ -1694,6 +1694,7 @@
::v-deep .ant-table-thead > tr > th[colspan]:not([colspan='1']){ ::v-deep .ant-table-thead > tr > th[colspan]:not([colspan='1']){
text-align: left; text-align: left;
padding-left: 16px!important; padding-left: 16px!important;
border-right: 1px solid #e8e8e8;
} }
</style> </style>
<style lang="less"> <style lang="less">
@@ -3213,6 +3213,7 @@
::v-deep .ant-table-thead > tr > th[colspan]:not([colspan='1']) { ::v-deep .ant-table-thead > tr > th[colspan]:not([colspan='1']) {
text-align: left; text-align: left;
padding-left: 16px !important; padding-left: 16px !important;
border-right: 1px solid #e8e8e8;
} }
.operator-text-title:last-child { .operator-text-title:last-child {
@@ -24,9 +24,10 @@
<span :title="text">{{text}}</span> <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"> <!-- @click="standardInformationClick(record)" -->
<span v-if="text && text != '--'" :title="text">
{{text}} {{text}}
</a> </span>
<span v-else>--</span> <span v-else>--</span>
</span> </span>
</a-table> </a-table>
@@ -26,9 +26,10 @@
<span :title="text">{{text}}</span> <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"> <!-- @click="standardInformationClick(record)"-->
<span v-if="text && text != '--'" :title="text">
{{text}} {{text}}
</a> </span>
<span v-else>--</span> <span v-else>--</span>
</span> </span>
<span slot="taskStatus" slot-scope="text,record"> <span slot="taskStatus" slot-scope="text,record">
@@ -268,7 +269,7 @@
targetMarket: row.targetMarket, targetMarket: row.targetMarket,
studioEngineer: row.studioEngineer, studioEngineer: row.studioEngineer,
type: '102', type: '102',
roleOpen:'1', roleOpen: '1'
} }
}) })
window.open(newUrl.href, '_blank') window.open(newUrl.href, '_blank')
@@ -281,7 +282,7 @@
projectNameId: row.projectNameId, projectNameId: row.projectNameId,
targetMarket: row.targetMarket, targetMarket: row.targetMarket,
studioEngineer: row.studioEngineer, studioEngineer: row.studioEngineer,
type: '106', type: '106'
} }
}) })
window.open(newUrl.href, '_blank') window.open(newUrl.href, '_blank')
@@ -26,9 +26,10 @@
</span> </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"> <!-- @click="standardInformationClick(record)"-->
<span v-if="text && text != '--'" :title="text">
{{text}} {{text}}
</a> </span>
<span v-else>--</span> <span v-else>--</span>
</span> </span>
</a-table> </a-table>
@@ -133,7 +133,7 @@
value: '10' value: '10'
}, },
{ {
name: this.$t('designConformanceVerification'), name: this.$t('designComplianceProcess'),
value: '2' value: '2'
}, },
{ {
@@ -141,7 +141,7 @@
value: '21' value: '21'
}, },
{ {
name: this.$t('verifyConformanceConfirmation'), name: this.$t('validationComplianceProcess'),
value: '4' value: '4'
} }
], ],