|
@@ -68,6 +68,7 @@
|
|
|
<KeyCardPopup ref="keyCardPopup"></KeyCardPopup>
|
|
|
<DepartPopup ref="departPopup"></DepartPopup>
|
|
|
<DepartProvePopup ref="departProvePopup"></DepartProvePopup>
|
|
|
+ <ProjectRecordsForm ref="projectRecordsForm"></ProjectRecordsForm>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -76,7 +77,8 @@
|
|
|
import KeyCardPopup from '@/views/human/enrollment/registration/KeyCardPopup'
|
|
|
import DepartPopup from '@/views/human/depart/handover/DepartPopup'
|
|
|
import DepartProvePopup from '@/views/human/depart/handover/DepartProvePopup'
|
|
|
-// import notifyService from "@/api/notify/notifyService";
|
|
|
+ import ProjectRecordsForm from "@/views/cw/projectRecords/ProjectRecordsForm";
|
|
|
+ // import notifyService from "@/api/notify/notifyService";
|
|
|
import noticeService from '@/api/flowable/NoticeService'
|
|
|
import taskService from "@/api/flowable/taskService";
|
|
|
import pick from "lodash.pick";
|
|
@@ -94,6 +96,7 @@ export default {
|
|
|
KeyCardPopup,
|
|
|
DepartPopup,
|
|
|
DepartProvePopup,
|
|
|
+ ProjectRecordsForm
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -161,6 +164,13 @@ export default {
|
|
|
}
|
|
|
noticeService.stockUpdate(this.inputForm)
|
|
|
this.resetSearch()
|
|
|
+ }else if (row.taskName === '预开票项目未关联') {
|
|
|
+ this.$refs.projectRecordsForm.init('view',row.defId)
|
|
|
+ this.inputForm = {
|
|
|
+ id: row.id
|
|
|
+ }
|
|
|
+ noticeService.stockUpdate(this.inputForm)
|
|
|
+ this.resetSearch()
|
|
|
}else {
|
|
|
this.inputForm = {
|
|
|
taskId: '',
|