Ver código fonte

feature_20250722_金牌店档案收集

zhujindu 4 meses atrás
pai
commit
4990f29431
1 arquivos alterados com 37 adições e 1 exclusões
  1. 37 1
      src/views/storeManagement/storeDetail.vue

+ 37 - 1
src/views/storeManagement/storeDetail.vue

@@ -326,7 +326,38 @@
           </van-collapse>
         </van-tab>
         <van-tab title="属性信息" name="outsidePlan">
-          <template v-for="(item, index) in TCFXList" v-if="dictTypeFormShow">
+          <!-- 金牌店档案信息 -->
+          <template v-if="list.ifJpStoreType && list.storeArchives">
+            <div class="JpStore">
+              <van-field readonly v-model="list.storeArchives.ownerMobile" label="主经营者电话" />
+              <van-field readonly v-model="list.storeArchives.ownerName" label="主经营者姓名" />
+              <van-field
+                readonly
+                v-model="list.storeArchives.ownerBirthday"
+                label="主经营者出生日期" />
+              <van-field
+                readonly
+                v-model="list.storeArchives.mainProductCategorys"
+                label="主营/擅长经营品类" />
+              <van-field
+                readonly
+                v-model="list.storeArchives.emergencyContact"
+                label="紧急联系人姓名" />
+              <van-field
+                readonly
+                v-model="list.storeArchives.emergencyContactBirthday"
+                label="紧急联系人出生日期" />
+              <van-field
+                readonly
+                v-model="list.storeArchives.emergencyContactMobile"
+                label="紧急联系人电话" />
+              <van-field
+                readonly
+                v-model="list.storeArchives.emergencyContactRelation"
+                label="紧急联系人身份" />
+            </div>
+          </template>
+          <template v-for="(item, index) in TCFXList" v-if="dictTypeFormShow" v-else>
             <van-field
               readonly
               label="属性"
@@ -1858,5 +1889,10 @@ export default {
       }
     }
   }
+  .JpStore {
+    .van-field__label {
+      width: 9em;
+    }
+  }
 }
 </style>