培训班管理,处理冲突

This commit is contained in:
liuyuan
2025-04-16 09:10:23 +08:00
1484 changed files with 2256 additions and 286077 deletions

View File

@@ -65,6 +65,7 @@
<common-list
:dataList="MoneyRecord"
isCondition="true"
@hancleClick="goClick"
isNoIcon="true"
label="orderType"
>
@@ -286,6 +287,17 @@ export default {
},
//方法
methods: {
goClick(data){
if(data.relationId){
uni.navigateTo({
url: "/pages/bookShop/orderLCont?orderId=" +
id
});
}
},
// 获取
getData() {
var data = {

View File

@@ -33,9 +33,9 @@
label="orderType"
>
<template slot="labelSlot" slot-scope="slotProps">
<view class="label_content AC_List">
<view class="label_content AC_List" @click="slotProps.row.relationId?goClick(slotProps.row.relationId):''">
<view class="left">
<view class="title">{{ slotProps.row.orderType }}</view>
<view class="title"><view class="AC_time">{{ slotProps.row.createTime }} </view></view>
</view>
<view
:class="`right ${
@@ -43,13 +43,14 @@
}`"
>
<text v-if="slotProps.row.changeAmount > 0">+</text>
<text>{{ slotProps.row.changeAmount }}</text> </view
<text>{{ slotProps.row.changeAmount }}</text>
</view
><view class="AC_mark" v-if="slotProps.row.remark">{{
slotProps.row.remark
}}</view
><view class="AC_time">{{ slotProps.row.createTime }} </view>
>
</view>
<text class="order" style="font-size: 12px;" v-if="slotProps.row.relationId" @click="goClick(slotProps.row.relationId)">订单详情</text>
<!-- <text class="order" style="font-size: 12px;" v-if="slotProps.row.relationId" @click="goClick(slotProps.row.relationId)">订单详情</text> -->
</template>
</common-list>
</view>
@@ -409,7 +410,7 @@ export default {
overflow: hidden;
.left {
width: calc(100% - 120rpx) !important;
width: calc(100% - 200rpx) !important;
font-weight: 700;
float: left;
color: #333;
@@ -441,15 +442,18 @@ export default {
}
.AC_mark {
width: 100%;
font-size: 28rpx;
margin-top: 10rpx;
margin-bottom: 15rpx;
// white-space: nowrap;
color: #343434;
float: left;
overflow: hidden;
}
.AC_time {
// width: 100%;
color: #909090;
font-size: 28rpx;
}