mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-18 09:35:29 +08:00
Merge remote-tracking branch 'origin/master' into master
This commit is contained in:
commit
797a9c3cd8
@ -0,0 +1,106 @@
|
||||
package com.ruoyi.system.fantang.controller;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.system.fantang.domain.FtWeekMenuDao;
|
||||
import com.ruoyi.system.fantang.service.IFtWeekMenuDaoService;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 每周菜单Controller
|
||||
*
|
||||
* @author ft
|
||||
* @date 2020-11-27
|
||||
*/
|
||||
@RequiredArgsConstructor(onConstructor_ = @Autowired)
|
||||
@RestController
|
||||
@RequestMapping("/fantang/weekMenu")
|
||||
public class FtWeekMenuDaoController extends BaseController {
|
||||
|
||||
private final IFtWeekMenuDaoService iFtWeekMenuDaoService;
|
||||
|
||||
/**
|
||||
* 查询每周菜单列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('fantang:weekMenu:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(FtWeekMenuDao ftWeekMenuDao) {
|
||||
startPage();
|
||||
LambdaQueryWrapper<FtWeekMenuDao> lqw = Wrappers.lambdaQuery(ftWeekMenuDao);
|
||||
if (ftWeekMenuDao.getDinnerType() != null) {
|
||||
lqw.eq(FtWeekMenuDao::getDinnerType, ftWeekMenuDao.getDinnerType());
|
||||
}
|
||||
if (ftWeekMenuDao.getWeekday() != null) {
|
||||
lqw.eq(FtWeekMenuDao::getWeekday, ftWeekMenuDao.getWeekday());
|
||||
}
|
||||
if (ftWeekMenuDao.getFlag() != null) {
|
||||
lqw.eq(FtWeekMenuDao::getFlag, ftWeekMenuDao.getFlag());
|
||||
}
|
||||
List<FtWeekMenuDao> list = iFtWeekMenuDaoService.list(lqw);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出每周菜单列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('fantang:weekMenu:export')")
|
||||
@Log(title = "每周菜单", businessType = BusinessType.EXPORT)
|
||||
@GetMapping("/export")
|
||||
public AjaxResult export(FtWeekMenuDao ftWeekMenuDao) {
|
||||
LambdaQueryWrapper<FtWeekMenuDao> lqw = new LambdaQueryWrapper<FtWeekMenuDao>(ftWeekMenuDao);
|
||||
List<FtWeekMenuDao> list = iFtWeekMenuDaoService.list(lqw);
|
||||
ExcelUtil<FtWeekMenuDao> util = new ExcelUtil<FtWeekMenuDao>(FtWeekMenuDao.class);
|
||||
return util.exportExcel(list, "weekMenu");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取每周菜单详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('fantang:weekMenu:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return AjaxResult.success(iFtWeekMenuDaoService.getById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增每周菜单
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('fantang:weekMenu:add')")
|
||||
@Log(title = "每周菜单", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody FtWeekMenuDao ftWeekMenuDao) {
|
||||
return toAjax(iFtWeekMenuDaoService.save(ftWeekMenuDao) ? 1 : 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改每周菜单
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('fantang:weekMenu:edit')")
|
||||
@Log(title = "每周菜单", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody FtWeekMenuDao ftWeekMenuDao) {
|
||||
return toAjax(iFtWeekMenuDaoService.updateById(ftWeekMenuDao) ? 1 : 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除每周菜单
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('fantang:weekMenu:remove')")
|
||||
@Log(title = "每周菜单", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
return toAjax(iFtWeekMenuDaoService.removeByIds(Arrays.asList(ids)) ? 1 : 0);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,58 @@
|
||||
package com.ruoyi.system.fantang.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.ToString;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 每周菜单对象 ft_week_menu
|
||||
*
|
||||
* @author ft
|
||||
* @date 2020-11-27
|
||||
*/
|
||||
@Data
|
||||
@ToString
|
||||
@EqualsAndHashCode
|
||||
@NoArgsConstructor
|
||||
@Accessors(chain = true)
|
||||
@TableName("ft_week_menu")
|
||||
public class FtWeekMenuDao implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
|
||||
/** id */
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
|
||||
/** 用餐类型 */
|
||||
@Excel(name = "用餐类型")
|
||||
private Integer dinnerType;
|
||||
|
||||
/** 星期几 */
|
||||
@Excel(name = "星期几")
|
||||
private Integer weekday;
|
||||
|
||||
/** 菜品列表 */
|
||||
@Excel(name = "菜品列表")
|
||||
private String foods;
|
||||
|
||||
/** 总价格 */
|
||||
@Excel(name = "总价格")
|
||||
private BigDecimal price;
|
||||
|
||||
/** 启用标志 */
|
||||
@Excel(name = "启用标志")
|
||||
private Integer flag;
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.ruoyi.system.fantang.mapper;
|
||||
|
||||
import com.ruoyi.system.fantang.domain.FtWeekMenuDao;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* 每周菜单Mapper接口
|
||||
*
|
||||
* @author ft
|
||||
* @date 2020-11-27
|
||||
*/
|
||||
public interface FtWeekMenuDaoMapper extends BaseMapper<FtWeekMenuDao> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package com.ruoyi.system.fantang.service;
|
||||
|
||||
import com.ruoyi.system.fantang.domain.FtWeekMenuDao;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* 每周菜单Service接口
|
||||
*
|
||||
* @author ft
|
||||
* @date 2020-11-27
|
||||
*/
|
||||
public interface IFtWeekMenuDaoService extends IService<FtWeekMenuDao> {
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package com.ruoyi.system.fantang.service.impl;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.fantang.mapper.FtWeekMenuDaoMapper;
|
||||
import com.ruoyi.system.fantang.domain.FtWeekMenuDao;
|
||||
import com.ruoyi.system.fantang.service.IFtWeekMenuDaoService;
|
||||
|
||||
/**
|
||||
* 每周菜单Service业务层处理
|
||||
*
|
||||
* @author ft
|
||||
* @date 2020-11-27
|
||||
*/
|
||||
@Service
|
||||
public class FtWeekMenuDaoServiceImpl extends ServiceImpl<FtWeekMenuDaoMapper, FtWeekMenuDao> implements IFtWeekMenuDaoService {
|
||||
|
||||
}
|
||||
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.fantang.mapper.FtWeekMenuDaoMapper">
|
||||
|
||||
<resultMap type="FtWeekMenuDao" id="FtWeekMenuDaoResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="dinnerType" column="dinner_type" />
|
||||
<result property="weekday" column="weekday" />
|
||||
<result property="foods" column="foods" />
|
||||
<result property="price" column="price" />
|
||||
<result property="flag" column="flag" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
||||
53
ruoyi-ui/src/api/fantang/weekMenu.js
Normal file
53
ruoyi-ui/src/api/fantang/weekMenu.js
Normal file
@ -0,0 +1,53 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询每周菜单列表
|
||||
export function listWeekMenu(query) {
|
||||
return request({
|
||||
url: '/fantang/weekMenu/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询每周菜单详细
|
||||
export function getWeekMenu(id) {
|
||||
return request({
|
||||
url: '/fantang/weekMenu/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增每周菜单
|
||||
export function addWeekMenu(data) {
|
||||
return request({
|
||||
url: '/fantang/weekMenu',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改每周菜单
|
||||
export function updateWeekMenu(data) {
|
||||
return request({
|
||||
url: '/fantang/weekMenu',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除每周菜单
|
||||
export function delWeekMenu(id) {
|
||||
return request({
|
||||
url: '/fantang/weekMenu/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 导出每周菜单
|
||||
export function exportWeekMenu(query) {
|
||||
return request({
|
||||
url: '/fantang/weekMenu/export',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
302
ruoyi-ui/src/views/fantang/weekMenu/index.vue
Normal file
302
ruoyi-ui/src/views/fantang/weekMenu/index.vue
Normal file
@ -0,0 +1,302 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="用餐类型" prop="dinnerType">
|
||||
<el-select v-model="queryParams.dinnerType" placeholder="请选择用餐类型" clearable size="small">
|
||||
<el-option label="请选择字典生成" value="" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="星期几" prop="weekday">
|
||||
<el-select v-model="queryParams.weekday" placeholder="请选择星期几" clearable size="small">
|
||||
<el-option label="请选择字典生成" value="" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="启用标志" prop="flag">
|
||||
<el-input
|
||||
v-model="queryParams.flag"
|
||||
placeholder="请输入启用标志"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['fantang:weekMenu:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['fantang:weekMenu:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['fantang:weekMenu:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
icon="el-icon-download"
|
||||
size="mini"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['fantang:weekMenu:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="weekMenuList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="id" align="center" prop="id" v-if="false"/>
|
||||
<el-table-column label="用餐类型" align="center" prop="dinnerType" />
|
||||
<el-table-column label="星期几" align="center" prop="weekday" />
|
||||
<el-table-column label="菜品列表" align="center" prop="foods" />
|
||||
<el-table-column label="总价格" align="center" prop="price" />
|
||||
<el-table-column label="启用标志" align="center" prop="flag" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['fantang:weekMenu:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['fantang:weekMenu:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改每周菜单对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="用餐类型" prop="dinnerType">
|
||||
<el-select v-model="form.dinnerType" placeholder="请选择用餐类型">
|
||||
<el-option label="请选择字典生成" value="" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="星期几" prop="weekday">
|
||||
<el-select v-model="form.weekday" placeholder="请选择星期几">
|
||||
<el-option label="请选择字典生成" value="" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="菜品列表" prop="foods">
|
||||
<el-select v-model="form.foods" placeholder="请选择菜品列表">
|
||||
<el-option label="请选择字典生成" value="" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="启用标志" prop="flag">
|
||||
<el-input v-model="form.flag" placeholder="请输入启用标志" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listWeekMenu, getWeekMenu, delWeekMenu, addWeekMenu, updateWeekMenu, exportWeekMenu } from "@/api/fantang/weekMenu";
|
||||
|
||||
export default {
|
||||
name: "WeekMenu",
|
||||
components: {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 每周菜单表格数据
|
||||
weekMenuList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
dinnerType: null,
|
||||
weekday: null,
|
||||
flag: null
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
dinnerType: [
|
||||
{ required: true, message: "用餐类型不能为空", trigger: "change" }
|
||||
],
|
||||
weekday: [
|
||||
{ required: true, message: "星期几不能为空", trigger: "change" }
|
||||
],
|
||||
foods: [
|
||||
{ required: true, message: "菜品列表不能为空", trigger: "change" }
|
||||
],
|
||||
flag: [
|
||||
{ required: true, message: "启用标志不能为空", trigger: "blur" }
|
||||
]
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询每周菜单列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listWeekMenu(this.queryParams).then(response => {
|
||||
this.weekMenuList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
dinnerType: null,
|
||||
weekday: null,
|
||||
foods: null,
|
||||
price: null,
|
||||
flag: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.id)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加每周菜单";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getWeekMenu(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改每周菜单";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updateWeekMenu(this.form).then(response => {
|
||||
this.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addWeekMenu(this.form).then(response => {
|
||||
this.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$confirm('是否确认删除每周菜单编号为"' + ids + '"的数据项?', "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
}).then(function() {
|
||||
return delWeekMenu(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.msgSuccess("删除成功");
|
||||
})
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
const queryParams = this.queryParams;
|
||||
this.$confirm('是否确认导出所有每周菜单数据项?', "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning"
|
||||
}).then(function() {
|
||||
return exportWeekMenu(queryParams);
|
||||
}).then(response => {
|
||||
this.download(response.msg);
|
||||
})
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Loading…
Reference in New Issue
Block a user