|
@@ -78,6 +78,8 @@
|
|
:rfmeaType="'D'"
|
|
:rfmeaType="'D'"
|
|
@close='submitApprovalVisible = false'
|
|
@close='submitApprovalVisible = false'
|
|
/>
|
|
/>
|
|
|
|
+ <!-- 变更内容查看 -->
|
|
|
|
+ <change-content-modal ref="changeContentModal" />
|
|
</div>
|
|
</div>
|
|
</a-config-provider>
|
|
</a-config-provider>
|
|
</template>
|
|
</template>
|
|
@@ -89,13 +91,15 @@ import FooterToolBar from '@/components/FooterToolbar';
|
|
import { getUrlParam } from "@/common/common";
|
|
import { getUrlParam } from "@/common/common";
|
|
import utils from '@/utils/urlParamUtil';
|
|
import utils from '@/utils/urlParamUtil';
|
|
import SubmitApproval from '@/components/SubmitApprovalModal';
|
|
import SubmitApproval from '@/components/SubmitApprovalModal';
|
|
|
|
+import ChangeContentModal from "@/components/ChangeManagement/changeManagement";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'App',
|
|
name: 'App',
|
|
components: {
|
|
components: {
|
|
feHeader,
|
|
feHeader,
|
|
FooterToolBar,
|
|
FooterToolBar,
|
|
- SubmitApproval
|
|
|
|
|
|
+ SubmitApproval,
|
|
|
|
+ ChangeContentModal
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -519,6 +523,8 @@ export default {
|
|
_that.$message.warning(_that.$t('dvp.full.vehicle.dvp.dvp-frequency') + _that.$t('dvp.check-data-complete'));
|
|
_that.$message.warning(_that.$t('dvp.full.vehicle.dvp.dvp-frequency') + _that.$t('dvp.check-data-complete'));
|
|
} else if (changeFlag) {
|
|
} else if (changeFlag) {
|
|
_that.$message.warning(_that.$t('dvp.check-change-data-complete'));
|
|
_that.$message.warning(_that.$t('dvp.check-change-data-complete'));
|
|
|
|
+ // 变更管理未完成--变更管理处理弹窗
|
|
|
|
+ _that.$refs.changeContentModal.visible = true;
|
|
} else {
|
|
} else {
|
|
_that.$message.warning(_that.$t('dvp.check-data-complete'));
|
|
_that.$message.warning(_that.$t('dvp.check-data-complete'));
|
|
}
|
|
}
|