generated from bcgov/vue-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from bcgov/report-changes-Viet
Report changes VIET - update Notification form upload/summary declaration, redesign change history table
- Loading branch information
Showing
7 changed files
with
259 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,145 +1,82 @@ | ||
<template> | ||
<v-container> | ||
<div class="row pt-4 justify-center text-center"> | ||
<span class="text-h5">Child Care Operating Funding Program - {{ formattedProgramYear }}</span> | ||
<div class="row py-8 justify-center text-center"> | ||
<span class="text-h4">Change Notification Form</span> | ||
</div> | ||
<br> | ||
<v-form ref="isValidForm" value="false" v-model="isValidForm"> | ||
<v-container> | ||
<v-row class="justify-space-around "> | ||
<v-row class="justify-space-around"> | ||
<v-col class="col-lg-7 "> | ||
<v-row> | ||
<v-col class="col-lg-12 "> | ||
<p class="px-2 text--primary"> | ||
<strong>For all changes other than "Adding a new facility(s) to your Organization, please download the change notification form by clicking on the button below."</strong> | ||
</p> | ||
<v-col class="col-lg-12"> | ||
<a href="https://www2.gov.bc.ca/assets/gov/family-and-social-supports/child-care/cf1345_cc_operating_program_funding_agreement_change_notification.pdf" target="_blank"> | ||
<v-btn dark class="blueButton mb-10 ml-2" > | ||
Download a Change Notification Form | ||
<v-btn dark class="blueButton mb-10" x-large> | ||
<strong>Download a Change Notification Form</strong> | ||
</v-btn> | ||
</a> | ||
</v-col> | ||
</v-row> | ||
<v-row> | ||
<v-col class="col-lg-12 "> | ||
<p class="px-2 text--primary"> | ||
<strong>Please upload the Change Notification Form in the Dropbox below once you have filled out the form.</strong> | ||
<v-row class="mb-12"> | ||
<v-col class="col-lg-12"> | ||
<p class="text-h5 mb-1"> | ||
<strong>Upload the completed Change Notification Form below.</strong> | ||
</p> | ||
<v-skeleton-loader v-show="isLoading" max-height="375px" :loading="true" type="image"></v-skeleton-loader> | ||
<ChangeFileUpload | ||
v-show="!isLoading" | ||
ref="childRef" | ||
:changeType="changeTypeForm" | ||
noDataDefaultText="Upload Change Notification Form (Required)" | ||
@fileChange="updateChangeNotificationFormCompleteStatus($event)" | ||
></ChangeFileUpload> | ||
</v-col> | ||
</v-row> | ||
<v-row> | ||
<v-col class="col-lg-12 "> | ||
<p class="px-2 text--primary"> | ||
<strong>Please upload your Community Care License and other supporting documents for your requested changes in the Dropbox below.</strong> | ||
<v-row class="mb-12"> | ||
<v-col class="col-lg-12"> | ||
<p class="text-h5 mb-1"> | ||
<strong>Upload supporting documents for your requested changes.</strong> | ||
</p> | ||
<v-skeleton-loader v-show="isLoading" max-height="375px" :loading="true" type="image"></v-skeleton-loader> | ||
<ChangeFileUpload | ||
v-show="!isLoading" | ||
ref="childRef2" | ||
:changeType="changeTypeSupportingDoc" | ||
noDataDefaultText="Upload supporting documents" | ||
@fileChange="updateSupportingDocumentCompleteStatus(($event))" | ||
></ChangeFileUpload> | ||
</v-col> | ||
</v-row> | ||
</v-col> | ||
<v-col class="col-lg-4 boarder"> | ||
<v-row> | ||
<v-col class="col-lg-12 "> | ||
<p class="px-2 text--primary"> | ||
<strong>Supporting Documents</strong> | ||
</p> | ||
<br> | ||
<v-row class="pa-6 pt-2 text-body-2"> | ||
<v-list-item-title>Legal or organization name change</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item>Proof of name change document | ||
<br> (e.g. marriage certificate, resumption of surname certificate, BC Corporate Registry "Notice of Name Change") | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title>Group organization mailing address change</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item>CCALA Licence | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title>Group facility address change</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item> <a href="https://www2.gov.bc.ca/assets/gov/family-and-social-supports/child-care/child-care-operating-funding/cf1321_ccof_group_application.pdf" target="_blank"> Group application form </a> | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title>Family facility mailing address change</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item> <a href="https://www2.gov.bc.ca/assets/gov/family-and-social-supports/child-care/child-care-operating-funding/cf1320_ccof_family_application.pdf" target="_blank"> Family application form </a> | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title>Family name change</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item>CCALA Licence | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title>License change</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item>CCALA Licence | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title>New facility license</v-list-item-title> | ||
<v-list> | ||
<ul> | ||
<li> | ||
<v-list-item>Family or group CCOF application form | ||
</v-list-item> | ||
</li> | ||
</ul> | ||
</v-list> | ||
|
||
<v-list-item-title style="white-space: normal;"> For more information <a href="https://www2.gov.bc.ca/gov/content/family-social-supports/caring-for-young-children/running-daycare-preschool/child-care-operating-funding">visit the Child Care Operating Fund website</a></v-list-item-title> | ||
<v-list> | ||
<v-list-item> Greater Victoria area: <a href="tel:+2503656501"> +1 250 365-6501</a> | ||
</v-list-item> | ||
<v-list-item> Outside Greater Victoria (toll free): <a href="tel:+18883386622">1 888 338-6622</a> | ||
</v-list-item> | ||
<v-list-item> Email: <a href="mailto:[email protected]"> [email protected]</a> | ||
</v-list-item> | ||
</v-list> | ||
</v-row> | ||
</v-col> | ||
</v-row> | ||
<v-col class="col-lg-4 col-sm-12 boarder pl-10" > | ||
<p class="text--primary font-weight-bold mb-10"> | ||
Supporting Documents | ||
</p> | ||
<p> | ||
The Change Notification Form will specify what supporting documents to upload. | ||
</p> | ||
<p class="mt-10"> | ||
These could include: | ||
<ul> | ||
<li class="pb-0 font-italic"> | ||
Community Care and Assisted Living Act License | ||
</li> | ||
<li> | ||
Proof of name change document | ||
<br> | ||
(e.g. marriage certificate, resumption of surname certificate, BC Corporate Registry "Notice of Name Change") | ||
</li> | ||
</ul> | ||
</p> | ||
<p class="mt-10"> | ||
For more information | ||
<a href="https://www2.gov.bc.ca/gov/content/family-social-supports/caring-for-young-children/running-daycare-preschool/child-care-operating-funding" class="text-decoration-underline"> visit the Child Care Operating Funding website</a> | ||
</p> | ||
<p class="mt-10"> | ||
Greater Victoria area: 250 356-6501 | ||
<br> | ||
Outside Greater Victoria (toll free): 1 888 338-6622 (Option 2) | ||
</p> | ||
</v-col> | ||
</v-row> | ||
</v-container> | ||
|
@@ -178,6 +115,7 @@ export default { | |
async mounted(){ | ||
if (this.$route.params?.urlGuid) { | ||
this.isLoading = true; | ||
await this.getChangeRequest(this.$route.params?.changeRecGuid); | ||
await this.loadChangeRequestDocs(this.$route.params.urlGuid); | ||
this.updateChangeNotificationFormCompleteStatus(); | ||
} | ||
|
@@ -203,7 +141,7 @@ export default { | |
methods: { | ||
...mapMutations('app', ['setCcfriOptInComplete', 'forceNavBarRefresh']), | ||
...mapMutations('navBar', ['forceNavBarRefresh']), | ||
...mapActions('reportChanges', ['createChangeRequest','loadChangeRequest', 'loadChangeRequestDocs', 'saveUploadedDocuments']), | ||
...mapActions('reportChanges', ['createChangeRequest','loadChangeRequest', 'loadChangeRequestDocs', 'saveUploadedDocuments', 'getChangeRequest']), | ||
...mapMutations('reportChanges', ['setUploadedDocument']), | ||
previous() { | ||
this.$router.push(PATHS.ROOT.CHANGE_LANDING); | ||
|
Oops, something went wrong.