jiangping
2025-07-19 c5d1a8fa28cb86a7b5f7a3b818a240fd6ab68dcb
前端
已修改5个文件
17 ■■■■■ 文件已修改
admin/src/components/business/OperaMemberDetailWindow.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
small-program/pages/balance-details/balance-details.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
small-program/pages/employment-certification/employment-certification.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
small-program/pages/order-details/order-details.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
small-program/utils/http.interceptor.js 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/components/business/OperaMemberDetailWindow.vue
@@ -82,7 +82,11 @@
        </el-table-column>
        <el-table-column prop="createTime" label="收支时间" min-width="150px"  align="center"></el-table-column>
        <el-table-column prop="typeName" label="业务类型" min-width="100px"  align="center"></el-table-column>
        <el-table-column prop="transactionNo" label="订单/交易号" min-width="100px"  align="center">  </el-table-column>
        <el-table-column prop="transactionNo" label="订单/交易号" min-width="100px"  align="center">
          <template slot-scope="{row}">
            <span >{{ row.transactionNo  }}</span>
          </template>
        </el-table-column>
      </el-table>
      <el-pagination
          @current-change="handleCurrentChange0"
@@ -359,7 +363,7 @@
    changeType (e) {
      this.searchForm.acceptMemberId = -1
      this.searchForm.releaseMemberId = -1
      if (e == 0) {
      if (e == 1) {
        this.searchForm.releaseMemberId = this.info.id || -1
        this.searchForm.acceptMemberId = null
      } else {
small-program/pages/balance-details/balance-details.vue
@@ -10,7 +10,7 @@
            <view v-if="dataList && dataList.length" class="mx-list-item" v-for="(item, index) in dataList" :key="index">
                <view class="mx-list-item-a">
                    <text>{{item.remark || ''}}</text>
                    <text>{{(item.optType||1 * (item.amount||0)/100).toFixed(2) }}元</text>
                    <text>{{((item.optType||1) * (item.amount||0)/100).toFixed(2) }}元</text>
                </view>
                <view class="mx-list-item-b">
                    <text>交易号:{{item.transactionNo || '-'}}</text>
small-program/pages/employment-certification/employment-certification.vue
@@ -350,8 +350,8 @@
                                    icon: "none",
                                    duration: 2000
                                });
                                uni.navigateBack({
                                    delta: 1
                                uni.switchTab({
                                    url:'/pages/mine/mine'
                                });
                            }
                        }).finally(() => {
small-program/pages/order-details/order-details.vue
@@ -58,7 +58,7 @@
            <view class="order-info-address">
                <image src="/static/icon/order_ic_time@2x.png" mode="widthFix"></image>
                <view class="order-info-address-info">
                    <text>{{info.startDate || ''}}-{{info.endDate || ''}}({{info.totalDays||0}}天)</text>
                    <text>{{info.startDate || ''}}{{' 至 '}}{{info.endDate || ''}}({{info.totalDays||0}}天)</text>
                </view>
            </view>
            <view class="address" v-if="info.type===1 && wayList && wayList.length>0">
@@ -445,7 +445,6 @@
                    if(res.code ===200){
                        that.show=false
                        uni.showToast({ title: '订单取消成功', icon: 'error', duration: 2000 });
                        that.getOrderData()
                        if(that.userInfo.id !== that.info.releaseMemberId){
                            uni.navigateBack({ delta: 1 })
                        }else{
small-program/utils/http.interceptor.js