Ver código fonte

Merge branch 'release' into dev

zhangchong 7 meses atrás
pai
commit
4348c4a617

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

@@ -152,7 +152,6 @@ const state = reactive<any>({
 });
 const ruleFormRef = ref<RefType>(); // 表单ref
 const idNamesArray = ref<EmptyArrayType>([]); // 部门列表
-const dialogTitle = ref<string>('发布详情'); // 弹窗标题
 /*
  * @param row 工单详情
  * @description 打开弹窗
@@ -174,7 +173,7 @@ const openDialog = async (row: any) => {
 };
 // 中国政府网特殊字段
 const isZGZFW = computed(() => {
-	return state.orderDetail.provinceNo.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.provinceNo.includes('ZGZFW');
+	return state.orderDetail.receiveProvinceNo.includes('ZGZFW');
 });
 // 关闭弹窗
 const closeDialog = () => {