diff --git a/src/views/consignmentManagement/createConsignmentRecallOrder.vue b/src/views/consignmentManagement/createConsignmentRecallOrder.vue
index 6627805..73d5b21 100644
--- a/src/views/consignmentManagement/createConsignmentRecallOrder.vue
+++ b/src/views/consignmentManagement/createConsignmentRecallOrder.vue
@@ -8,7 +8,7 @@
       <div class="row bothSide" style="margin-bottom: 10px;">
         <div style="width: 48%">
           <div class="xktitle" style="margin-bottom: 10px">收货信息<i class="el-icon-edit-outline" style="margin-left: 10px;" @click="dialogVisible_3=true"></i></div>
-          <div class="row">
+          <div class="row" v-if="updateConsignmentRecallReceiptInfoParams.province">
             <i class="el-icon-map-location" style="margin-top: 16px;"></i>
             <el-descriptions :column="1" :colon="false">
               <el-descriptions-item>
@@ -133,7 +133,7 @@ export default {
   data() {
     return {
       options: pcaTextArr,
-      selectedOptions: ['广东省', '深圳市', '龙岗区'],
+      selectedOptions: [],
       total: 0,
       page: 1,
       limit: 10,
@@ -251,6 +251,8 @@ export default {
           // 如果省份为空,弹出收货信息弹窗
           if (!res.data.province) {
             this.dialogVisible_3 = true
+          } else {
+            this.selectedOptions = [res.data.province, res.data.city, res.data.district];
           }
         }
       })