取消cdn加载
parent
15456ae377
commit
21f9fd92e2
|
@ -7,6 +7,6 @@ module.exports = {
|
||||||
}, //公司信息
|
}, //公司信息
|
||||||
icpMessage: "京ICP备20009696号-1", //icp备案
|
icpMessage: "京ICP备20009696号-1", //icp备案
|
||||||
aMapKey: "b440952723253aa9fe483e698057bf7d", //高德web端申请的api key
|
aMapKey: "b440952723253aa9fe483e698057bf7d", //高德web端申请的api key
|
||||||
enableCDN: true, //生产环境 是否启用cdn加载 vue等js
|
enableCDN: false, //生产环境 是否启用cdn加载 vue等js
|
||||||
port: 10000, //端口
|
port: 10000, //端口
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,6 +2,6 @@ module.exports = {
|
||||||
title: "lilishop", //配置显示在浏览器标签的title
|
title: "lilishop", //配置显示在浏览器标签的title
|
||||||
aMapKey: "b440952723253aa9fe483e698057bf7d", //高德web端申请的api key
|
aMapKey: "b440952723253aa9fe483e698057bf7d", //高德web端申请的api key
|
||||||
website: "https://www.pickmall.cn", //官网地址
|
website: "https://www.pickmall.cn", //官网地址
|
||||||
enableCDN: true, //生产环境 是否启用cdn加载 vue等js
|
enableCDN: false, //生产环境 是否启用cdn加载 vue等js
|
||||||
port: 10003, //端口
|
port: 10003, //端口
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,6 +2,6 @@ module.exports = {
|
||||||
title: "lilishop", //配置显示在浏览器标签的title
|
title: "lilishop", //配置显示在浏览器标签的title
|
||||||
aMapKey: "b440952723253aa9fe483e698057bf7d", //高德web端申请的api key
|
aMapKey: "b440952723253aa9fe483e698057bf7d", //高德web端申请的api key
|
||||||
website: "https://www.pickmall.cn", //官网地址
|
website: "https://www.pickmall.cn", //官网地址
|
||||||
enableCDN: true, //生产环境 是否启用cdn加载 vue等js
|
enableCDN: false, //生产环境 是否启用cdn加载 vue等js
|
||||||
port:10002, //端口
|
port:10002, //端口
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,78 +1,177 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="search">
|
<div class="search">
|
||||||
|
|
||||||
<Card style="margin-left: 10px">
|
<Card style="margin-left: 10px">
|
||||||
<Tabs v-model="type" @on-click="handleClickType">
|
<Tabs v-model="type" @on-click="handleClickType">
|
||||||
<TabPane label="基本信息" name="INFO">
|
<TabPane label="基本信息" name="INFO">
|
||||||
<Form ref="form" :model="form" :label-width="100" :rules="formValidate">
|
<Form
|
||||||
|
ref="form"
|
||||||
|
:model="form"
|
||||||
|
:label-width="100"
|
||||||
|
:rules="formValidate"
|
||||||
|
>
|
||||||
<FormItem label="店铺名称">
|
<FormItem label="店铺名称">
|
||||||
<Input v-model="storeName" disabled clearable style="width: 20%"/>
|
<Input
|
||||||
|
v-model="storeName"
|
||||||
|
disabled
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="店铺地址" prop="address">
|
<FormItem label="店铺地址" prop="address">
|
||||||
<Input v-model="form.address" @on-focus="$refs.liliMap.showMap = true" clearable style="width: 20%"/>
|
<Input
|
||||||
|
v-model="form.address"
|
||||||
|
@on-focus="$refs.liliMap.showMap = true"
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="详细地址" prop="shopAddressDetail">
|
<FormItem label="详细地址" prop="shopAddressDetail">
|
||||||
<Input v-model="form.storeAddressDetail" clearable style="width: 20%" maxlength="50"/>
|
<Input
|
||||||
|
v-model="form.storeAddressDetail"
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
maxlength="50"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="店铺LOGO:">
|
<FormItem label="店铺LOGO:">
|
||||||
<upload-pic-thumb v-model="form.storeLogo" :multiple="false"></upload-pic-thumb>
|
<upload-pic-thumb
|
||||||
|
v-model="form.storeLogo"
|
||||||
|
:multiple="false"
|
||||||
|
></upload-pic-thumb>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="店铺简介" prop="content" class="wangEditor">
|
<FormItem label="店铺简介" prop="content" class="wangEditor">
|
||||||
<Input type="textarea" :rows="8" v-model="form.storeDesc" style="width: 30%"></Input>
|
<Input
|
||||||
|
type="textarea"
|
||||||
|
:rows="8"
|
||||||
|
v-model="form.storeDesc"
|
||||||
|
style="width: 30%"
|
||||||
|
></Input>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<Form-item>
|
<Form-item>
|
||||||
<Button @click="handleSubmit" :loading="submitLoading" type="primary" style="margin-right:5px">修改
|
<Button
|
||||||
|
@click="handleSubmit"
|
||||||
|
:loading="submitLoading"
|
||||||
|
type="primary"
|
||||||
|
style="margin-right: 5px"
|
||||||
|
>修改
|
||||||
</Button>
|
</Button>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
</Form>
|
</Form>
|
||||||
</TabPane>
|
</TabPane>
|
||||||
<TabPane label="退货地址" name="REFUND_GOODS_ADDRESS">
|
<TabPane label="退货地址" name="REFUND_GOODS_ADDRESS">
|
||||||
<Form ref="addressForm" :model="addressForm" :label-width="100" :rules="afterFormValidate">
|
<Form
|
||||||
|
ref="addressForm"
|
||||||
|
:model="addressForm"
|
||||||
|
:label-width="100"
|
||||||
|
:rules="afterFormValidate"
|
||||||
|
>
|
||||||
<FormItem label="收货人" prop="salesConsigneeName">
|
<FormItem label="收货人" prop="salesConsigneeName">
|
||||||
<Input v-model="addressForm.salesConsigneeName" maxlength="11" clearable style="width: 20%"/>
|
<Input
|
||||||
|
v-model="addressForm.salesConsigneeName"
|
||||||
|
maxlength="11"
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="收货人电话" prop="salesConsigneeMobile">
|
<FormItem label="收货人电话" prop="salesConsigneeMobile">
|
||||||
<Input v-model="addressForm.salesConsigneeMobile" maxlength="11" style="width: 20%"/>
|
<Input
|
||||||
|
v-model="addressForm.salesConsigneeMobile"
|
||||||
|
maxlength="11"
|
||||||
|
style="width: 20%"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="售后地址">
|
<FormItem label="售后地址">
|
||||||
<Input v-model="region" disabled style="width: 20%" v-if="showRegion == false"/>
|
<Input
|
||||||
<Button v-if="showRegion == false" @click="regionClick" :loading="submitLoading" type="primary"
|
v-model="region"
|
||||||
style="margin-left:8px">修改
|
disabled
|
||||||
|
style="width: 20%"
|
||||||
|
v-if="showRegion == false"
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
v-if="showRegion == false"
|
||||||
|
@click="regionClick"
|
||||||
|
:loading="submitLoading"
|
||||||
|
type="primary"
|
||||||
|
style="margin-left: 8px"
|
||||||
|
>修改
|
||||||
</Button>
|
</Button>
|
||||||
<regionMap style="width: 20%" @selected="selectedRegion" v-if="showRegion == true"/>
|
<regionMap
|
||||||
|
style="width: 20%"
|
||||||
|
@selected="selectedRegion"
|
||||||
|
v-if="showRegion == true"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="详细地址" prop="salesConsigneeDetail">
|
<FormItem label="详细地址" prop="salesConsigneeDetail">
|
||||||
<Input v-model="addressForm.salesConsigneeDetail" clearable style="width: 20%" maxlength="50"/>
|
<Input
|
||||||
|
v-model="addressForm.salesConsigneeDetail"
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
maxlength="50"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
||||||
<Form-item>
|
<Form-item>
|
||||||
<Button @click="afterHandleSubmit" :loading="submitLoading" type="primary" style="margin-right:5px">修改
|
<Button
|
||||||
|
@click="afterHandleSubmit"
|
||||||
|
:loading="submitLoading"
|
||||||
|
type="primary"
|
||||||
|
style="margin-right: 5px"
|
||||||
|
>修改
|
||||||
</Button>
|
</Button>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
</Form>
|
</Form>
|
||||||
</TabPane>
|
</TabPane>
|
||||||
<TabPane label="库存预警" name="STOCK_WARNING">
|
<TabPane label="库存预警" name="STOCK_WARNING">
|
||||||
|
<Form
|
||||||
<Form ref="stockWarningForm" :model="stockWarningForm" :label-width="100" :rules="stockWarningFormValidate">
|
ref="stockWarningForm"
|
||||||
|
:model="stockWarningForm"
|
||||||
|
:label-width="100"
|
||||||
|
:rules="stockWarningFormValidate"
|
||||||
|
>
|
||||||
<FormItem label="预警数" prop="stockWarning">
|
<FormItem label="预警数" prop="stockWarning">
|
||||||
<Input v-model="stockWarningForm.stockWarning" type="number" maxlength="6" clearable style="width: 20%"/>
|
<InputNumber
|
||||||
|
:min="0"
|
||||||
|
:max="99999"
|
||||||
|
v-model="stockWarningForm.stockWarning"
|
||||||
|
type="number"
|
||||||
|
maxlength="6"
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<Form-item>
|
<Form-item>
|
||||||
<Button @click="stockWarningHandleSubmit" :loading="submitLoading" type="primary"
|
<Button
|
||||||
style="margin-right:5px">修改
|
@click="stockWarningHandleSubmit"
|
||||||
|
:loading="submitLoading"
|
||||||
|
type="primary"
|
||||||
|
style="margin-right: 5px"
|
||||||
|
>修改
|
||||||
</Button>
|
</Button>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
</Form>
|
</Form>
|
||||||
</TabPane>
|
</TabPane>
|
||||||
<TabPane label="客服设置" name="UDESK">
|
<TabPane label="客服设置" name="UDESK">
|
||||||
|
<Form
|
||||||
<Form ref="udeskForm" :model="udeskForm" :label-width="100" :rules="udeskFormValidate">
|
ref="udeskForm"
|
||||||
|
:model="udeskForm"
|
||||||
|
:label-width="100"
|
||||||
|
:rules="udeskFormValidate"
|
||||||
|
>
|
||||||
<FormItem label="坐席id" prop="merchantEuid">
|
<FormItem label="坐席id" prop="merchantEuid">
|
||||||
<Input v-model="udeskForm.merchantEuid" maxlength="30" clearable style="width: 20%"/>
|
<Input
|
||||||
|
v-model="udeskForm.merchantEuid"
|
||||||
|
maxlength="30"
|
||||||
|
clearable
|
||||||
|
style="width: 20%"
|
||||||
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<Form-item>
|
<Form-item>
|
||||||
<Button @click="merchantSubmit" :loading="submitLoading" type="primary"
|
<Button
|
||||||
style="margin-right:5px">修改
|
@click="merchantSubmit"
|
||||||
|
:loading="submitLoading"
|
||||||
|
type="primary"
|
||||||
|
style="margin-right: 5px"
|
||||||
|
>修改
|
||||||
</Button>
|
</Button>
|
||||||
</Form-item>
|
</Form-item>
|
||||||
</Form>
|
</Form>
|
||||||
|
@ -121,7 +220,7 @@ export default {
|
||||||
},
|
},
|
||||||
//im form
|
//im form
|
||||||
udeskForm: {
|
udeskForm: {
|
||||||
merchantEuid: ""
|
merchantEuid: "",
|
||||||
},
|
},
|
||||||
stockWarningFormValidate: {
|
stockWarningFormValidate: {
|
||||||
stockWarning: [
|
stockWarning: [
|
||||||
|
@ -272,7 +371,6 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
merchantSubmit() {
|
merchantSubmit() {
|
||||||
|
|
||||||
this.$refs.udeskForm.validate((valid) => {
|
this.$refs.udeskForm.validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.submitLoading = true;
|
this.submitLoading = true;
|
||||||
|
@ -339,7 +437,7 @@ export default {
|
||||||
this.$set(this.form, "address", item.addr);
|
this.$set(this.form, "address", item.addr);
|
||||||
this.form.storeAddressPath = item.addr;
|
this.form.storeAddressPath = item.addr;
|
||||||
this.form.storeAddressIdPath = item.addrId;
|
this.form.storeAddressIdPath = item.addrId;
|
||||||
this.form.storeCenter = item.position.lng + "," + item.position.lat
|
this.form.storeCenter = item.position.lng + "," + item.position.lat;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
Loading…
Reference in New Issue