修改对公审核字段错误的问题

This commit is contained in:
qiaomu 2024-11-14 16:22:38 +08:00
parent efe3d3241d
commit 84c6c54e58
7 changed files with 1 additions and 17 deletions

View File

@ -7,9 +7,6 @@ Component({
properties: {
list: {
type: Array,
watch(newVal) {
console.log("newVal ------", newVal)
}
},
header: Array,
totalPage: Number,
@ -31,7 +28,6 @@ Component({
},
lifetimes: {
attached() {
console.log('this.data', this.data.list)
this.setData({
tempList: (this.data.list || [])?.slice(0, 20),
})

View File

@ -127,8 +127,4 @@ Page({
});
},
// onTabItemTap(item) {
// console.log('------------', item)
// }
})

View File

@ -41,7 +41,6 @@ Page({
async upload(res) {
const result = await uploadPublicFile(res.tempFiles[0]?.tempFilePath)
console.log('upload result', result)
if (result.statusCode !== 200) {
alertInfo("上传失败")
return;

View File

@ -40,7 +40,6 @@ Page({
},
async getCode() {
const tenement = wx.getStorageSync('tenement');
console.log("tenement", tenement)
const { code, message, data } = await getWxCode(tenement.id)
if (code !== OK) {
alertInfo(message)

View File

@ -28,7 +28,6 @@ Page({
this.setData({ servicesList: data })
},
clickService(e) {
console.log('e', e)
const { type, value } = e.currentTarget.dataset.data;
if (!value) {
alertInfo("暂未开通")

View File

@ -75,7 +75,6 @@ Component({
})
},
onChangeReason(e) {
console.log('e.detail', e.detail)
this.setData({
reason: e.detail,
})
@ -93,11 +92,8 @@ Component({
alertInfo("请输入拒绝理由")
return;
}
console.log('1')
loadingFunc(async () => {
console.log('2')
const { code, message } = await rechargeApprove({ id: record, status: 1, reason })
console.log('3')
if (code !== OK) {
alertInfo(message)
return;
@ -131,7 +127,6 @@ Component({
if (res.cancel) {
}
if (res.confirm) {
loadingFunc(async () => {
const { code, message } = await rechargeApprove({ id: record, status: 0, })

View File

@ -47,7 +47,7 @@
<van-radio wx:if="{{item.orderStatus !== '已退回'}}" name="{{item.id}}"></van-radio>
</view>
<view class="th" style="width: 200rpx"> {{ item.tenement.shortName }} </view>
<view class="th" style="width: 200rpx"> {{ item.amount }} </view>
<view class="th" style="width: 200rpx"> {{ item.money }} </view>
<view class="th" style="width: 200rpx">
<view class="primaryTextBtn" bind:tap="jumpToDetail" data-id="{{item.id}}">
查看详细