This commit is contained in:
qsh
2024-07-01 12:08:00 +08:00
parent a33cbab7e3
commit 6a414d07df
9 changed files with 29 additions and 22 deletions

View File

@@ -137,7 +137,7 @@
</el-form>
</el-tab-pane>
<el-tab-pane label="描述" name="desc">
<Editor v-model:modelValue="placeForm.remark" />
<Editor v-model:modelValue="placeForm.introduce" />
</el-tab-pane>
</el-tabs>
<div class="flex items-center justify-center mt-10px">
@@ -268,7 +268,7 @@ const placeTab = ref('info')
function initMap() {
AMapLoader.load({
key: '2ffb0e2ea90b1df0b8be48ed66e18fc8', //设置您的key
key: '713d839ff505943b0f18e6df45f3b0dc', //设置您的key
version: '2.0',
plugins: ['AMap.Geocoder']
}).then((AMap) => {
@@ -391,7 +391,7 @@ function handleInsertPlace(schoolId) {
lng: undefined,
name: undefined,
address: undefined,
remark: undefined,
introduce: undefined,
phone: undefined,
schoolId: schoolId,
showInMap: true,
@@ -556,7 +556,7 @@ const placeForm = ref({
lng: undefined,
name: undefined,
address: undefined,
remark: undefined,
introduce: undefined,
phone: undefined,
flagColor: 'red'
})