Browse Source

reactor:中国政府网发布特殊字段调整;

zhangchong 7 months ago
parent
commit
0afecc622f

+ 1 - 1
src/views/business/publish/component/Order-publish-edit.vue

@@ -173,7 +173,7 @@ const openDialog = async (row: any) => {
 };
 // 中国政府网特殊字段
 const isZGZFW = computed(() => {
-	return state.orderDetail.receiveProvinceNo.includes('ZGZFW');
+	return state.orderDetail.receiveProvinceNo?.includes('ZGZFW');
 });
 // 关闭弹窗
 const closeDialog = () => {

+ 1 - 1
src/views/business/publish/component/Order-publish.vue

@@ -243,7 +243,7 @@ const openDialog = async (row: any, isDisabled: boolean = false) => {
 };
 // 中国政府网特殊字段
 const isZGZFW = computed(() => {
-	return state.orderDetail.receiveProvinceNo.includes('ZGZFW');
+	return state.orderDetail.receiveProvinceNo?.includes('ZGZFW');
 });
 // 关闭弹窗
 const closeDialog = () => {