You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.4 KiB
85 lines
1.4 KiB
import Mock from 'mockjs'
|
|
|
|
// 生成数据列表
|
|
var dataList = []
|
|
for (let i = 0; i < Math.floor(Math.random() * 10 + 1); i++) {
|
|
dataList.push(Mock.mock({
|
|
'id': '@increment',
|
|
'paramKey': '@first',
|
|
'paramValue': '@last',
|
|
'remark': '@csentence'
|
|
}))
|
|
}
|
|
|
|
// 获取参数列表
|
|
export function list () {
|
|
return {
|
|
// isOpen: false,
|
|
url: '/sys/config/list',
|
|
type: 'get',
|
|
data: {
|
|
'msg': 'success',
|
|
'code': 0,
|
|
'page': {
|
|
'totalCount': dataList.length,
|
|
'pageSize': 20,
|
|
'totalPage': 1,
|
|
'currPage': 1,
|
|
'list': dataList
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 获取参数信息
|
|
export function info () {
|
|
return {
|
|
// isOpen: false,
|
|
url: '/sys/config/info',
|
|
type: 'get',
|
|
data: {
|
|
'msg': 'success',
|
|
'code': 0,
|
|
'config': dataList[0]
|
|
}
|
|
}
|
|
}
|
|
|
|
// 添加参数
|
|
export function add () {
|
|
return {
|
|
// isOpen: false,
|
|
url: '/sys/config/save',
|
|
type: 'post',
|
|
data: {
|
|
'msg': 'success',
|
|
'code': 0
|
|
}
|
|
}
|
|
}
|
|
|
|
// 修改参数
|
|
export function update () {
|
|
return {
|
|
// isOpen: false,
|
|
url: '/sys/config/update',
|
|
type: 'post',
|
|
data: {
|
|
'msg': 'success',
|
|
'code': 0
|
|
}
|
|
}
|
|
}
|
|
|
|
// 删除参数
|
|
export function del () {
|
|
return {
|
|
// isOpen: false,
|
|
url: '/sys/config/delete',
|
|
type: 'post',
|
|
data: {
|
|
'msg': 'success',
|
|
'code': 0
|
|
}
|
|
}
|
|
}
|