任务清单增加催办功能

This commit is contained in:
zyx.net
2022-11-02 10:46:32 +08:00
parent c145f18ad1
commit 7ae9f2de69
@@ -15,12 +15,13 @@
<div class="box-title-text">
<div class="title-text">
<span class="title-text-text"
:title="$t('CertificationProgress')">{{$t('CertificationProgress')}}</span>
:title="$t('taskType')">{{$t('taskType')}}</span>
</div>
<!-- mode="multiple"-->
<a-form-model-item class="itemModel" prop="type">
<a-select v-model="formInline.type"
class='box-input'
:placeholder="$t('PleaseSelect') + $t('taskType')"
:getPopupContainer="triggerNode=> triggerNode.parentNode"
allowClear>
<a-select-option v-for="(item, key) in cuibanList" :key="key" :value="item.value">
@@ -51,7 +52,7 @@ export default {
type: [
{
required: true,
message: this.$t('PleaseSelect') + this.$t('CertificationProgress'),
message: this.$t('PleaseSelect') + this.$t('taskType'),
trigger: 'change'
}
]
@@ -118,7 +119,7 @@ export default {
})
ProjectTaskUrgVo = {
projectLawsInventoryIds: projectLawsInventoryId.join(','),
type: this.formInline.type
type: this.formInline.type,
}
this.confirmLoading = true
postAction('/project/projectLawsInventoryEO/taskUrg', ProjectTaskUrgVo).then((res) => {