|
@@ -105,6 +105,7 @@
|
|
|
<el-input
|
|
|
v-model="ruleForm.store_addr"
|
|
|
:disabled="isDetail"
|
|
|
+ @click="visible1 = true"
|
|
|
placeholder="地址"
|
|
|
maxlength="200"
|
|
|
/>
|
|
@@ -163,21 +164,24 @@
|
|
|
</el-row>
|
|
|
</el-card>
|
|
|
</el-dialog>
|
|
|
+ <!-- <map-modal :visible.sync="visible1" :toponym="toponym" @save="handleMapSelection" /> -->
|
|
|
</template>
|
|
|
<script>
|
|
|
import asyncRequest from "@/apis/service/operate/shop";
|
|
|
import asyncRequestStoreType from "@/apis/service/serviceParam/storeType";
|
|
|
import asyncRequestSupplier from "@/apis/service/operate/supplier";
|
|
|
import { formItem, rules, parmValue } from "./columns";
|
|
|
-
|
|
|
+// import MapModal from "./mapModal.vue"
|
|
|
export default {
|
|
|
name: "shop",
|
|
|
props: ["showModel", "id", "isDetail", "sitem"],
|
|
|
-
|
|
|
+ // components:{ MapModal },
|
|
|
data() {
|
|
|
return {
|
|
|
parmValue,
|
|
|
loading: false,
|
|
|
+ visible1:false,
|
|
|
+ toponym:"",
|
|
|
storeTypeOptions: [],
|
|
|
supplierOptions: [],
|
|
|
title: "添加供应商店铺",
|