소스 검색

Merge branch 'release' into dev

zhangchong 7 달 전
부모
커밋
4348c4a617
2개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 2
      src/views/business/publish/component/Order-publish-edit.vue
  2. 1 1
      src/views/business/publish/component/Order-publish.vue

+ 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 = () => {