wupengfei 1 year ago
parent
commit
6e3f2b9f0c
2 changed files with 10 additions and 6 deletions
  1. 5 5
      .idea/workspace.xml
  2. 5 1
      application/order/view/refund_case/index.html

+ 5 - 5
.idea/workspace.xml

@@ -3,7 +3,7 @@
   <component name="ChangeListManager">
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/api/controller/Order.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Order.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/order/view/refund_case/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/order/view/refund_case/index.html" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -138,7 +138,7 @@
     <property name="WebServerToolWindowPanel.toolwindow.show.date" value="false" />
     <property name="WebServerToolWindowPanel.toolwindow.show.permissions" value="false" />
     <property name="WebServerToolWindowPanel.toolwindow.show.size" value="false" />
-    <property name="last_opened_file_path" value="$PROJECT_DIR$/application/order/controller" />
+    <property name="last_opened_file_path" value="$PROJECT_DIR$/application/order/view" />
     <property name="node.js.detected.package.eslint" value="true" />
     <property name="node.js.detected.package.tslint" value="true" />
     <property name="node.js.path.for.package.eslint" value="project" />
@@ -150,11 +150,11 @@
   </component>
   <component name="RecentsManager">
     <key name="CopyFile.RECENT_KEYS">
+      <recent name="D:\zs\gaoyixia\application\order\view" />
+      <recent name="D:\zs\gaoyixia\application\order\controller" />
       <recent name="D:\zs\gaoyixia\application\common\model" />
       <recent name="D:\zs\gaoyixia\application\mall\view\goods_cate" />
       <recent name="\" />
-      <recent name="D:\zs\gaoyixia\application\operate\view\recruit" />
-      <recent name="D:\zs\gaoyixia\application\operate\controller" />
     </key>
     <key name="MoveFile.RECENT_KEYS">
       <recent name="D:\zs\gaoyixia\public" />
@@ -416,7 +416,7 @@
       <workItem from="1693874624473" duration="24108000" />
       <workItem from="1693961752874" duration="17119000" />
       <workItem from="1694048197092" duration="22485000" />
-      <workItem from="1694134843963" duration="26472000" />
+      <workItem from="1694134843963" duration="27774000" />
     </task>
     <servers />
   </component>

+ 5 - 1
application/order/view/refund_case/index.html

@@ -1,7 +1,7 @@
 {extend name='admin@main'}
-
 {block name="button"}
 <button data-modal='{:url("add")}' data-title="添加" class='layui-btn layui-btn-sm layui-btn-primary'>添加</button>
+<button data-action='{:url("remove")}'  data-confirm="确定要删除吗?" data-csrf="{:systoken('del')}" data-rule="id#{key}" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</button>
 {/block}
 
 {block name="content"}
@@ -9,6 +9,8 @@
     <table class="layui-table margin-top-20" lay-skin="line">
         <thead>
         <tr>
+            <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
+            <th class='text-left nowrap' >ID</th>
             <th class='text-left nowrap' style="width: 70%">标题</th>
             <th class="text-left nowrap" >操作</th>
         </tr>
@@ -16,6 +18,8 @@
         <tbody>
         {foreach $list as $key=>$vo}
         <tr>
+            <td class='list-table-check-td think-checkbox'><input class="list-check-box" value='{$vo.id}' type='checkbox'></td>
+            <td class='text-left nowrap'>{$vo.id|default=''}</td>
             <td class='text-left nowrap'>{$vo.title|default=''}</td>
             <td class='text-left nowrap' >
                 <a data-title="编辑" class="layui-btn layui-btn-sm" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>