mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:23:26 +08:00
【修复】修复服务商品后台手动核销后,前端状态仍然显示正常的问题。
【修复】修复微信同步头像及昵称数据,只更新用户表,未更新微信来源表的问题。
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<view class="coreshop-text-gray coreshop-font-sm flex coreshop-text-left">
|
||||
<view class="u-line-1 coreshop-text-red" v-if="item.code == 'balancepay'">
|
||||
当前余额:{{userInfo.balance}}元
|
||||
</view>
|
||||
</view>
|
||||
<view class="u-line-1" v-else>
|
||||
{{item.memo}}
|
||||
</view>
|
||||
@@ -110,7 +110,7 @@
|
||||
payments = payments.filter(item => item.code !== 'alipay')
|
||||
|
||||
// 如果是充值订单,服务订单 过滤余额支付 过滤非线上支付方式
|
||||
if (this.type == this.$globalConstVars.paymentType.recharge || this.type === this.$globalConstVars.paymentType.serviceOrder) {
|
||||
if (this.type == this.$globalConstVars.paymentType.recharge) {
|
||||
payments = payments.filter(item => item.code !== 'balancepay' || item.isOnline === false)
|
||||
}
|
||||
|
||||
@@ -129,18 +129,19 @@
|
||||
let data = {
|
||||
payment_code: code,
|
||||
payment_type: this.type,
|
||||
params: {
|
||||
trade_type: 'JSAPI',
|
||||
}
|
||||
params: {}
|
||||
}
|
||||
data['ids'] = (this.type == this.$globalConstVars.paymentType.common || this.type == this.$globalConstVars.paymentType.pinTuan || this.type == this.$globalConstVars.paymentType.group || this.type == this.$globalConstVars.paymentType.skill || this.type == this.$globalConstVars.paymentType.bargain || this.type == this.$globalConstVars.paymentType.giveaway || this.type == this.$globalConstVars.paymentType.solitaire || this.type == this.$globalConstVars.paymentType.transactionComponent || this.type == this.$globalConstVars.paymentType.serviceOrder) ? this.orderId : this.uid
|
||||
|
||||
// 判断订单支付类型
|
||||
if (this.type == this.$globalConstVars.paymentType.recharge && this.recharge) {
|
||||
data.params.money = this.recharge;
|
||||
|
||||
data['params'] = {
|
||||
money: this.recharge
|
||||
}
|
||||
} else if ((this.type == this.$globalConstVars.paymentType.formPay || this.type == this.$globalConstVars.paymentType.formOrder) && this.recharge) {
|
||||
data.ids = this.orderId;
|
||||
data['ids'] = this.orderId;
|
||||
data['params'] = {
|
||||
}
|
||||
}
|
||||
let _this = this
|
||||
switch (code) {
|
||||
|
||||
@@ -58,8 +58,13 @@
|
||||
<view class="date u-line-1" v-if="item.validityStartTime && item.validityEndTime">{{item.validityStartTime}} 至 {{item.validityEndTime}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="use immediate-use" :round="true">{{item.statusStr}}</view>
|
||||
<view class="right coreshop-flex coreshop-align-center coreshop-justify-center">
|
||||
<view class="coreshop-width-fit-content">
|
||||
<u-button text="正常" type="info" plain size="mini" v-if="item.status==0"></u-button>
|
||||
<u-button text="过期" type="default" plain size="mini" v-if="item.status==1"></u-button>
|
||||
<u-button text="作废" type="warning" plain size="mini" v-if="item.status==2"></u-button>
|
||||
<u-button text="已核销" type="success" plain size="mini" v-if="item.status==3"></u-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-loadmore :status="status" :icon-type="iconType" :load-text="loadText" margin-top="20" margin-bottom="20" />
|
||||
|
||||
@@ -951,6 +951,16 @@ namespace CoreCms.Net.Web.Admin.Controllers
|
||||
return jm;
|
||||
}
|
||||
oldModel.isVerification = (bool)entity.data;
|
||||
if (oldModel.isVerification)
|
||||
{
|
||||
oldModel.status = (int)GlobalEnumVars.ServicesTicketStatus.已核销;
|
||||
oldModel.verificationTime = DateTime.Now;
|
||||
}
|
||||
else
|
||||
{
|
||||
oldModel.status = (int)GlobalEnumVars.ServicesTicketStatus.正常;
|
||||
oldModel.verificationTime = null;
|
||||
}
|
||||
|
||||
var bl = await _coreCmsUserServicesTicketServices.UpdateAsync(oldModel);
|
||||
jm.code = bl ? 0 : 1;
|
||||
|
||||
@@ -111,7 +111,7 @@
|
||||
pagebar: '#LAY-app-CoreCmsUserServicesTicket-pagebar',
|
||||
className: 'pagebarbox',
|
||||
defaultToolbar: ['filter', 'print', 'exports'],
|
||||
height: 'full-227',//面包屑142px,搜索框4行172,3行137,2行102,1行67
|
||||
height: 'full-230',//面包屑142px,搜索框4行172,3行137,2行102,1行67
|
||||
page: true,
|
||||
limit: 30,
|
||||
limits: [10, 15, 20, 25, 30, 50, 100, 200],
|
||||
@@ -126,7 +126,7 @@
|
||||
//{ field: 'serviceId', title: '关联服务项目id', sort: false, width: 105 },
|
||||
//{ field: 'userId', title: '关联用户id', sort: false, width: 105 },
|
||||
{
|
||||
field: 'status', title: '状态', sort: false, width: 70, templet: function (data) {
|
||||
field: 'status', title: '状态', sort: false, width: 60, templet: function (data) {
|
||||
for (var i = 0; i < d.params.data.servicesTicketStatus.length; i++) {
|
||||
if (data.status == d.params.data.servicesTicketStatus[i].value) {
|
||||
return d.params.data.servicesTicketStatus[i].description;
|
||||
@@ -150,7 +150,7 @@
|
||||
{ field: 'validityStartTime', title: '核销开始时间', width: 130, sort: false },
|
||||
{ field: 'validityEndTime', title: '核销结束时间', width: 130, sort: false },
|
||||
{ field: 'createTime', title: '创建时间', width: 130, sort: false },
|
||||
{ field: 'isVerification', title: '是否核销', width: 65, templet: '#switch_isVerification', sort: false, unresize: true },
|
||||
{ field: 'isVerification', title: '是否核销', width: 75, templet: '#switch_isVerification', sort: false, unresize: true },
|
||||
{ field: 'verificationTime', title: '核销时间', width: 130, sort: false },
|
||||
{ width: 60, align: 'center', title: '操作', fixed: 'right', toolbar: '#LAY-app-CoreCmsUserServicesTicket-tableBox-bar' }
|
||||
]
|
||||
@@ -254,7 +254,7 @@
|
||||
layui.form.on('switch(switch_isVerification)', function (obj) {
|
||||
coreHelper.Post("Api/CoreCmsUserServicesOrder/DoSetisVerification", { id: this.value, data: obj.elem.checked }, function (e) {
|
||||
if (debug) { console.log(e); } //开启调试返回数据
|
||||
//table.reloadData('LAY-app-CoreCmsUserServicesTicket-tableBox');
|
||||
table.reloadData('LAY-app-CoreCmsUserServicesTicket-tableBox');
|
||||
layer.msg(e.msg);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
{
|
||||
field: 'avatar', title: '头像', sort: false,
|
||||
templet: function (d) {
|
||||
if (d.avatarImage) {
|
||||
if (d.avatar) {
|
||||
return '<a href="javascript:void(0);" onclick=layui.coreHelper.viewImage("' + d.avatar + '")><image style="max-width:28px;max-height:28px;" src="' + d.avatar + '" /></a>';
|
||||
} else {
|
||||
return '<a href="javascript:void(0);" onclick=layui.coreHelper.viewImage("' + setter.noImagePicUrl + '")><image style="max-width:30px;max-height:30px;" src="' + setter.noImagePicUrl + '" /></a>';
|
||||
|
||||
Reference in New Issue
Block a user