Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
6dada2c04f
@ -3,7 +3,7 @@
|
|||||||
<el-card class="card">
|
<el-card class="card">
|
||||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
||||||
<el-form-item label="店铺" prop="storeId">
|
<el-form-item label="店铺" prop="storeId">
|
||||||
<el-select v-model="queryParams.storeId" placeholder="请选择店铺" style="width: 100%">
|
<el-select v-model="queryParams.storeId" filterable placeholder="请选择店铺" clearable style="width: 100%">
|
||||||
<el-option v-for="item in storeList"
|
<el-option v-for="item in storeList"
|
||||||
:key="item.id" clearable
|
:key="item.id" clearable
|
||||||
:label="item.name" :value="item.id"
|
:label="item.name" :value="item.id"
|
||||||
@ -87,10 +87,10 @@
|
|||||||
:visible.sync="dialogVisible">
|
:visible.sync="dialogVisible">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||||
<el-form-item label="店铺" prop="storeId">
|
<el-form-item label="店铺" prop="storeId">
|
||||||
<el-select v-model="form.storeId" placeholder="请选择店铺" style="width: 100%">
|
<el-select v-model="form.storeId" filterable placeholder="请选择店铺" style="width: 100%">
|
||||||
<el-option v-for="item in storeList"
|
<el-option v-for="item in storeList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name" :value="item.id"></el-option>
|
:label="item.name" :value="item.id+''"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="轮播图" prop="bannerUrl">
|
<el-form-item label="轮播图" prop="bannerUrl">
|
||||||
@ -235,18 +235,17 @@ export default {
|
|||||||
if (valid) {
|
if (valid) {
|
||||||
if (this.form.id){
|
if (this.form.id){
|
||||||
updateIndexBanner(this.form).then(res => {
|
updateIndexBanner(this.form).then(res => {
|
||||||
console.log(res)
|
|
||||||
if (res.data==1){
|
if (res.data==1){
|
||||||
this.$modal.msgSuccess("修改成功")
|
this.$modal.msgSuccess("修改成功")
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false
|
||||||
this.flag = false
|
this.flag = false
|
||||||
|
this.queryParams.page = 1
|
||||||
this.getList()
|
this.getList()
|
||||||
this.getStoreList()
|
this.getStoreList()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}else {
|
}else {
|
||||||
addIndexBanner(this.form).then(res => {
|
addIndexBanner(this.form).then(res => {
|
||||||
console.log(res)
|
|
||||||
if (res.data==1){
|
if (res.data==1){
|
||||||
this.$modal.msgSuccess("添加成功")
|
this.$modal.msgSuccess("添加成功")
|
||||||
this.dialogVisible = false
|
this.dialogVisible = false
|
||||||
|
@ -56,7 +56,7 @@ public class IndexBannerController extends BaseController {
|
|||||||
*/
|
*/
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public ResponseObject add(@RequestBody IndexBanner indexBanner){
|
public ResponseObject add(@RequestBody IndexBanner indexBanner){
|
||||||
return getSuccessResult(indexBannerService.insertIndexBanner(indexBanner,null));
|
return getSuccessResult(indexBannerService.insertIndexBanner(indexBanner,indexBanner.getStoreId()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -666,6 +666,7 @@ public class ActiveExchangeServiceImpl implements ActiveExchangeService {
|
|||||||
if (StringUtils.isNotEmpty(gradeId)) {
|
if (StringUtils.isNotEmpty(gradeId)) {
|
||||||
LJStore store = iljStoreService.selectStoreByStoreId(storeId);
|
LJStore store = iljStoreService.selectStoreByStoreId(storeId);
|
||||||
ChainStoreConfig chainStoreConfig = chainStoreConfigService.selectChainStoreById(store.getChainStoreId());
|
ChainStoreConfig chainStoreConfig = chainStoreConfigService.selectChainStoreById(store.getChainStoreId());
|
||||||
|
if (ObjectUtils.isNotEmpty(chainStoreConfig)) {
|
||||||
String isEnableLevel = chainStoreConfig.getIsEnableLevel();
|
String isEnableLevel = chainStoreConfig.getIsEnableLevel();
|
||||||
if (isEnableLevel.equals("yes")) {
|
if (isEnableLevel.equals("yes")) {
|
||||||
|
|
||||||
@ -759,6 +760,7 @@ public class ActiveExchangeServiceImpl implements ActiveExchangeService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return paymentActiveVO;
|
return paymentActiveVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,8 +95,10 @@ public class LJStaffServiceImpl extends ServiceImpl<LJStaffMapper, LJStaff> impl
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public LJStaff selectStaffByMobile(String mobile) {
|
public LJStaff selectStaffByMobile(String mobile) {
|
||||||
|
AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo();
|
||||||
QueryWrapper queryWrapper = new QueryWrapper();
|
QueryWrapper queryWrapper = new QueryWrapper();
|
||||||
queryWrapper.eq("mobile",mobile);
|
queryWrapper.eq("mobile",mobile);
|
||||||
|
queryWrapper.eq("store_id",nowAccountInfo.getStoreId());
|
||||||
LJStaff staff = baseMapper.selectOne(queryWrapper);
|
LJStaff staff = baseMapper.selectOne(queryWrapper);
|
||||||
return staff;
|
return staff;
|
||||||
}
|
}
|
||||||
|
@ -96,6 +96,18 @@ public class ChainStoreConfigServiceImpl extends ServiceImpl<ChainStoreConfigMap
|
|||||||
LJStore store = storeService.selectStoreByStoreId(storeId);
|
LJStore store = storeService.selectStoreByStoreId(storeId);
|
||||||
QueryWrapper queryWrapper = new QueryWrapper<>();
|
QueryWrapper queryWrapper = new QueryWrapper<>();
|
||||||
queryWrapper.eq("chain_store_id",store.getChainStoreId());
|
queryWrapper.eq("chain_store_id",store.getChainStoreId());
|
||||||
return baseMapper.selectOne(queryWrapper);
|
ChainStoreConfig chainStoreConfig = baseMapper.selectOne(queryWrapper);
|
||||||
|
if (ObjectUtil.isEmpty(chainStoreConfig)){
|
||||||
|
ChainStoreConfig chainStoreConfig1 = new ChainStoreConfig();
|
||||||
|
chainStoreConfig1.setChainStoreId(store.getChainStoreId());
|
||||||
|
chainStoreConfig1.setIsEnableLevel("no");
|
||||||
|
chainStoreConfig1.setIsMonthClear("clear_month");
|
||||||
|
chainStoreConfig1.setGasGrowthValue("1");
|
||||||
|
chainStoreConfig1.setDieselGrowthValue("1");
|
||||||
|
chainStoreConfig1.setNaturalGrowthValue("1");
|
||||||
|
baseMapper.insert(chainStoreConfig1);
|
||||||
|
}
|
||||||
|
chainStoreConfig = baseMapper.selectOne(queryWrapper);
|
||||||
|
return chainStoreConfig;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,9 +9,11 @@
|
|||||||
<swiper class="swiper" style="width: 100%;height: 300px;" circular :indicator-dots="indicatorDots"
|
<swiper class="swiper" style="width: 100%;height: 300px;" circular :indicator-dots="indicatorDots"
|
||||||
:autoplay="autoplay" :interval="interval" :duration="duration">
|
:autoplay="autoplay" :interval="interval" :duration="duration">
|
||||||
<swiper-item v-for="(item,index) in list1" :key="index" @click="goPage(item.routeUrl)">
|
<swiper-item v-for="(item,index) in list1" :key="index" @click="goPage(item.routeUrl)">
|
||||||
<view class="swiper-item uni-bg-red"></view>
|
<view class="swiper-item uni-bg-red">
|
||||||
<!-- <image style="width: 100%;" :src="item.bannerUrl"></image> -->
|
|
||||||
<image style="width: 100%;" :src="getBannerUrl(item.bannerUrl)"></image>
|
<image style="width: 100%;" :src="item.bannerUrl"></image>
|
||||||
|
</view>
|
||||||
|
<!-- <image style="width: 100%;" :src="getBannerUrl(item.bannerUrl)"></image> -->
|
||||||
</swiper-item>
|
</swiper-item>
|
||||||
</swiper>
|
</swiper>
|
||||||
</view>
|
</view>
|
||||||
@ -257,12 +259,21 @@ import { callWithErrorHandling } from "vue"
|
|||||||
},
|
},
|
||||||
// 获取首页轮播图信息
|
// 获取首页轮播图信息
|
||||||
getIndexBanner() {
|
getIndexBanner() {
|
||||||
|
let _this = this
|
||||||
if (uni.getStorageSync("storeId")) {
|
if (uni.getStorageSync("storeId")) {
|
||||||
request({
|
request({
|
||||||
url: 'business/indexBanner/list/' + uni.getStorageSync("storeId"),
|
url: 'business/indexBanner/list/' + uni.getStorageSync("storeId"),
|
||||||
method: 'get',
|
method: 'get',
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
this.list1 = res.data
|
_this.list1 = res.data
|
||||||
|
for (let i = 0;i<res.data.length;i++){
|
||||||
|
if (res.data[i].bannerUrl.includes("http")){
|
||||||
|
_this.list1[i].bannerUrl = res.data[i].bannerUrl
|
||||||
|
}else{
|
||||||
|
_this.list1[i].bannerUrl = _this.baseUrl + res.data[i].bannerUrl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
console.log(_this.list1);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<view class="top-box">
|
<view class="top-box">
|
||||||
<view class="dis" style="width: 78%;">
|
<view class="dis" style="width: 78%;">
|
||||||
<view class="top-img">
|
<view class="top-img">
|
||||||
<image v-if="store.logo==''||store.logo==null||store.logo==undefined" src="../../static/logo.png" mode="aspectFit"></image>
|
<image v-if="!store.logo" src="../../static/logo.png" mode="aspectFit"></image>
|
||||||
<image v-else :src="baseUrl+store.logo" mode="aspectFit"></image>
|
<image v-else :src="baseUrl+store.logo" mode="aspectFit"></image>
|
||||||
</view>
|
</view>
|
||||||
<view style="width: 80%;">
|
<view style="width: 80%;">
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
<text>评价有礼</text>
|
<text>评价有礼</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view v-else-if="item.orderStatus=='unpaid'" class="end-box" @click="goPayment()">
|
<view v-else-if="item.orderStatus=='unpaid'" class="end-box" @click="goPayment(item.orderNo)">
|
||||||
<view class="anniu">
|
<view class="anniu">
|
||||||
<text>去支付</text>
|
<text>去支付</text>
|
||||||
</view>
|
</view>
|
||||||
@ -403,8 +403,10 @@
|
|||||||
// this.getBalanceOrder()
|
// this.getBalanceOrder()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
goPayment(){
|
goPayment(orderNo){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pagesRefuel/orderDetail/index?orderNo=' + orderNo,
|
||||||
|
})
|
||||||
},
|
},
|
||||||
goComment() {
|
goComment() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
<view class="my-icons"></view>
|
<view class="my-icons"></view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 顶部区域 -->
|
<!-- 顶部区域 -->
|
||||||
|
<!-- #ifdef MP-WEIXIN -->
|
||||||
<button class="box-hang" open-type="chooseAvatar" @chooseavatar="onChooseAvatar">
|
<button class="box-hang" open-type="chooseAvatar" @chooseavatar="onChooseAvatar">
|
||||||
<view class="">头像</view>
|
<view class="">头像</view>
|
||||||
<view class="touxiang">
|
<view class="touxiang">
|
||||||
@ -14,6 +15,16 @@
|
|||||||
<image class="touxiang" v-else src="@/static/imgs/myx.png" mode="aspectFit"></image>
|
<image class="touxiang" v-else src="@/static/imgs/myx.png" mode="aspectFit"></image>
|
||||||
</view>
|
</view>
|
||||||
</button>
|
</button>
|
||||||
|
<!-- #endif -->
|
||||||
|
<!-- #ifdef MP-ALIPAY -->
|
||||||
|
<button class="box-hang" @click="onChooseAvatar1">
|
||||||
|
<view class="">头像</view>
|
||||||
|
<view class="touxiang">
|
||||||
|
<image class="touxiang" v-if="user.avatar!='' && user.avatar!=null && user.avatar!=undefined" :src="baseUrl + user.avatar" mode="aspectFit"></image>
|
||||||
|
<image class="touxiang" v-else src="@/static/imgs/myx.png" mode="aspectFit"></image>
|
||||||
|
</view>
|
||||||
|
</button>
|
||||||
|
<!-- #endif -->
|
||||||
<view class="box-hang" @click="goEdit(0)">
|
<view class="box-hang" @click="goEdit(0)">
|
||||||
<view class="">昵称</view>
|
<view class="">昵称</view>
|
||||||
<view class="dis">
|
<view class="dis">
|
||||||
@ -99,6 +110,30 @@
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// 用户选择头像
|
||||||
|
onChooseAvatar1(e){
|
||||||
|
let _this = this;
|
||||||
|
//从本地相册选择图片或使用相机拍照
|
||||||
|
uni.chooseImage({
|
||||||
|
sourceType: ['album', 'camera'],//选择方式相册或者相机
|
||||||
|
success: (res) => {
|
||||||
|
console.log('图片', res)
|
||||||
|
var tempFilePath = res.tempFilePaths;
|
||||||
|
var filePath = tempFilePath[0];
|
||||||
|
console.log(filePath);//输出本地头像路径
|
||||||
|
//调用上传下载api
|
||||||
|
// 将图片上传服务器
|
||||||
|
upload({
|
||||||
|
url: '/clientApi/file/upload',
|
||||||
|
filePath: filePath,
|
||||||
|
}).then((res) => {
|
||||||
|
console.log('images', res.data.fileName);
|
||||||
|
_this.user.avatar = res.data.fileName
|
||||||
|
_this.editUser()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
// 修改用户信息
|
// 修改用户信息
|
||||||
editUser(){
|
editUser(){
|
||||||
request({
|
request({
|
||||||
|
Loading…
Reference in New Issue
Block a user