| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <!-- <link href="__CDN__/assets/libs/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> -->
- <script src="__CDN__/assets/libs/jquery/dist/jquery.min.js"></script>
- <script src="__CDN__/assets/libs/bootstrap/dist/js/bootstrap.min.js"></script>
- <script src="__CDN__/assets/libs/sweetalert/sweetalert.min.js"></script>
- <style>
- .confirm-btn {
- background-color: #f75444 !important;
- color: white !important;
- }
- </style>
- <table class="table table-striped">
- <thead>
- <tr>
- <th>{:__('订单ID')}</th>
- <th>{:__('订单号')}</th>
- <th>{:__('商品')}</th>
- <th>{:__('图片')}</th>
- <th>{:__('状态')}</th>
- </tr>
- </thead>
- <tbody>
- {volist name="row" id="vo" }
- <tr>
- <td>{$vo.id}</td>
- <td>{$vo.order_no}</td>
- <td>{$vo.zh_name|htmlentities}</td>
- <td><img src="{$vo.thum|htmlentities}" width="100px" height="80px"></td>
- <td>
- {switch name="vo.status"}
- {case value="0"}
- <span class="label label-success">{$vo.status_txt}</span>
- {/case}
- {case value="1"}
- <span class="label label-success">{$vo.status_txt}</span>
- {/case}
- {case value="2"}
- <span class="label label-success">{$vo.status_txt}</span>
- {/case}
- {case value="3"}
- <span class="label label-success">{$vo.status_txt}</span>
- {/case}
- {case value="4"}
- <span class="label label-danger">{$vo.status_txt}</span>
- {/case}
- {case value="5"}
- <span class="label label-default">{$vo.status_txt}</span>
- {/case}
- {case value="6"}
- <span class="label label-success">{$vo.status_txt}</span>
- {eq name="userpledge_status" value="0"}
- <a href="javascript:;" class="btn btn-xs btn-danger cancelStorage" data-id="{$vo.id}"
- data-userpledge_id="{$userpledge_id}">{:__('Cancel storage')}</a>
-
- {/eq}
- {/case}
- {default /}
- {/switch}
- </td>
- </tr>
- {/volist}
- </tbody>
- </table>
- <div class="hide layer-footer">
- <label class="control-label col-xs-12 col-sm-2"></label>
- <div class="col-xs-12 col-sm-8">
- <button type="reset" class="btn btn-primary btn-embossed btn-close"
- onclick="Layer.closeAll();">{:__('Close')}</button>
- </div>
- </div>
- <script>
- $(function () {
- $(".cancelStorage").click(function () {
- var id = $(this).data('id');
- var userpledgeId = $(this).data('userpledge_id');
- swal({
- title: "取消存储",
- icon: "warning",
- buttons: {
- cancel: "取消",
- catch: {
- text: "确认",
- value: "catch",
- className: "confirm-btn"
- }
- },
- dangerMode: true,
- }
- )
- .then((willDelete) => {
- if (willDelete) {
- $.ajax({
- url: "user/Userpledge/cancelStorage",
- type: "POST",
- data: { id: id, userpledgeId: userpledgeId },
- dataType: "json",
- success: function (response) {
- let code = response.code;
- if (code == 1) {
- window.location.reload(); // 刷新父页面
- }
- },
- error: function (xhr, status, error) {
- console.error("请求失败", error);
- },
- complete: function () {
- console.log("请求完成(无论成功/失败)");
- }
- });
- } else {
- // console.log("取消")
- }
- });
-
- })
- })
- </script>
|