xiaoyong931011
2021-05-25 264980073d03ead5cfce39f87c611de623db4d3f
20210525 申诉单
4 files modified
16 ■■■■■ changed files
src/main/java/com/xcong/excoin/modules/otc/vo/OtcAppealInfoVo.java 5 ●●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/OtcOrderAppealMapper.xml 1 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/otc/otcAppealInfo.html 4 ●●●● patch | view | raw | blame | history
src/main/resources/templates/febs/views/modules/otc/otcAppealList.html 6 ●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/otc/vo/OtcAppealInfoVo.java
@@ -1,5 +1,6 @@
package com.xcong.excoin.modules.otc.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import lombok.Data;
@@ -32,9 +33,13 @@
    public static final Integer STATUS_FOUR = 4;
    //付款时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date payTime;
    //完成时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date finishTime;
src/main/resources/mapper/modules/OtcOrderAppealMapper.xml
@@ -10,6 +10,7 @@
        otc_order_appeal a
        LEFT JOIN member m ON m.id = a.member_id
        LEFT JOIN member_authentication b ON b.member_id = a.member_id
        LEFT JOIN otc_order c ON c.id = a.order_id
        <where>
            <if test="record != null" >
                <if test="record.account!=null and record.account!=''">
src/main/resources/templates/febs/views/modules/otc/otcAppealInfo.html
@@ -65,14 +65,14 @@
        <div class="layui-form-item">
            <label class="layui-form-label febs-form-item-require">付款时间:</label>
            <div class="layui-input-block">
                <input type="date" name="payTime"data-th-id="${member.payTime}"
                <input type="text" name="payTime"data-th-id="${member.payTime}"
                       autocomplete="off" class="layui-input" readonly>
            </div>
        </div>
        <div class="layui-form-item">
            <label class="layui-form-label febs-form-item-require">完成时间:</label>
            <div class="layui-input-block">
                <input type="date" name="finishTime"data-th-id="${member.finishTime}"
                <input type="text" name="finishTime"data-th-id="${member.finishTime}"
                       autocomplete="off" class="layui-input" readonly>
            </div>
        </div>
src/main/resources/templates/febs/views/modules/otc/otcAppealList.html
@@ -74,9 +74,9 @@
            var data = obj.data,
                layEvent = obj.event;
            if (layEvent === 'dealIng') {
                febs.modal.confirm('处理', '开始处理申诉?', function () {
                    dealIng(data.id);
                });
                // febs.modal.confirm('处理', '开始处理申诉?', function () {
                //     dealIng(data.id);
                // });
                febs.modal.open( '详情', 'modules/otc/otcAppealInfo/' + data.id, {
                    maxmin: true,
                });