bug
This commit is contained in:
parent
15ca62967e
commit
cf631ad033
@ -91,7 +91,7 @@ export default {
|
|||||||
}).then((AMap) => {
|
}).then((AMap) => {
|
||||||
this.map = new AMap.Map("container", {
|
this.map = new AMap.Map("container", {
|
||||||
viewMode: "2D", //是否为3D地图模式
|
viewMode: "2D", //是否为3D地图模式
|
||||||
zoom: 11, //初始化地图级别
|
zoom: 16, //初始化地图级别
|
||||||
center: [_this.form.lng, _this.form.lat], //初始化地图中心点位置
|
center: [_this.form.lng, _this.form.lat], //初始化地图中心点位置
|
||||||
});
|
});
|
||||||
// console.log(this.map.center)
|
// console.log(this.map.center)
|
||||||
|
@ -633,7 +633,9 @@ export default {
|
|||||||
submitForm: function() {
|
submitForm: function() {
|
||||||
this.$refs["form"].validate(valid => {
|
this.$refs["form"].validate(valid => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.form.auditPrem = this.form.auditPrem.toString();
|
if (this.form.auditPrem){
|
||||||
|
this.form.auditPrem = this.form.auditPrem.toString();
|
||||||
|
}
|
||||||
if (!this.form.id) {
|
if (!this.form.id) {
|
||||||
queryStaff({mobile:this.form.mobile}).then( response => {
|
queryStaff({mobile:this.form.mobile}).then( response => {
|
||||||
if(response.data!=null){
|
if(response.data!=null){
|
||||||
@ -676,7 +678,7 @@ export default {
|
|||||||
this.form.refundPassword = '123456'
|
this.form.refundPassword = '123456'
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "编辑员工信息";
|
this.title = "编辑员工信息";
|
||||||
if (this.form.auditPrem.length > 0){
|
if (this.form.auditPrem && this.form.auditPrem.length > 0){
|
||||||
// this.form.auditPrem = this.form.auditPrem.split(",");
|
// this.form.auditPrem = this.form.auditPrem.split(",");
|
||||||
this.auditPrem = []
|
this.auditPrem = []
|
||||||
this.auditPrem = this.form.auditPrem.split(",");
|
this.auditPrem = this.form.auditPrem.split(",");
|
||||||
|
@ -7,7 +7,11 @@ import com.alipay.api.response.AlipaySystemOauthTokenResponse;
|
|||||||
import com.fuint.business.storeInformation.entity.LJStore;
|
import com.fuint.business.storeInformation.entity.LJStore;
|
||||||
import com.fuint.business.storeInformation.service.ILJStoreService;
|
import com.fuint.business.storeInformation.service.ILJStoreService;
|
||||||
import com.fuint.business.userManager.entity.LJUser;
|
import com.fuint.business.userManager.entity.LJUser;
|
||||||
|
import com.fuint.business.userManager.entity.LJUserGrade;
|
||||||
|
import com.fuint.business.userManager.entity.UserBalance;
|
||||||
|
import com.fuint.business.userManager.service.LJUserGradeService;
|
||||||
import com.fuint.business.userManager.service.LJUserService;
|
import com.fuint.business.userManager.service.LJUserService;
|
||||||
|
import com.fuint.business.userManager.service.UserBalanceService;
|
||||||
import com.fuint.business.userManager.vo.LJUserVo;
|
import com.fuint.business.userManager.vo.LJUserVo;
|
||||||
import com.fuint.common.dto.AccountInfo;
|
import com.fuint.common.dto.AccountInfo;
|
||||||
import com.fuint.common.util.TokenUtil;
|
import com.fuint.common.util.TokenUtil;
|
||||||
@ -38,6 +42,10 @@ public class AlipayController extends BaseController {
|
|||||||
private LJUserService userService;
|
private LJUserService userService;
|
||||||
@Autowired
|
@Autowired
|
||||||
private ILJStoreService iljStoreService;
|
private ILJStoreService iljStoreService;
|
||||||
|
@Autowired
|
||||||
|
private UserBalanceService userBalanceService;
|
||||||
|
@Autowired
|
||||||
|
private LJUserGradeService ljUserGradeService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取支付宝userId
|
* 获取支付宝userId
|
||||||
@ -80,6 +88,25 @@ public class AlipayController extends BaseController {
|
|||||||
userService.addUser(ljUser);
|
userService.addUser(ljUser);
|
||||||
}
|
}
|
||||||
LJUser ljUser = userService.selectUserByMobile(mobile);
|
LJUser ljUser = userService.selectUserByMobile(mobile);
|
||||||
|
// 根据userid和连锁店id查询是否存在对应的余额信息
|
||||||
|
UserBalance userBalance = userBalanceService.selectUserBalance(ljUser.getId(), ljStore.getChainStoreId());
|
||||||
|
if (ObjectUtil.isEmpty(userBalance)) {
|
||||||
|
// 新增余额信息
|
||||||
|
UserBalance userBalanceAdd = new UserBalance();
|
||||||
|
userBalanceAdd.setMtUserId(ljUser.getId());
|
||||||
|
userBalanceAdd.setStoreId(Integer.parseInt(storeId));
|
||||||
|
userBalanceAdd.setChainStoreId(ljStore.getChainStoreId());
|
||||||
|
userBalanceAdd.setCardBalance(0.0);
|
||||||
|
userBalanceAdd.setPoints(0);
|
||||||
|
userBalanceAdd.setGrowthValue(0);
|
||||||
|
userBalanceAdd.setConsumeNum(0);
|
||||||
|
LJUserGrade ljUserGrade = ljUserGradeService.selectUserGradeByStoreId(Integer.parseInt(storeId));
|
||||||
|
if (ObjectUtil.isNotEmpty(ljUserGrade) && ObjectUtil.isNotEmpty(ljUserGrade.getId())) {
|
||||||
|
userBalanceAdd.setGradeId(ljUserGrade.getId());
|
||||||
|
}
|
||||||
|
// 新增会员余额信息
|
||||||
|
userBalanceService.insertUserBalance(userBalanceAdd);
|
||||||
|
}
|
||||||
|
|
||||||
String userAgent = request.getHeader("user-agent");
|
String userAgent = request.getHeader("user-agent");
|
||||||
AccountInfo accountInfo = new AccountInfo();
|
AccountInfo accountInfo = new AccountInfo();
|
||||||
|
@ -184,7 +184,8 @@ import { callWithErrorHandling } from "vue"
|
|||||||
},
|
},
|
||||||
onLoad(query) {
|
onLoad(query) {
|
||||||
if (query.storeId) {
|
if (query.storeId) {
|
||||||
uni.setStorageSync("y_storeId", query.storeId)
|
// uni.setStorageSync("y_storeId", query.storeId)
|
||||||
|
uni.setStorageSync("storeId", query.storeId)
|
||||||
}
|
}
|
||||||
if (query.type) {
|
if (query.type) {
|
||||||
uni.setStorageSync("y_type", query.type)
|
uni.setStorageSync("y_type", query.type)
|
||||||
@ -435,6 +436,7 @@ import { callWithErrorHandling } from "vue"
|
|||||||
uni.setStorageSync("storeId", response.data.store.id)
|
uni.setStorageSync("storeId", response.data.store.id)
|
||||||
uni.setStorageSync("chainStoreId", response.data.store
|
uni.setStorageSync("chainStoreId", response.data.store
|
||||||
.chainStoreId)
|
.chainStoreId)
|
||||||
|
console.log(uni.getStorageSync("chainStoreId"));
|
||||||
let welfare = response.data.store.welfare
|
let welfare = response.data.store.welfare
|
||||||
if (welfare) {
|
if (welfare) {
|
||||||
if (welfare.includes(",")) {
|
if (welfare.includes(",")) {
|
||||||
|
@ -86,13 +86,13 @@
|
|||||||
method: 'post',
|
method: 'post',
|
||||||
data: {
|
data: {
|
||||||
authCode: authCode,
|
authCode: authCode,
|
||||||
storeId: 0,
|
storeId: uni.getStorageSync("storeId"),
|
||||||
staffId: "",
|
staffId: "",
|
||||||
phone: "18457621459",
|
phone: "18457621459",
|
||||||
encryptedData: encryptedData,
|
encryptedData: encryptedData,
|
||||||
},
|
},
|
||||||
}).then((resp) => {
|
}).then((resp) => {
|
||||||
console.log(resp)
|
// console.log(resp)
|
||||||
if (resp.code == 200) {
|
if (resp.code == 200) {
|
||||||
|
|
||||||
uni.setStorageSync('App-Token', resp.data.token);
|
uni.setStorageSync('App-Token', resp.data.token);
|
||||||
@ -210,7 +210,8 @@
|
|||||||
url: "clientApi/sign/alipayLogin/getUserid",
|
url: "clientApi/sign/alipayLogin/getUserid",
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: {
|
data: {
|
||||||
storeId: uni.getStorageSync("y_storeId"),
|
storeId: uni.getStorageSync("storeId"),
|
||||||
|
// storeId: uni.getStorageSync("y_storeId"),
|
||||||
type: uni.getStorageSync("y_type"),
|
type: uni.getStorageSync("y_type"),
|
||||||
userId: uni.getStorageSync("y_userId"),
|
userId: uni.getStorageSync("y_userId"),
|
||||||
},
|
},
|
||||||
|
@ -13,10 +13,11 @@
|
|||||||
<view class="c-box-top">您对工作人员满意吗</view>
|
<view class="c-box-top">您对工作人员满意吗</view>
|
||||||
<view class="dis">
|
<view class="dis">
|
||||||
<view class="touxiang">
|
<view class="touxiang">
|
||||||
<image src="../../static/imgs/myx.png" mode="aspectFit"></image>
|
<image v-if="user.avatar" :src="baseUrl + user.avatar" mode="aspectFit"></image>
|
||||||
|
<image v-else src="../../static/imgs/myx.png" mode="aspectFit"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="">
|
<view class="">
|
||||||
<view class="username">username(13583017106)</view>
|
<view class="username">{{user.name?user.name:"未填写"}}({{user.mobile}})</view>
|
||||||
<view class="">
|
<view class="">
|
||||||
<u-rate active-color="#ffd74e" :count="count" v-model="value"></u-rate>
|
<u-rate active-color="#ffd74e" :count="count" v-model="value"></u-rate>
|
||||||
</view>
|
</view>
|
||||||
@ -38,13 +39,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import request from "../../utils/request";
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
title: '',
|
title: '',
|
||||||
description: '您的宝贵建议,就是我们前进的动力~动动手指,帮助我们做得更好~~',
|
description: '您的宝贵建议,就是我们前进的动力~动动手指,帮助我们做得更好~~',
|
||||||
count: 10,
|
count: 10,
|
||||||
value: 2,
|
value: 0,
|
||||||
value1: '',
|
value1: '',
|
||||||
textlist: [{
|
textlist: [{
|
||||||
text: '外瑞古德'
|
text: '外瑞古德'
|
||||||
@ -67,16 +69,30 @@
|
|||||||
{
|
{
|
||||||
text: ''
|
text: ''
|
||||||
},
|
},
|
||||||
]
|
],
|
||||||
|
user:{},
|
||||||
|
// url信息
|
||||||
|
baseUrl: this.$baseUrl,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onShow() {
|
||||||
|
this.getUser()
|
||||||
|
},
|
||||||
components: {
|
components: {
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 查询当前登录用户信息
|
||||||
|
getUser(){
|
||||||
|
request({
|
||||||
|
url: 'business/userManager/user/getUser',
|
||||||
|
method: 'get',
|
||||||
|
}).then(res => {
|
||||||
|
if (res.data) {
|
||||||
|
this.user = res.data
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
goback() {
|
goback() {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}
|
}
|
||||||
|
@ -64,11 +64,13 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
title: '',
|
title: '',
|
||||||
|
orderId:"",
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onLoad(e) {
|
||||||
|
this.orderId = e.orderId
|
||||||
|
},
|
||||||
components: {
|
components: {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
@scrolltolower="scrolltolower">
|
@scrolltolower="scrolltolower">
|
||||||
<!-- 油品订单列表 -->
|
<!-- 油品订单列表 -->
|
||||||
<view class="box-order" v-for="(item,index) in list" :key="index">
|
<view class="box-order" v-for="(item,index) in list" :key="index">
|
||||||
<view class="or-box-top">
|
<view class="or-box-top" @click="goOrderInfo">
|
||||||
<view class="">{{getStoreName(storeList,item.storeId)}}</view>
|
<view class="">{{getStoreName(storeList,item.storeId)}}</view>
|
||||||
<!-- <view class="chengg">{{getPayName(payList,item.orderStatus)}}</view> -->
|
<!-- <view class="chengg">{{getPayName(payList,item.orderStatus)}}</view> -->
|
||||||
<view class="chengg" v-if="item.orderStatus=='paid'">已支付</view>
|
<view class="chengg" v-if="item.orderStatus=='paid'">已支付</view>
|
||||||
@ -42,15 +42,15 @@
|
|||||||
<view class="huis">订单类型</view>
|
<view class="huis">订单类型</view>
|
||||||
<view class="">油品订单</view>
|
<view class="">油品订单</view>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="but-box">
|
<view class="but-box" @click="goOrderInfo">
|
||||||
<view class="huis">订单金额</view>
|
<view class="huis">订单金额</view>
|
||||||
<view class="">¥{{item.orderAmount}}</view>
|
<view class="">¥{{item.orderAmount}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="but-box">
|
<view class="but-box" @click="goOrderInfo">
|
||||||
<view class="huis">优惠合计</view>
|
<view class="huis">优惠合计</view>
|
||||||
<view class="reds">¥{{item.discountAmount}}</view>
|
<view class="reds">¥{{item.discountAmount}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="but-box">
|
<view class="but-box" @click="goOrderInfo">
|
||||||
<view class="huis">订单时间</view>
|
<view class="huis">订单时间</view>
|
||||||
<view class="" v-if="item.orderStatus=='paid'">{{parseTime(item.payTime)}}</view>
|
<view class="" v-if="item.orderStatus=='paid'">{{parseTime(item.payTime)}}</view>
|
||||||
<view class="" v-else>{{item.createTime}}</view>
|
<view class="" v-else>{{item.createTime}}</view>
|
||||||
@ -408,6 +408,11 @@
|
|||||||
url: '/pagesRefuel/orderDetail/index?orderNo=' + orderNo,
|
url: '/pagesRefuel/orderDetail/index?orderNo=' + orderNo,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
goOrderInfo(orderId){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pagesMy/details/details?orderId=' + orderId,
|
||||||
|
})
|
||||||
|
},
|
||||||
goComment() {
|
goComment() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pagesMy/comment/comment"
|
url: "/pagesMy/comment/comment"
|
||||||
|
@ -320,6 +320,7 @@
|
|||||||
title:res.data.error,
|
title:res.data.error,
|
||||||
icon:"none"
|
icon:"none"
|
||||||
})
|
})
|
||||||
|
_this.goBack()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(res.data.success == "ok"){
|
if(res.data.success == "ok"){
|
||||||
|
Loading…
Reference in New Issue
Block a user