fix:充值订单和业务订单bug修复
This commit is contained in:
parent
bbcc14a395
commit
181228bb59
|
|
@ -21,38 +21,7 @@
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<el-row :gutter="10" class="mb8">
|
<el-row :gutter="10" class="mb8">
|
||||||
<el-col :span="1.5">
|
|
||||||
<el-button
|
|
||||||
type="primary"
|
|
||||||
plain
|
|
||||||
icon="el-icon-plus"
|
|
||||||
size="mini"
|
|
||||||
@click="handleAdd"
|
|
||||||
v-hasPermi="['ai:order:add']"
|
|
||||||
>新增</el-button>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="1.5">
|
|
||||||
<el-button
|
|
||||||
type="success"
|
|
||||||
plain
|
|
||||||
icon="el-icon-edit"
|
|
||||||
size="mini"
|
|
||||||
:disabled="single"
|
|
||||||
@click="handleUpdate"
|
|
||||||
v-hasPermi="['ai:order:edit']"
|
|
||||||
>修改</el-button>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="1.5">
|
|
||||||
<el-button
|
|
||||||
type="danger"
|
|
||||||
plain
|
|
||||||
icon="el-icon-delete"
|
|
||||||
size="mini"
|
|
||||||
:disabled="multiple"
|
|
||||||
@click="handleDelete"
|
|
||||||
v-hasPermi="['ai:order:remove']"
|
|
||||||
>删除</el-button>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button
|
<el-button
|
||||||
type="warning"
|
type="warning"
|
||||||
|
|
@ -60,7 +29,7 @@
|
||||||
icon="el-icon-download"
|
icon="el-icon-download"
|
||||||
size="mini"
|
size="mini"
|
||||||
@click="handleExport"
|
@click="handleExport"
|
||||||
v-hasPermi="['ai:order:export']"
|
v-hasPermi="['ai:groupChargeOrder:export']"
|
||||||
>导出</el-button>
|
>导出</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" />
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" />
|
||||||
|
|
@ -88,24 +57,6 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="备注" align="center" prop="remark" min-width="160" show-overflow-tooltip />
|
<el-table-column label="备注" align="center" prop="remark" min-width="160" show-overflow-tooltip />
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-button
|
|
||||||
size="mini"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-edit"
|
|
||||||
@click="handleUpdate(scope.row)"
|
|
||||||
v-hasPermi="['ai:order:edit']"
|
|
||||||
>修改</el-button>
|
|
||||||
<el-button
|
|
||||||
size="mini"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-delete"
|
|
||||||
@click="handleDelete(scope.row)"
|
|
||||||
v-hasPermi="['ai:order:remove']"
|
|
||||||
>删除</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination
|
<pagination
|
||||||
|
|
@ -34,7 +34,7 @@ public class AiChargeRefundOrderController extends BaseController
|
||||||
/**
|
/**
|
||||||
* 查询团队(部门)充值退款订单列表
|
* 查询团队(部门)充值退款订单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('ai:order:list')")
|
@PreAuthorize("@ss.hasPermi('ai:groupChargeOrder:list')")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(AiChargeRefundOrder aiChargeRefundOrder)
|
public TableDataInfo list(AiChargeRefundOrder aiChargeRefundOrder)
|
||||||
{
|
{
|
||||||
|
|
@ -46,7 +46,7 @@ public class AiChargeRefundOrderController extends BaseController
|
||||||
/**
|
/**
|
||||||
* 导出团队(部门)充值退款订单列表
|
* 导出团队(部门)充值退款订单列表
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('ai:order:export')")
|
@PreAuthorize("@ss.hasPermi('ai:groupChargeOrder:export')")
|
||||||
@Log(title = "团队(部门)充值退款订单", businessType = BusinessType.EXPORT)
|
@Log(title = "团队(部门)充值退款订单", businessType = BusinessType.EXPORT)
|
||||||
@PostMapping("/export")
|
@PostMapping("/export")
|
||||||
public void export(HttpServletResponse response, AiChargeRefundOrder aiChargeRefundOrder)
|
public void export(HttpServletResponse response, AiChargeRefundOrder aiChargeRefundOrder)
|
||||||
|
|
@ -59,7 +59,7 @@ public class AiChargeRefundOrderController extends BaseController
|
||||||
/**
|
/**
|
||||||
* 获取团队(部门)充值退款订单详细信息
|
* 获取团队(部门)充值退款订单详细信息
|
||||||
*/
|
*/
|
||||||
@PreAuthorize("@ss.hasPermi('ai:order:query')")
|
@PreAuthorize("@ss.hasPermi('ai:groupChargeOrder:query')")
|
||||||
@GetMapping(value = "/{id}")
|
@GetMapping(value = "/{id}")
|
||||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue