店铺管理api
>d 查询4s店铺基本信息
#### api/store/queryStoreInfo
#### 入参
- pageNum 第几页
- pageSize 每页显示多少条
- hiretimeStart 入驻开始时间
- hiretimeEnd 入驻结束时间
- keyWord 关键字
- enterpriseId 公司
- provinceCode 省
- cityCode 市
- countyCode 区
- storeId 4s门店Id
- state 店铺状态
#### 返回值
{
code: 200,
message: "OK.",
total: 14,
size: 15,
current: 1,
records:[{
id:店铺id,
num:店铺名称,
name:店铺名称,
storeManager:店长姓名,
phone:联系电话,
areaManage:管理区域,
state:4S店状态 状态(1.运营中,2待筹建,3.取消合作),
money:已付金额(万元),
enterprise:所属公司,
channelManager:渠道经理,
hiretime:入驻日期
}]
}
>d 根据店铺id获取店铺详情
#### api/store/getStoreDetailsById
#### 入参:storeId
#### 返回值
name:店铺名称
- storeManager:店长姓名,
- phone:电话,
- state:4s店铺状态,
- visitCount:参观次数
- money:投入资金,
- adress:4s店地址,
- cooperationBeginTime,cooperationEndTime合作有效期
- bankNo:管理银行账号,
- bankAccountName:银行户名,
- channelManager:渠道经理,
- createTime:创建时间,
- bank:开户银行,
- enterprise:所属公司,
- submiter:创建人
- grade: 管辖等级 1:区县,2:镇 3:省级
- subject 签约协议
- documentPath 签约协议地址
- distriButorAttachementList 附件
>d 查询店铺样板间
#### api/store/selectStoreTemplate
#### 入参:storeId
#### 返回值 list
- name 样板间名称
- proName 产品名称
- adress 样板间地址
- deliverTime 样板间交付时间
- submiter 操作人
>d 所有公司
/api/system/company/getAllEnterprise
去掉远大美宅
`
let temp = res.data;
let componey =temp.filter(item=>{
return item.label!="远大美宅";
});
this.enterpriseList = componey;
`
>d 选择公司加载省
/api/behavior/selecScreeningCompany
#### 入参 公司
>d 选择省加载市
/api/behavior/selecscreeningProvince
#### 入参 省code
>d 选择市加载区
/api/behavior/selecscreeningCity
#### 入参市code
>d 选择区加载店铺
/api/behavior/selecscreeningCounty
#### 入参 区code
>d 店铺状态
` status:[
{
value: '1',
label: '运营中'
},
{
value: '2',
label: '待筹建'
},
{
value: '3',
label: '取消合作'
}
],`