• 必须在列表页面使用
    • 此功能只支持二合一接口调用 , 不支持单接口
    • 如需多传字段 生成后再修改生成的代码即可

    image.png
    操作内生成两个 按钮 代码 , 并且只有相反状态才会显示
    image.png
    生成的函数代码
    image.png
    image.png
    模板源码

    1. handlefreezeOrThaw(row, type) {
    2. if (this.load) return;
    3. let title = "此操作将冻结账号, 是否继续?";
    4. if (type == 1) title = "此操作将解冻账号, 是否继续?";
    5. this.$confirm(title, "提示", {
    6. confirmButtonText: "确定",
    7. cancelButtonText: "取消",
    8. type: "warning",
    9. }).then(() => {
    10. this.load = true;
    11. this.$request.post({
    12. url: "/admin/adInfo/freezeOrThaw",
    13. params: {
    14. id: row.id,
    15. status: type,
    16. },
    17. success: (res) => {
    18. this.$message.success("操作成功");
    19. this.getList();
    20. },
    21. });
    22. })
    23. },