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