# Data initial-数据 - [/initial.Data/Country](#initialdatacountry) - [/initial.Data/Region](#initialdataregion) - [/initial.Data/Datas](#initialdatadatas) ## /initial.Data/Country ### Request ```javascript {} ``` ### Reply ```javascript { countries: [{ id: 0, // type code: "", // type code_3: "", // type num_code: "", // type phone_code: "", // type name: "", // type local_name: "", // type enabled: false, // type sort_order: 0, // type }], // list } ``` ## /initial.Data/Region 系统区域数据,默认级别:市 ### Request ```javascript { // 国家ID,默认:中国 1 country_id: 0, // type // 国家代码,默认:中国 CN country_code: "", // type // 是否输出乡镇,默认:市级 show_town: false, // type } ``` ### Reply ```javascript { regions: [{ id: "", // type pid: "", // type deep: 0, // type name: "", // type pinyin_prefix: "", // type pinyin: "", // type ext_id: "", // type ext_name: "", // type }], // list } ``` ## /initial.Data/Datas 系统标签数据 ### Request ```javascript {} ``` ### Reply ```javascript { datas: [{ id: "0", // type data_type: "", // type key: "", // type title: "", // type remark: "", // type icon: "", // type }], // list } ```