6 changed files with 818 additions and 67 deletions
@ -0,0 +1,49 @@
|
||||
import request from '@/router/axios'; |
||||
//列表
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/api/iot-sim/device/page', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/api/iot-sim/device/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
//新增
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/api/iot-sim/device/save', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
//删除
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/api/iot-sim/device/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
//修改
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/api/iot-sim/device/update', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,49 @@
|
||||
import request from '@/router/axios'; |
||||
//列表
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/api/iot-sim/flowpool/page', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/api/iot-sim/flowpool/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
//新增
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/api/iot-sim/flowpool/save', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
//删除
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/api/iot-sim/flowpool/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
//修改
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/api/iot-sim/flowpool/update', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,299 @@
|
||||
<template> |
||||
<basic-container> |
||||
<avue-crud |
||||
:option="option" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:page.sync="page" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
v-model="form" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad" |
||||
> |
||||
</avue-crud> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getDetail, |
||||
getList, |
||||
add, |
||||
remove, |
||||
update, |
||||
} from "@/api/communication/device"; |
||||
import { mapGetters } from "vuex"; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
loading: false, |
||||
page: { |
||||
pageSize: 10, |
||||
currentPage: 1, |
||||
total: 0, |
||||
}, |
||||
option: { |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
addBtn: true, |
||||
viewBtn: true, |
||||
delBtn: true, |
||||
columnBtn: false, |
||||
selection: false, |
||||
dialogClickModal: false, |
||||
dialogWidth: "60%", |
||||
column: [ |
||||
{ |
||||
label: "设备序列号", |
||||
prop: "deviceSn", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入设备序列号", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "设备名称", |
||||
prop: "name", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入设备名称", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
|
||||
{ |
||||
label: "贴片卡iccid", |
||||
prop: "simChipIccid", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
hide: true, |
||||
rules: [ |
||||
{ |
||||
required: false, |
||||
message: "请输入贴片卡id", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "插拔卡iccid", |
||||
prop: "simExtraIccid", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
hide: true, |
||||
rules: [ |
||||
{ |
||||
required: false, |
||||
message: "请输入插拔卡id", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "sn码", |
||||
prop: "sn", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入sn码", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "是否出库", |
||||
prop: "isDeliver", |
||||
type: "select", |
||||
dicUrl: "/api/iot-system/dict/dictionary?code=yes_no", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey", |
||||
}, |
||||
dataType: "number", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: true, |
||||
rules: [ |
||||
{ required: true, message: "请选择是否出库", trigger: "change" }, |
||||
], |
||||
}, |
||||
{ |
||||
label: "设备读卡类型", |
||||
type: "select", |
||||
span: 12, |
||||
dicUrl: "/api/iot-system/dict/dictionary?code=device_type", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey", |
||||
}, |
||||
dataType: "number", |
||||
prop: "type", |
||||
labelWidth: 130, |
||||
searchLabelWidth: 140, |
||||
search: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请选择设备读卡类型", |
||||
trigger: "change", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "管理员账号", |
||||
prop: "account", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入管理员账号", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
], |
||||
}, |
||||
data: [], |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
permissionList() { |
||||
return { |
||||
// viewBtn: this.vaildData(this.permission.sourceApi_view, false), |
||||
// editBtn: this.vaildData(this.permission.sourceApi_edit, false), |
||||
// delBtn: this.vaildData(this.permission.sourceApi_delete, false), |
||||
}; |
||||
}, |
||||
}, |
||||
methods: { |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then((res) => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
//新增 |
||||
rowSave(row, done, loading) { |
||||
add(row).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!", |
||||
}); |
||||
done(); |
||||
}, |
||||
(error) => { |
||||
window.console.log(error); |
||||
loading(); |
||||
} |
||||
); |
||||
}, |
||||
//修改 |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!", |
||||
}); |
||||
done(); |
||||
}, |
||||
(error) => { |
||||
window.console.log(error); |
||||
loading(); |
||||
} |
||||
); |
||||
}, |
||||
//删除 |
||||
rowDel(row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning", |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!", |
||||
}); |
||||
}); |
||||
}, |
||||
currentChange(currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
getList( |
||||
page.currentPage, |
||||
page.pageSize, |
||||
Object.assign(params, this.query) |
||||
).then((res) => { |
||||
const data = res.data.data; |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
}); |
||||
}, |
||||
}, |
||||
}; |
||||
</script> |
||||
|
||||
<style></style> |
@ -0,0 +1,373 @@
|
||||
<template> |
||||
<basic-container> |
||||
<avue-crud |
||||
:option="option" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:page.sync="page" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
v-model="form" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad" |
||||
> |
||||
</avue-crud> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getDetail, |
||||
getList, |
||||
add, |
||||
remove, |
||||
update, |
||||
} from "@/api/communication/flowpool"; |
||||
import { mapGetters } from "vuex"; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
loading: false, |
||||
page: { |
||||
pageSize: 10, |
||||
currentPage: 1, |
||||
total: 0, |
||||
}, |
||||
option: { |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
addBtn: true, |
||||
viewBtn: true, |
||||
delBtn: true, |
||||
columnBtn: false, |
||||
selection: false, |
||||
dialogClickModal: false, |
||||
dialogWidth: "60%", |
||||
column: [ |
||||
{ |
||||
label: "通道名称", |
||||
prop: "channelId", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: true, |
||||
type: "select", |
||||
dicUrl: "/api/iot-sim/simcard/getChannel", |
||||
props: { |
||||
label: "name", |
||||
value: "id", |
||||
}, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请选择通道名称", |
||||
trigger: "change", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "流量池编号", |
||||
prop: "code", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
searchLabelWidth: 90, |
||||
search: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入设备序列号", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "流量池名称", |
||||
prop: "name", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
searchLabelWidth: 90, |
||||
search: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入流量池名称", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "流量池总量", |
||||
prop: "total", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
searchLabelWidth: 90, |
||||
search: false, |
||||
hide: false, |
||||
|
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入流量池总量", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "提醒阈值", |
||||
prop: "remindRatio", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
searchLabelWidth: 90, |
||||
search: false, |
||||
hide: false, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入提醒阈值", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
|
||||
{ |
||||
label: "是否立即生效", |
||||
prop: "isNowActivate", |
||||
type: "select", |
||||
dicUrl: "/api/iot-system/dict/dictionary?code=now_activate", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey", |
||||
}, |
||||
dataType: "number", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
hide: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请选择是否立即生效", |
||||
trigger: "change", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "流量池类型", |
||||
type: "select", |
||||
span: 12, |
||||
dicUrl: "/api/iot-system/dict/dictionary?code=flow_pool_type", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey", |
||||
}, |
||||
dataType: "number", |
||||
prop: "type", |
||||
labelWidth: 130, |
||||
searchLabelWidth: 140, |
||||
search: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请选择流量池类型", |
||||
trigger: "change", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "源/目标流量池", |
||||
type: "select", |
||||
span: 12, |
||||
dicUrl: "/api/iot-system/dict/dictionary?code=is_source", |
||||
props: { |
||||
label: "dictValue", |
||||
value: "dictKey", |
||||
}, |
||||
dataType: "number", |
||||
prop: "isSource", |
||||
labelWidth: 130, |
||||
searchLabelWidth: 110, |
||||
search: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请选择源/目标流量池", |
||||
trigger: "change", |
||||
}, |
||||
], |
||||
}, |
||||
|
||||
{ |
||||
label: "单卡最大使用量(单位M)", |
||||
prop: "maxUsage", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
hide: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入管理员账号", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "已激活数量", |
||||
prop: "activationNum", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
hide: true, |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入管理员账号", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: "管理员名称", |
||||
prop: "account", |
||||
span: 12, |
||||
labelWidth: 130, |
||||
search: false, |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
hide: true, |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: "请输入管理员账号", |
||||
trigger: "blur", |
||||
}, |
||||
], |
||||
}, |
||||
], |
||||
}, |
||||
data: [], |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
permissionList() { |
||||
return { |
||||
// viewBtn: this.vaildData(this.permission.sourceApi_view, false), |
||||
// editBtn: this.vaildData(this.permission.sourceApi_edit, false), |
||||
// delBtn: this.vaildData(this.permission.sourceApi_delete, false), |
||||
}; |
||||
}, |
||||
}, |
||||
methods: { |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then((res) => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
//新增 |
||||
rowSave(row, done, loading) { |
||||
add(row).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!", |
||||
}); |
||||
done(); |
||||
}, |
||||
(error) => { |
||||
window.console.log(error); |
||||
loading(); |
||||
} |
||||
); |
||||
}, |
||||
//修改 |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!", |
||||
}); |
||||
done(); |
||||
}, |
||||
(error) => { |
||||
window.console.log(error); |
||||
loading(); |
||||
} |
||||
); |
||||
}, |
||||
//删除 |
||||
rowDel(row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning", |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!", |
||||
}); |
||||
}); |
||||
}, |
||||
currentChange(currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
getList( |
||||
page.currentPage, |
||||
page.pageSize, |
||||
Object.assign(params, this.query) |
||||
).then((res) => { |
||||
const data = res.data.data; |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
}); |
||||
}, |
||||
}, |
||||
}; |
||||
</script> |
||||
|
||||
<style></style> |
Loading…
Reference in new issue