mitao
2024-07-08 022a7ff7abf82cd2546e18071ade5228b4e2339f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@layout("/common/_container.html"){
<div class="row">
    <div class="col-sm-12">
        <div class="ibox float-e-margins">
            <div class="ibox-title">
                <h5>注销店铺</h5>
            </div>
            <div class="ibox-content">
                <div class="row row-lg">
                    <div class="col-sm-10" style="padding-left: 2em;">
                        <div class="row">
                            <h3>在注销账号前,请进行以下风险确认:</h3>
                            <label style="display: block">1.钱包清算<br>
                                请确认账户中是否还有余额,米粒,贡献值等财务信息,注销账号后将全部清零
                            </label>
                            <label style="display: block">2.历史数据清空<br>
                                您的商品、订单、交易、评价等数据将被清空,无法查询或恢复。
                            </label>
                        </div>
                        <div class="row btn-group-m-t">
                            <div class="col-sm-10 col-sm-offset-5">
                                <#button btnCss="info" name="立即注销" id="ensure" icon="fa-check" clickFun="Opera.open_fun()"/>
                            </div>
                            <script>
                                var Opera = {};
 
 
                                Opera.open_fun = function () {
                                    Feng.confirm( "是否确认注销?", function () {
                                        Feng.base_ajax( "/memMerchant/logoutMerchant", {}, function ( data) {
                                            Feng.success( "注销账号成功");
 
                                            parent.location.href = Feng.ctxPath + "/logout";
                                        });
                                    });
                                }
                            </script>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
@}