Compare commits
5 Commits
48c678d260
...
3c620f4dfa
Author | SHA1 | Date | |
---|---|---|---|
3c620f4dfa | |||
ca08b46f77 | |||
54b3652c0e | |||
884fad3b0e | |||
7eb4fdb790 |
@ -49,6 +49,14 @@ export function getWarehouseAreaList(id) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得库区设置列表
|
||||||
|
export function getWarehouseAreaListAll() {
|
||||||
|
return request({
|
||||||
|
url: '/extend/warehouse-area/listAll',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 获得库区设置分页
|
// 获得库区设置分页
|
||||||
export function getWarehouseAreaPage(query) {
|
export function getWarehouseAreaPage(query) {
|
||||||
return request({
|
return request({
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2023-11-02 16:20:15
|
* @Date: 2023-11-02 16:20:15
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-08 15:56:30
|
* @LastEditTime: 2024-08-21 11:03:14
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
@ -41,6 +41,13 @@ export function getWarehouseLocation(id) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 库位存储详情
|
||||||
|
export function getStoreInfo(id) {
|
||||||
|
return request({
|
||||||
|
url: '/extend/warehouse-location/getStoreInfo?id=' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
// 获得库位设置列表
|
// 获得库位设置列表
|
||||||
export function getWarehouseLocationTree() {
|
export function getWarehouseLocationTree() {
|
||||||
return request({
|
return request({
|
||||||
|
@ -63,6 +63,14 @@ export function getWarehouseRealtimePage(data) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得库存列表分页
|
||||||
|
export function inventoryPage(data) {
|
||||||
|
return request({
|
||||||
|
url: '/extend/warehouse-realtime/allPage',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
// 获得出入库-无库位-历史分页
|
// 获得出入库-无库位-历史分页
|
||||||
export function getWarehouseRealtimeHisPage(data) {
|
export function getWarehouseRealtimeHisPage(data) {
|
||||||
return request({
|
return request({
|
||||||
|
@ -218,7 +218,7 @@ export default {
|
|||||||
float: left;
|
float: left;
|
||||||
height: 84px !important;
|
height: 84px !important;
|
||||||
line-height: 84px !important;
|
line-height: 84px !important;
|
||||||
color: #999093 !important;
|
color: transparent !important;
|
||||||
padding: 0 5px !important;
|
padding: 0 5px !important;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
121
src/mixins/basic-add.js
Normal file
121
src/mixins/basic-add.js
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
/*
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2022-08-24 11:19:43
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2023-11-02 15:33:39
|
||||||
|
* @Description:
|
||||||
|
*/
|
||||||
|
import { listData } from "@/api/system/dict/data";
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
/* eslint-disable */
|
||||||
|
return {
|
||||||
|
urlOptions: {
|
||||||
|
createURL: '',
|
||||||
|
updateURL: '',
|
||||||
|
infoURL: '',
|
||||||
|
codeURL: '',
|
||||||
|
getOption: false, //是否加载获取下拉框方法
|
||||||
|
isGetCode: false, //是否加载获取code方法
|
||||||
|
getDictList: false, //是否加载获取数据字典方法
|
||||||
|
optionArrUrl: [], //需要获取下拉框的方法数组
|
||||||
|
optionArr: {}, //需要获取下拉框的方法数组的返回结果
|
||||||
|
dictList: {}, //需要获取数据字典的方法数组的返回结果
|
||||||
|
},
|
||||||
|
visible: false,
|
||||||
|
setData: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
this.dataForm.id = id || "";
|
||||||
|
this.visible = true;
|
||||||
|
if (this.urlOptions.getOption) {
|
||||||
|
this.getArr()
|
||||||
|
}
|
||||||
|
if (this.urlOptions.getDictList) {
|
||||||
|
this.getDict()
|
||||||
|
}
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs["dataForm"].resetFields();
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
this.urlOptions.infoURL(id).then(response => {
|
||||||
|
this.dataForm = response.data;
|
||||||
|
if (this.setData) {
|
||||||
|
this.setDataForm()
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
if (this.urlOptions.isGetCode) {
|
||||||
|
this.getCode()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getCode() {
|
||||||
|
this.urlOptions.codeURL()
|
||||||
|
.then(({ data: res }) => {
|
||||||
|
this.dataForm.code = res;
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
getArr() {
|
||||||
|
const params = {
|
||||||
|
pageSize: 100,
|
||||||
|
pageNo: 1,
|
||||||
|
}
|
||||||
|
this.urlOptions.optionArrUrl.forEach((item, index) => {
|
||||||
|
item(params).then(({ data: res }) => {
|
||||||
|
this.$set(this.urlOptions.optionArr, `arr${index}`, res.list)
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 查询字典数据列表 */
|
||||||
|
getDict() {
|
||||||
|
this.nameList.forEach((item,index)=>{
|
||||||
|
const queryParams = {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 99,
|
||||||
|
dictType: item,
|
||||||
|
}
|
||||||
|
listData(queryParams).then(response => {
|
||||||
|
this.$set(this.urlOptions.dictList, `dict${index}`, response.data.list)
|
||||||
|
});
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit() {
|
||||||
|
this.$refs["dataForm"].validate((valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// 修改的提交
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
this.urlOptions.updateURL(this.dataForm).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 添加的提交
|
||||||
|
this.urlOptions.createURL(this.dataForm).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
formClear() {
|
||||||
|
if (this.$refs.dataForm!==undefined) {
|
||||||
|
this.$refs.dataForm.resetFields();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
175
src/mixins/basic-page.js
Normal file
175
src/mixins/basic-page.js
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
/*
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2022-08-24 11:19:43
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2024-08-14 15:17:01
|
||||||
|
* @Description:
|
||||||
|
*/
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
/* eslint-disable */
|
||||||
|
return {
|
||||||
|
urlOptions: {
|
||||||
|
getDataListURL: '',
|
||||||
|
deleteURL: '',
|
||||||
|
statusUrl: '',
|
||||||
|
exportURL: ''
|
||||||
|
},
|
||||||
|
tableData: [],
|
||||||
|
listQuery: {
|
||||||
|
pageSize: 20,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 1,
|
||||||
|
},
|
||||||
|
exportLoading: false,
|
||||||
|
dataListLoading: false,
|
||||||
|
addOrEditTitle: '',
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
addOrUpdate: 'addOrUpdate'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getDataList()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 获取数据列表
|
||||||
|
getDataList() {
|
||||||
|
this.dataListLoading = true;
|
||||||
|
this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
||||||
|
if (response.hasOwnProperty('data')) {
|
||||||
|
this.tableData = response.data.list;
|
||||||
|
this.listQuery.total = response.data.total;
|
||||||
|
} else {
|
||||||
|
this.tableData = []
|
||||||
|
}
|
||||||
|
this.dataListLoading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 每页数
|
||||||
|
sizeChangeHandle(val) {
|
||||||
|
this.listQuery.pageSize = val;
|
||||||
|
this.listQuery.pageNo = 1;
|
||||||
|
this.getDataList();
|
||||||
|
},
|
||||||
|
// 当前页
|
||||||
|
currentChangeHandle(val) {
|
||||||
|
this.listQuery.pageNo = val;
|
||||||
|
this.getDataList();
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addOrUpdateHandle(id) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
cancel(id) {
|
||||||
|
this.$refs["popover-" + id].showPopper = false;
|
||||||
|
},
|
||||||
|
//改变状态
|
||||||
|
changeStatus(id) {
|
||||||
|
this.$http
|
||||||
|
.post(this.urlOptions.statusUrl, { id })
|
||||||
|
.then(({ data: res }) => {
|
||||||
|
if (res.code !== 0) {
|
||||||
|
return this.$message.error(res.msg);
|
||||||
|
}
|
||||||
|
this.$refs["popover-" + id].showPopper = false;
|
||||||
|
this.$message({
|
||||||
|
message: this.$t("prompt.success"),
|
||||||
|
type: "success",
|
||||||
|
duration: 500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getDataList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
|
},
|
||||||
|
//tableBtn点击
|
||||||
|
handleClick(val) {
|
||||||
|
if (val.type === "edit") {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.addOrEditTitle = "编辑";
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(val.data.id);
|
||||||
|
});
|
||||||
|
} else if (val.type === "delete") {
|
||||||
|
if (val.data.name) {
|
||||||
|
this.deleteHandle(val.data.id, val.data.name)
|
||||||
|
} else {
|
||||||
|
this.setDelete(val.data)
|
||||||
|
}
|
||||||
|
} else if (val.type === "change") {
|
||||||
|
this.changeStatus(val.data.id)
|
||||||
|
} else {
|
||||||
|
this.otherMethods(val)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 删除
|
||||||
|
deleteHandle(id, name) {
|
||||||
|
this.$modal
|
||||||
|
.delConfirm(name)
|
||||||
|
.then(() => {
|
||||||
|
this.urlOptions.deleteURL(id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: "操作成功",
|
||||||
|
type: "success",
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getDataList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
|
},
|
||||||
|
//search-bar点击
|
||||||
|
buttonClick(val) {
|
||||||
|
switch (val.btnName) {
|
||||||
|
case "search":
|
||||||
|
this.listQuery.xm1 = val.xm1;
|
||||||
|
this.listQuery.xm2 = val.xm2;
|
||||||
|
this.listQuery.pageNo = 1;
|
||||||
|
this.getDataList();
|
||||||
|
break;
|
||||||
|
case "add":
|
||||||
|
this.addOrEditTitle = '新增'
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.addOrUpdateHandle()
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
console.log(val)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleCancel() {
|
||||||
|
this.$refs[this.addOrUpdate].formClear()
|
||||||
|
this.addOrUpdateVisible = false
|
||||||
|
this.addOrEditTitle = ''
|
||||||
|
this.addOrUpdate = 'addOrUpdate'
|
||||||
|
},
|
||||||
|
handleConfirm() {
|
||||||
|
this.$refs[this.addOrUpdate].dataFormSubmit()
|
||||||
|
},
|
||||||
|
successSubmit() {
|
||||||
|
this.handleCancel()
|
||||||
|
this.getDataList()
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
// 处理查询参数
|
||||||
|
let params = { ...this.queryParams };
|
||||||
|
params.pageNo = undefined;
|
||||||
|
params.pageSize = undefined;
|
||||||
|
this.$modal.confirm('是否确认导出所有数据项?').then(() => {
|
||||||
|
this.exportLoading = true;
|
||||||
|
return this.urlOptions.exportURL(params);
|
||||||
|
}).then(response => {
|
||||||
|
this.$download.excel(response, '报表.xls');
|
||||||
|
this.exportLoading = false;
|
||||||
|
}).catch(() => { });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
73
src/mixins/code-filter.js
Normal file
73
src/mixins/code-filter.js
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
* @Date: 2020-12-29 16:49:28
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2024-08-21 11:14:58
|
||||||
|
* @FilePath: \basic-admin\src\filters\basicData\index.js
|
||||||
|
* @Description:
|
||||||
|
*/
|
||||||
|
|
||||||
|
const table = {
|
||||||
|
lineStatus: {
|
||||||
|
1: '生产中',
|
||||||
|
2: '停止',
|
||||||
|
3: '未知',
|
||||||
|
},
|
||||||
|
deactivate: {
|
||||||
|
1: '启用',
|
||||||
|
0: '停用',
|
||||||
|
},
|
||||||
|
reportType: {
|
||||||
|
1: '日',
|
||||||
|
2: '周',
|
||||||
|
3: '月'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 日期格式化
|
||||||
|
export function parseTime(time, pattern) {
|
||||||
|
if (arguments.length === 0 || !time) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
|
||||||
|
let date
|
||||||
|
if (typeof time === 'object') {
|
||||||
|
date = time
|
||||||
|
} else {
|
||||||
|
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
|
||||||
|
time = parseInt(time)
|
||||||
|
} else if (typeof time === 'string') {
|
||||||
|
time = time.replace(new RegExp(/-/gm), '/').replace('T', ' ').replace(new RegExp(/\.\d{3}/gm),'');
|
||||||
|
}
|
||||||
|
if ((typeof time === 'number') && (time.toString().length === 10)) {
|
||||||
|
time = time * 1000
|
||||||
|
}
|
||||||
|
date = new Date(time)
|
||||||
|
}
|
||||||
|
const formatObj = {
|
||||||
|
y: date.getFullYear(),
|
||||||
|
m: date.getMonth() + 1,
|
||||||
|
d: date.getDate(),
|
||||||
|
h: date.getHours(),
|
||||||
|
i: date.getMinutes(),
|
||||||
|
s: date.getSeconds(),
|
||||||
|
a: date.getDay()
|
||||||
|
}
|
||||||
|
const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
|
||||||
|
let value = formatObj[key]
|
||||||
|
// Note: getDay() returns 0 on Sunday
|
||||||
|
if (key === 'a') {
|
||||||
|
return ['日', '一', '二', '三', '四', '五', '六'][value]
|
||||||
|
}
|
||||||
|
if (result.length > 0 && value < 10) {
|
||||||
|
value = '0' + value
|
||||||
|
}
|
||||||
|
return value || 0
|
||||||
|
})
|
||||||
|
return time_str
|
||||||
|
}
|
||||||
|
export default function (dictTable) {
|
||||||
|
return function (val) {
|
||||||
|
return table?.[dictTable]?.[val]
|
||||||
|
}
|
||||||
|
}
|
@ -224,6 +224,10 @@ input, textarea{
|
|||||||
left:20px;
|
left:20px;
|
||||||
font-size:21px !important
|
font-size:21px !important
|
||||||
}
|
}
|
||||||
|
.el-message-box__input {
|
||||||
|
padding-left: 57px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.el-message-box__btns {
|
.el-message-box__btns {
|
||||||
padding-right: 32px;
|
padding-right: 32px;
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../core/mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import { createCustomer, updateCustomer, getCustomer, getCode } from "@/api/base/coreCustomer";
|
import { createCustomer, updateCustomer, getCustomer, getCode } from "@/api/base/coreCustomer";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
|
:max-height="tableH"
|
||||||
:table-data="tableData">
|
:table-data="tableData">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
@ -39,18 +40,20 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../core/mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getCustomerPage,
|
getCustomerPage,
|
||||||
deleteCustomer
|
deleteCustomer
|
||||||
} from '@/api/base/coreCustomer';
|
} from '@/api/base/coreCustomer';
|
||||||
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
@ -58,7 +61,8 @@ const tableProps = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '客户编码'
|
label: '客户编码',
|
||||||
|
width: 150
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'contact',
|
prop: 'contact',
|
||||||
@ -79,7 +83,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage,tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
@ -133,27 +137,18 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {},
|
created() {},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取数据列表
|
|
||||||
// getDataList() {
|
|
||||||
// this.dataListLoading = true;
|
|
||||||
// this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
|
||||||
// this.tableData = response.data.list;
|
|
||||||
// this.listQuery.total = response.data.total;
|
|
||||||
// this.dataListLoading = false;
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 20;
|
||||||
this.listQuery.name = val.name ? val.name : undefined;
|
this.listQuery.name = val.name ? val.name : undefined;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
case 'reset':
|
case 'reset':
|
||||||
this.$refs.searchBarForm.resetForm();
|
this.$refs.searchBarForm.resetForm();
|
||||||
this.listQuery = {
|
this.listQuery = {
|
||||||
pageSize: 10,
|
pageSize: 20,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
total: 1,
|
total: 1,
|
||||||
};
|
};
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2023-11-22 10:27:43
|
* @LastEditTime: 2024-08-14 15:15:45
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../core/mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import { createCoreSupplier, updateCoreSupplier, getCoreSupplier, getCode } from "@/api/base/coreSupplier";
|
import { createCoreSupplier, updateCoreSupplier, getCoreSupplier, getCode } from "@/api/base/coreSupplier";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
|
:max-height="tableH"
|
||||||
:table-data="tableData">
|
:table-data="tableData">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
@ -39,52 +40,55 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../core/mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getCoreSupplierPage,
|
getCoreSupplierPage,
|
||||||
deleteCoreSupplier
|
deleteCoreSupplier,
|
||||||
} from '@/api/base/coreSupplier';
|
} from '@/api/base/coreSupplier';
|
||||||
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime
|
filter: parseTime,
|
||||||
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '供应商编码'
|
label: '供应商编码',
|
||||||
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '供应商名称'
|
label: '供应商名称',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'contact',
|
prop: 'contact',
|
||||||
label: '联系人'
|
label: '联系人',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'telephone',
|
prop: 'telephone',
|
||||||
label: '联系电话'
|
label: '联系电话',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'address',
|
prop: 'address',
|
||||||
label: '地址'
|
label: '地址',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注'
|
label: '备注',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getCoreSupplierPage,
|
getDataListURL: getCoreSupplierPage,
|
||||||
deleteURL: deleteCoreSupplier
|
deleteURL: deleteCoreSupplier,
|
||||||
},
|
},
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
@ -94,13 +98,13 @@ export default {
|
|||||||
btnName: '编辑',
|
btnName: '编辑',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi(`base:core-supplier:delete`)
|
this.$auth.hasPermi(`base:core-supplier:delete`)
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
].filter((v)=>v),
|
].filter((v) => v),
|
||||||
tableData: [],
|
tableData: [],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
@ -119,11 +123,13 @@ export default {
|
|||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('base:core-supplier:create') ? 'button' : '',
|
type: this.$auth.hasPermi('base:core-supplier:create')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'success',
|
color: 'success',
|
||||||
plain: true
|
plain: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@ -134,14 +140,14 @@ export default {
|
|||||||
created() {},
|
created() {},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
// getDataList() {
|
// getDataList() {
|
||||||
// this.dataListLoading = true;
|
// this.dataListLoading = true;
|
||||||
// this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
// this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
||||||
// this.tableData = response.data.list;
|
// this.tableData = response.data.list;
|
||||||
// this.listQuery.total = response.data.total;
|
// this.listQuery.total = response.data.total;
|
||||||
// this.dataListLoading = false;
|
// this.dataListLoading = false;
|
||||||
// });
|
// });
|
||||||
// },
|
// },
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2024-07-01 14:53:55
|
* @Date: 2024-07-01 14:53:55
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-07-22 15:20:51
|
* @LastEditTime: 2024-08-14 15:21:31
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -233,7 +233,7 @@ export default {
|
|||||||
,'提示')
|
,'提示')
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return _this.$modal
|
return _this.$modal
|
||||||
.delConfirm('名称: ' + row.name)
|
.delConfirm(row.name)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return deleteGroupClasses(row.id);
|
return deleteGroupClasses(row.id);
|
||||||
})
|
})
|
||||||
@ -245,7 +245,7 @@ export default {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
_this.$modal
|
_this.$modal
|
||||||
.delConfirm('名称: ' + row.name)
|
.delConfirm(row.name)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return deleteGroupClasses(row.id);
|
return deleteGroupClasses(row.id);
|
||||||
})
|
})
|
||||||
|
@ -219,7 +219,7 @@ export default {
|
|||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
this.$modal
|
this.$modal
|
||||||
.delConfirm('名称: ' + row.name)
|
.delConfirm(row.name)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return deleteGroupTeam(row.id);
|
return deleteGroupTeam(row.id);
|
||||||
})
|
})
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2024-07-10 11:08:48
|
* @Date: 2024-07-10 11:08:48
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-07-19 14:09:18
|
* @LastEditTime: 2024-08-14 15:35:06
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -216,7 +216,7 @@ export default {
|
|||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
let _this = this;
|
let _this = this;
|
||||||
_this.$modal
|
_this.$modal
|
||||||
.confirm('是否确认删除名称为"' + row.name + '"的数据项?')
|
.delConfirm(row.name)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return deleteGroupPlan(row.id);
|
return deleteGroupPlan(row.id);
|
||||||
})
|
})
|
||||||
|
@ -226,8 +226,10 @@ export default {
|
|||||||
},
|
},
|
||||||
discard(row) {
|
discard(row) {
|
||||||
let _this = this
|
let _this = this
|
||||||
this.$modal
|
_this.$modal
|
||||||
.confirm('是否确认作废序号为"' + row._pageIndex + '"的数据项?')
|
.newConfirm(
|
||||||
|
'是否确认作废序号为"' + row.planName + '"的数据项?'
|
||||||
|
,'提示')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
getGroupRule(row.id).then((response) => {
|
getGroupRule(row.id).then((response) => {
|
||||||
let datas = response.data;
|
let datas = response.data;
|
||||||
@ -244,7 +246,7 @@ export default {
|
|||||||
/** 删除按钮操作 */
|
/** 删除按钮操作 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认删除序号为"' + row._pageIndex + '"的数据项?')
|
.delConfirm(row.planName)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
return deleteGroupRule(row.id);
|
return deleteGroupRule(row.id);
|
||||||
})
|
})
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-05 16:12:18
|
* @LastEditTime: 2024-08-14 15:24:11
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -104,7 +104,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import { getTreeArr } from '../mixins/code-filter';
|
import { getTreeArr } from '../mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
createProductMaterial,
|
createProductMaterial,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2024-07-01 14:54:06
|
* @Date: 2024-07-01 14:54:06
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-08 16:46:44
|
* @LastEditTime: 2024-08-21 11:19:51
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -136,8 +136,8 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import {
|
import {
|
||||||
getProductMaterialPage,
|
getProductMaterialPage,
|
||||||
@ -293,27 +293,6 @@ export default {
|
|||||||
this.getTreeselect();
|
this.getTreeselect();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 删除
|
|
||||||
deleteHandle(id, name, index) {
|
|
||||||
this.$confirm(`是否确认删除物料产品名称为"${name}"的数据项`, '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
this.urlOptions.deleteURL(id).then(({ data }) => {
|
|
||||||
this.$message({
|
|
||||||
message: '操作成功',
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getDataList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
},
|
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
@ -377,11 +356,8 @@ export default {
|
|||||||
},
|
},
|
||||||
// 删除节点
|
// 删除节点
|
||||||
remove(node, data) {
|
remove(node, data) {
|
||||||
this.$confirm(`是否确认删除名称为"${data.name}"的数据项`, '提示', {
|
this.$modal
|
||||||
confirmButtonText: '确定',
|
.delConfirm(data.name)
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
})
|
|
||||||
.then(() => {
|
.then(() => {
|
||||||
deleteMaterialTree(data.id).then(({ data }) => {
|
deleteMaterialTree(data.id).then(({ data }) => {
|
||||||
this.$message({
|
this.$message({
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-05 16:12:58
|
* @LastEditTime: 2024-08-14 15:24:29
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -56,7 +56,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import { createMaterialDate, updateMaterialDate, getMaterialDate, getCode } from "@/api/base/materialDate";
|
import { createMaterialDate, updateMaterialDate, getMaterialDate, getCode } from "@/api/base/materialDate";
|
||||||
import { getMaterialList } from "@/api/base/material";
|
import { getMaterialList } from "@/api/base/material";
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../mixins/code-filter';
|
import { parseTime } from '../mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getMaterDatePage,
|
getMaterDatePage,
|
||||||
@ -164,27 +164,6 @@ export default {
|
|||||||
console.log(val);
|
console.log(val);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 删除
|
|
||||||
deleteHandle(id, name, index) {
|
|
||||||
this.$confirm(`是否删除物料批次名称为"${name}"的数据项?`, "提示", {
|
|
||||||
confirmButtonText: "确定",
|
|
||||||
cancelButtonText: "取消",
|
|
||||||
type: "warning",
|
|
||||||
})
|
|
||||||
.then(() => {
|
|
||||||
this.urlOptions.deleteURL(id).then(({ data }) => {
|
|
||||||
this.$message({
|
|
||||||
message: "操作成功",
|
|
||||||
type: "success",
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getDataList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => { });
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-08 16:47:36
|
* @LastEditTime: 2024-08-14 15:26:32
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -115,7 +115,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
createMaterialPB,
|
createMaterialPB,
|
||||||
updateMaterialPB,
|
updateMaterialPB,
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
// import { parseTime } from '../mixins/code-filter';
|
// import { parseTime } from '../mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getMaterialPBPage,
|
getMaterialPBPage,
|
||||||
@ -177,6 +177,9 @@ export default {
|
|||||||
console.log(val);
|
console.log(val);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
setDelete(data){
|
||||||
|
this.deleteHandle(data.id,data.productName)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-05 16:13:52
|
* @LastEditTime: 2024-08-14 15:27:50
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -140,7 +140,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
createMaterialLog,
|
createMaterialLog,
|
||||||
updateMaterialLog,
|
updateMaterialLog,
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../mixins/code-filter';
|
import { parseTime } from '../mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getMaterialLogPage,
|
getMaterialLogPage,
|
||||||
@ -212,38 +212,8 @@ export default {
|
|||||||
console.log(val);
|
console.log(val);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
//tableBtn点击
|
setDelete(data){
|
||||||
handleClick(val) {
|
this.deleteHandle(data.id,data.materialName)
|
||||||
if (val.type === "edit") {
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.addOrEditTitle = "编辑";
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.addOrUpdate.init(val.data.id);
|
|
||||||
});
|
|
||||||
} else if (val.type === "delete") {
|
|
||||||
this.deleteHandle(val.data.id, val.data.materialName)
|
|
||||||
} else if (val.type === "change") {
|
|
||||||
this.changeStatus(val.data.id)
|
|
||||||
} else {
|
|
||||||
this.otherMethods(val)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// 删除
|
|
||||||
deleteHandle(id, name) {
|
|
||||||
this.$modal
|
|
||||||
.delConfirm(name ? '名称: ' + name : '序号: ' + index).then(() => {
|
|
||||||
this.urlOptions.deleteURL(id).then(({ data }) => {
|
|
||||||
this.$message({
|
|
||||||
message: "操作成功",
|
|
||||||
type: "success",
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getDataList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => { });
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2020-12-29 16:49:28
|
* @Date: 2020-12-29 16:49:28
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-07-08 16:27:39
|
* @LastEditTime: 2024-08-21 11:15:56
|
||||||
* @FilePath: \basic-admin\src\filters\basicData\index.js
|
* @FilePath: \basic-admin\src\filters\basicData\index.js
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
|
38
src/views/system/components/statusBtn.vue
Normal file
38
src/views/system/components/statusBtn.vue
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<span class="dot" :class="injectData.status === 1 ? 'red' : 'green'"></span>
|
||||||
|
<span>{{ state }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "StatusBtn",
|
||||||
|
props: {
|
||||||
|
injectData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
state() {
|
||||||
|
return this.injectData.status === 1 ? "停用" : "启用";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-radius: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.green {
|
||||||
|
background: #10dc76;
|
||||||
|
}
|
||||||
|
.red {
|
||||||
|
background: #ff5656;
|
||||||
|
}
|
||||||
|
</style>
|
38
src/views/system/components/statusBtn2.vue
Normal file
38
src/views/system/components/statusBtn2.vue
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<span class="dot" :class="injectData.status === 1 ? 'red' : 'green'"></span>
|
||||||
|
<span>{{ state }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "StatusBtn2",
|
||||||
|
props: {
|
||||||
|
injectData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
state() {
|
||||||
|
return this.injectData.status === 1 ? "关闭" : "开启";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-radius: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.green {
|
||||||
|
background: #10dc76;
|
||||||
|
}
|
||||||
|
.red {
|
||||||
|
background: #ff5656;
|
||||||
|
}
|
||||||
|
</style>
|
41
src/views/system/components/statusBtn3.vue
Normal file
41
src/views/system/components/statusBtn3.vue
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<span
|
||||||
|
class="dot"
|
||||||
|
:class="injectData.resultCode === 0 ? 'green' : 'red'"
|
||||||
|
></span>
|
||||||
|
<span>{{ state }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "StatusBtn3",
|
||||||
|
props: {
|
||||||
|
injectData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
state() {
|
||||||
|
return this.injectData.resultCode === 0 ? "成功" : "失败";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-radius: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.green {
|
||||||
|
background: #10dc76;
|
||||||
|
}
|
||||||
|
.red {
|
||||||
|
background: #ff5656;
|
||||||
|
}
|
||||||
|
</style>
|
38
src/views/system/components/statusBtn4.vue
Normal file
38
src/views/system/components/statusBtn4.vue
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<span class="dot" :class="injectData.result === 0 ? 'green' : 'red'"></span>
|
||||||
|
<span>{{ state }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "StatusBtn3",
|
||||||
|
props: {
|
||||||
|
injectData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
state() {
|
||||||
|
return this.injectData.result === 0 ? "成功" : "失败";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.dot {
|
||||||
|
display: inline-block;
|
||||||
|
width: 6px;
|
||||||
|
height: 6px;
|
||||||
|
border-radius: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
.green {
|
||||||
|
background: #10dc76;
|
||||||
|
}
|
||||||
|
.red {
|
||||||
|
background: #ff5656;
|
||||||
|
}
|
||||||
|
</style>
|
39
src/views/system/components/statusBtn5.vue
Normal file
39
src/views/system/components/statusBtn5.vue
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<template>
|
||||||
|
<el-switch
|
||||||
|
v-model="status"
|
||||||
|
type="text"
|
||||||
|
size="small"
|
||||||
|
@change="changeHandler"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
injectData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
status: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.mapToState();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
mapToState() {
|
||||||
|
this.status = this.injectData.status === 0 ? true : false;
|
||||||
|
},
|
||||||
|
changeHandler() {
|
||||||
|
let params = {};
|
||||||
|
params.id = this.injectData.id;
|
||||||
|
params.status = this.status ? "0" : "1";
|
||||||
|
params.username = this.injectData.username;
|
||||||
|
this.$emit("emitData", params);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
162
src/views/system/role/components/dataAuth.vue
Normal file
162
src/views/system/role/components/dataAuth.vue
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
<template>
|
||||||
|
<el-form :model="form" label-width="80px">
|
||||||
|
<el-form-item label="角色名称">
|
||||||
|
<el-input v-model="form.name" :disabled="true" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="角色标识">
|
||||||
|
<el-input v-model="form.code" :disabled="true" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="权限范围">
|
||||||
|
<el-select v-model="form.dataScope" style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
v-for="item in dataScopeDictDatas"
|
||||||
|
:key="parseInt(item.value)"
|
||||||
|
:label="item.label"
|
||||||
|
:value="parseInt(item.value)"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
label="数据权限"
|
||||||
|
v-show="form.dataScope === SysDataScopeEnum.DEPT_CUSTOM"
|
||||||
|
>
|
||||||
|
<el-checkbox
|
||||||
|
:checked="!form.deptCheckStrictly"
|
||||||
|
@change="handleCheckedTreeConnect($event, 'dept')"
|
||||||
|
>父子联动(选中父节点,自动选择子节点)</el-checkbox
|
||||||
|
>
|
||||||
|
<el-checkbox
|
||||||
|
v-model="deptExpand"
|
||||||
|
@change="handleCheckedTreeExpand($event, 'dept')"
|
||||||
|
>展开/折叠</el-checkbox
|
||||||
|
>
|
||||||
|
<el-checkbox
|
||||||
|
v-model="deptNodeAll"
|
||||||
|
@change="handleCheckedTreeNodeAll($event, 'dept')"
|
||||||
|
>全选/全不选</el-checkbox
|
||||||
|
>
|
||||||
|
<el-tree
|
||||||
|
class="tree-border"
|
||||||
|
:data="deptOptions"
|
||||||
|
show-checkbox
|
||||||
|
default-expand-all
|
||||||
|
ref="dept"
|
||||||
|
node-key="id"
|
||||||
|
:check-strictly="form.deptCheckStrictly"
|
||||||
|
empty-text="加载中,请稍后"
|
||||||
|
:props="defaultProps"
|
||||||
|
></el-tree>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { SystemDataScopeEnum } from "@/utils/constants";
|
||||||
|
import { getRole } from "@/api/system/role";
|
||||||
|
import { listSimpleDepts } from "@/api/system/dept";
|
||||||
|
import { DICT_TYPE, getDictDatas } from "@/utils/dict";
|
||||||
|
import { assignRoleDataScope } from "@/api/system/permission";
|
||||||
|
export default {
|
||||||
|
name: "DataAuth",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {
|
||||||
|
id: undefined,
|
||||||
|
name: undefined,
|
||||||
|
code: undefined,
|
||||||
|
deptIds: [],
|
||||||
|
dataScope: undefined,
|
||||||
|
deptCheckStrictly: false,
|
||||||
|
},
|
||||||
|
deptExpand: true,
|
||||||
|
deptNodeAll: false,
|
||||||
|
// 部门列表
|
||||||
|
deptOptions: [], // 部门属性结构
|
||||||
|
depts: [], // 部门列表
|
||||||
|
defaultProps: {
|
||||||
|
label: "name",
|
||||||
|
children: "children",
|
||||||
|
},
|
||||||
|
// 枚举
|
||||||
|
SysDataScopeEnum: SystemDataScopeEnum,
|
||||||
|
// 数据字典
|
||||||
|
dataScopeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_DATA_SCOPE),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
this.form.id = id;
|
||||||
|
getRole(id).then((res) => {
|
||||||
|
this.form.name = res.data.name;
|
||||||
|
this.form.code = res.data.code;
|
||||||
|
this.form.dataScope = res.data.dataScope;
|
||||||
|
// 获得部门列表
|
||||||
|
listSimpleDepts().then((response) => {
|
||||||
|
// 处理 deptOptions 参数
|
||||||
|
this.deptOptions = [];
|
||||||
|
this.deptOptions.push(...this.handleTree(response.data, "id"));
|
||||||
|
this.depts = response.data;
|
||||||
|
this.$refs.dept.setCheckedKeys(res.data.dataScopeDeptIds, false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
submitForm() {
|
||||||
|
if (this.form.id !== undefined) {
|
||||||
|
assignRoleDataScope({
|
||||||
|
roleId: this.form.id,
|
||||||
|
dataScope: this.form.dataScope,
|
||||||
|
dataScopeDeptIds:
|
||||||
|
this.form.dataScope !== SystemDataScopeEnum.DEPT_CUSTOM
|
||||||
|
? []
|
||||||
|
: this.$refs.dept.getCheckedKeys(),
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.$emit("successSubmitd");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
formClear() {
|
||||||
|
this.deptExpand = true;
|
||||||
|
this.deptNodeAll = false;
|
||||||
|
this.form = {
|
||||||
|
id: undefined,
|
||||||
|
name: undefined,
|
||||||
|
code: undefined,
|
||||||
|
deptIds: [],
|
||||||
|
dataScope: undefined,
|
||||||
|
deptCheckStrictly: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
// 树权限(父子联动)
|
||||||
|
handleCheckedTreeConnect(value, type) {
|
||||||
|
if (type === "menu") {
|
||||||
|
this.form.menuCheckStrictly = value;
|
||||||
|
} else if (type === "dept") {
|
||||||
|
this.form.deptCheckStrictly = !value;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 树权限(展开/折叠)
|
||||||
|
handleCheckedTreeExpand(value, type) {
|
||||||
|
if (type === "menu") {
|
||||||
|
let treeList = this.menuOptions;
|
||||||
|
for (let i = 0; i < treeList.length; i++) {
|
||||||
|
this.$refs.menu.store.nodesMap[treeList[i].id].expanded = value;
|
||||||
|
}
|
||||||
|
} else if (type === "dept") {
|
||||||
|
let treeList = this.deptOptions;
|
||||||
|
for (let i = 0; i < treeList.length; i++) {
|
||||||
|
this.$refs.dept.store.nodesMap[treeList[i].id].expanded = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 树权限(全选/全不选)
|
||||||
|
handleCheckedTreeNodeAll(value, type) {
|
||||||
|
if (type === "menu") {
|
||||||
|
this.$refs.menu.setCheckedNodes(value ? this.menuOptions : []);
|
||||||
|
} else if (type === "dept") {
|
||||||
|
// this.$refs.dept.setCheckedNodes(value ? this.deptOptions: []);
|
||||||
|
this.$refs.dept.setCheckedNodes(value ? this.depts : []);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
146
src/views/system/role/components/menuAuth.vue
Normal file
146
src/views/system/role/components/menuAuth.vue
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
<template>
|
||||||
|
<el-form :model="form" label-width="80px">
|
||||||
|
<el-form-item label="角色名称">
|
||||||
|
<el-input v-model="form.name" :disabled="true" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="角色标识">
|
||||||
|
<el-input v-model="form.code" :disabled="true" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="菜单权限">
|
||||||
|
<el-checkbox
|
||||||
|
v-model="menuExpand"
|
||||||
|
@change="handleCheckedTreeExpand($event, 'menu')"
|
||||||
|
>展开/折叠</el-checkbox
|
||||||
|
>
|
||||||
|
<el-checkbox
|
||||||
|
v-model="menuNodeAll"
|
||||||
|
@change="handleCheckedTreeNodeAll($event, 'menu')"
|
||||||
|
>全选/全不选</el-checkbox
|
||||||
|
>
|
||||||
|
<el-tree
|
||||||
|
class="tree-border"
|
||||||
|
:data="menuOptions"
|
||||||
|
show-checkbox
|
||||||
|
ref="menu"
|
||||||
|
node-key="id"
|
||||||
|
:check-strictly="form.menuCheckStrictly"
|
||||||
|
empty-text="加载中,请稍后"
|
||||||
|
:props="defaultProps"
|
||||||
|
></el-tree>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { getRole } from "@/api/system/role";
|
||||||
|
import { SystemDataScopeEnum } from "@/utils/constants";
|
||||||
|
import { assignRoleMenu, listRoleMenus } from "@/api/system/permission";
|
||||||
|
import { DICT_TYPE, getDictDatas } from "@/utils/dict";
|
||||||
|
import { listSimpleMenus } from "@/api/system/menu";
|
||||||
|
export default {
|
||||||
|
name: "MenuAuth",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {
|
||||||
|
id: undefined,
|
||||||
|
name: undefined,
|
||||||
|
code: undefined,
|
||||||
|
menuIds: [],
|
||||||
|
menuCheckStrictly: true,
|
||||||
|
},
|
||||||
|
// 菜单列表
|
||||||
|
menuOptions: [],
|
||||||
|
menuExpand: false,
|
||||||
|
menuNodeAll: false,
|
||||||
|
SysDataScopeEnum: SystemDataScopeEnum,
|
||||||
|
// 数据字典
|
||||||
|
dataScopeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_DATA_SCOPE),
|
||||||
|
defaultProps: {
|
||||||
|
label: "name",
|
||||||
|
children: "children",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
this.form.id = id;
|
||||||
|
getRole(id).then((res) => {
|
||||||
|
this.form.name = res.data.name;
|
||||||
|
this.form.code = res.data.code;
|
||||||
|
listSimpleMenus().then((response) => {
|
||||||
|
// 处理 menuOptions 参数
|
||||||
|
this.menuOptions = [];
|
||||||
|
this.menuOptions.push(...this.handleTree(response.data, "id"));
|
||||||
|
// 获取角色拥有的菜单权限
|
||||||
|
listRoleMenus(id).then((response) => {
|
||||||
|
// 设置为严格,避免设置父节点自动选中子节点,解决半选中问题
|
||||||
|
this.form.menuCheckStrictly = true;
|
||||||
|
// 设置选中
|
||||||
|
this.$refs.menu.setCheckedKeys(response.data);
|
||||||
|
// 设置为非严格,继续使用半选中
|
||||||
|
this.form.menuCheckStrictly = false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
submitForm() {
|
||||||
|
if (this.form.id !== undefined) {
|
||||||
|
assignRoleMenu({
|
||||||
|
roleId: this.form.id,
|
||||||
|
menuIds: [
|
||||||
|
...this.$refs.menu.getCheckedKeys(),
|
||||||
|
...this.$refs.menu.getHalfCheckedKeys(),
|
||||||
|
],
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.$emit("successSubmitm");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
formClear() {
|
||||||
|
if (this.$refs.menu !== undefined) {
|
||||||
|
this.$refs.menu.setCheckedKeys([]);
|
||||||
|
}
|
||||||
|
this.menuExpand = false;
|
||||||
|
this.menuNodeAll = false;
|
||||||
|
this.form = {
|
||||||
|
id: undefined,
|
||||||
|
name: undefined,
|
||||||
|
code: undefined,
|
||||||
|
menuIds: [],
|
||||||
|
menuCheckStrictly: true,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
// 树权限(父子联动)
|
||||||
|
handleCheckedTreeConnect(value, type) {
|
||||||
|
if (type === "menu") {
|
||||||
|
this.form.menuCheckStrictly = value;
|
||||||
|
} else if (type === "dept") {
|
||||||
|
this.form.deptCheckStrictly = !value;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 树权限(展开/折叠)
|
||||||
|
handleCheckedTreeExpand(value, type) {
|
||||||
|
if (type === "menu") {
|
||||||
|
let treeList = this.menuOptions;
|
||||||
|
for (let i = 0; i < treeList.length; i++) {
|
||||||
|
this.$refs.menu.store.nodesMap[treeList[i].id].expanded = value;
|
||||||
|
}
|
||||||
|
} else if (type === "dept") {
|
||||||
|
let treeList = this.deptOptions;
|
||||||
|
for (let i = 0; i < treeList.length; i++) {
|
||||||
|
this.$refs.dept.store.nodesMap[treeList[i].id].expanded = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 树权限(全选/全不选)
|
||||||
|
handleCheckedTreeNodeAll(value, type) {
|
||||||
|
if (type === "menu") {
|
||||||
|
this.$refs.menu.setCheckedNodes(value ? this.menuOptions : []);
|
||||||
|
} else if (type === "dept") {
|
||||||
|
// this.$refs.dept.setCheckedNodes(value ? this.deptOptions: []);
|
||||||
|
this.$refs.dept.setCheckedNodes(value ? this.depts : []);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
129
src/views/system/role/components/roleAdd.vue
Normal file
129
src/views/system/role/components/roleAdd.vue
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
<template>
|
||||||
|
<el-form ref="form" :rules="rules" label-width="100px" :model="form">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="角色编码" prop="code">
|
||||||
|
<el-input v-model="form.code"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="角色名称" prop="name">
|
||||||
|
<el-input v-model="form.name"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="角色顺序" prop="sort">
|
||||||
|
<el-input-number
|
||||||
|
v-model="form.sort"
|
||||||
|
controls-position="right"
|
||||||
|
:min="1"
|
||||||
|
:max="999999999"
|
||||||
|
style="width: 100%"
|
||||||
|
></el-input-number>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="状态" prop="status" v-if="isEdit">
|
||||||
|
<el-switch v-model="form.status"> </el-switch>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { addRole, getRole, updateRole } from "@/api/system/role";
|
||||||
|
export default {
|
||||||
|
name: "RoleAdd",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
form: {
|
||||||
|
id: "",
|
||||||
|
code: "",
|
||||||
|
name: "",
|
||||||
|
sort: 1,
|
||||||
|
status: 0,
|
||||||
|
remark: "",
|
||||||
|
},
|
||||||
|
isEdit: false, //是否是编辑
|
||||||
|
rules: {
|
||||||
|
code: [
|
||||||
|
{ required: true, message: "角色编码不能为空", trigger: "blur" },
|
||||||
|
],
|
||||||
|
name: [
|
||||||
|
{ required: true, message: "角色名称不能为空", trigger: "blur" },
|
||||||
|
],
|
||||||
|
sort: [{ required: true }],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(id) {
|
||||||
|
if (id) {
|
||||||
|
this.isEdit = true;
|
||||||
|
this.form.id = id;
|
||||||
|
getRole(id).then((res) => {
|
||||||
|
if (res.code === 0) {
|
||||||
|
this.form.id = res.data.id;
|
||||||
|
this.form.code = res.data.code;
|
||||||
|
this.form.name = res.data.name;
|
||||||
|
this.form.sort = res.data.sort;
|
||||||
|
this.form.remark = res.data.remark;
|
||||||
|
this.form.status = res.data.status ? false : true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.isEdit = false;
|
||||||
|
this.form.id = "";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.isEdit) {
|
||||||
|
//编辑
|
||||||
|
updateRole({
|
||||||
|
id: this.form.id,
|
||||||
|
code: this.form.code,
|
||||||
|
name: this.form.name,
|
||||||
|
sort: this.form.sort,
|
||||||
|
remark: this.form.remark,
|
||||||
|
status: this.form.status ? 0 : 1,
|
||||||
|
}).then((res) => {
|
||||||
|
if (res.code === 0) {
|
||||||
|
this.$modal.msgSuccess("操作成功");
|
||||||
|
this.$emit("successSubmit");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addRole({
|
||||||
|
code: this.form.code,
|
||||||
|
name: this.form.name,
|
||||||
|
sort: this.form.sort,
|
||||||
|
remark: this.form.remark,
|
||||||
|
status: 0,
|
||||||
|
}).then((res) => {
|
||||||
|
if (res.code === 0) {
|
||||||
|
this.$modal.msgSuccess("操作成功");
|
||||||
|
this.$emit("successSubmit");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
formClear() {
|
||||||
|
this.$refs.form.resetFields();
|
||||||
|
this.isEdit = false;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
@ -1,495 +1,292 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- <doc-alert title="功能权限" url="https://doc.iocoder.cn/resource-permission" />
|
<!-- <doc-alert
|
||||||
|
title="功能权限"
|
||||||
|
url="https://doc.iocoder.cn/resource-permission"
|
||||||
|
/>
|
||||||
<doc-alert title="数据权限" url="https://doc.iocoder.cn/data-permission" /> -->
|
<doc-alert title="数据权限" url="https://doc.iocoder.cn/data-permission" /> -->
|
||||||
<el-form :model="queryParams" ref="queryForm" v-show="showSearch" :inline="true">
|
<!-- 搜索工作栏 -->
|
||||||
<el-form-item label="角色名称" prop="name">
|
<search-bar
|
||||||
<el-input v-model="queryParams.name" placeholder="请输入角色名称" clearable size="small" style="width: 240px"
|
:formConfigs="formConfig"
|
||||||
@keyup.enter.native="handleQuery"/>
|
ref="searchBarForm"
|
||||||
</el-form-item>
|
@headBtnClick="buttonClick" />
|
||||||
<el-form-item label="角色标识" prop="code">
|
<!-- 列表 -->
|
||||||
<el-input v-model="queryParams.code" placeholder="请输入角色标识" clearable size="small" style="width: 240px"
|
<base-table
|
||||||
@keyup.enter.native="handleQuery"/>
|
:page="queryParams.pageNo"
|
||||||
</el-form-item>
|
:limit="queryParams.pageSize"
|
||||||
<el-form-item label="状态" prop="status">
|
:table-props="tableProps"
|
||||||
<el-select v-model="queryParams.status" placeholder="角色状态" clearable size="small" style="width: 240px">
|
:table-data="list"
|
||||||
<el-option v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="dict.label" :value="parseInt(dict.value)"/>
|
:max-height="tableH">
|
||||||
</el-select>
|
<method-btn
|
||||||
</el-form-item>
|
v-if="tableBtn.length"
|
||||||
<el-form-item label="创建时间" prop="createTime">
|
slot="handleBtn"
|
||||||
<el-date-picker v-model="queryParams.createTime" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss" type="daterange"
|
:width="230"
|
||||||
range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" :default-time="['00:00:00', '23:59:59']" />
|
label="操作"
|
||||||
</el-form-item>
|
:method-list="tableBtn"
|
||||||
<el-form-item>
|
@clickBtn="handleClick" />
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
</base-table>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<pagination
|
||||||
</el-form-item>
|
:page.sync="queryParams.pageNo"
|
||||||
</el-form>
|
:limit.sync="queryParams.pageSize"
|
||||||
|
:total="total"
|
||||||
|
@pagination="getList" />
|
||||||
|
|
||||||
<el-row :gutter="10" class="mb8">
|
<!-- 新增&编辑 -->
|
||||||
<el-col :span="1.5">
|
<base-dialog
|
||||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
:dialogTitle="addOrEditTitle"
|
||||||
v-hasPermi="['system:role:create']">新增</el-button>
|
:dialogVisible="centervisible"
|
||||||
</el-col>
|
@cancel="handleCancel"
|
||||||
<el-col :span="1.5">
|
@confirm="handleConfirm"
|
||||||
<el-button type="warning" icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
|
:before-close="handleCancel"
|
||||||
v-hasPermi="['system:role:export']">导出</el-button>
|
width="50%">
|
||||||
</el-col>
|
<role-add ref="roleAdd" @successSubmit="successSubmit" />
|
||||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
</base-dialog>
|
||||||
</el-row>
|
<!-- 菜单权限 -->
|
||||||
|
<base-dialog
|
||||||
<el-table v-loading="loading" :data="roleList">
|
dialogTitle="分配菜单权限"
|
||||||
<el-table-column label="角色编号" prop="id" width="120" />
|
:dialogVisible="menuVisible"
|
||||||
<el-table-column label="角色名称" prop="name" :show-overflow-tooltip="true" width="150" />
|
@cancel="handleCancelm"
|
||||||
<el-table-column label="角色标识" prop="code" :show-overflow-tooltip="true" width="150" />
|
@confirm="handleConfirmm"
|
||||||
<el-table-column label="角色类型" prop="type" width="80">
|
:before-close="handleCancelm"
|
||||||
<template v-slot="scope">
|
width="50%">
|
||||||
<dict-tag :type="DICT_TYPE.SYSTEM_ROLE_TYPE" :value="scope.row.type"/>
|
<menu-auth ref="menuAuth" @successSubmitm="successSubmitm" />
|
||||||
</template>
|
</base-dialog>
|
||||||
</el-table-column>
|
<!-- 数据权限 -->
|
||||||
<el-table-column label="显示顺序" prop="sort" width="100" />
|
<base-dialog
|
||||||
<el-table-column label="状态" align="center" width="100">
|
dialogTitle="分配数据权限"
|
||||||
<template v-slot="scope">
|
:dialogVisible="dataVisible"
|
||||||
<el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1" @change="handleStatusChange(scope.row)"/>
|
@cancel="handleCanceld"
|
||||||
</template>
|
@confirm="handleConfirmd"
|
||||||
</el-table-column>
|
:before-close="handleCanceld"
|
||||||
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
width="50%">
|
||||||
<template v-slot="scope">
|
<data-auth ref="dataAuth" @successSubmitd="successSubmitd" />
|
||||||
<span>{{ parseTime(scope.row.createTime) }}</span>
|
</base-dialog>
|
||||||
</template>
|
</div>
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
||||||
<template v-slot="scope">
|
|
||||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
||||||
v-hasPermi="['system:role:update']">修改</el-button>
|
|
||||||
<el-button size="mini" type="text" icon="el-icon-circle-check" @click="handleMenu(scope.row)"
|
|
||||||
v-hasPermi="['system:permission:assign-role-menu']">菜单权限</el-button>
|
|
||||||
<el-button size="mini" type="text" icon="el-icon-circle-check" @click="handleDataScope(scope.row)"
|
|
||||||
v-hasPermi="['system:permission:assign-role-data-scope']">数据权限</el-button>
|
|
||||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
||||||
v-hasPermi="['system:role:delete']">删除</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
|
|
||||||
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNo" :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="name">
|
|
||||||
<el-input v-model="form.name" placeholder="请输入角色名称" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="角色标识" prop="code">
|
|
||||||
<el-input v-model="form.code" placeholder="请输入角色标识" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="角色顺序" prop="sort">
|
|
||||||
<el-input-number v-model="form.sort" controls-position="right" :min="0" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="备注">
|
|
||||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
|
|
||||||
</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>
|
|
||||||
|
|
||||||
<!-- 分配角色的数据权限对话框 -->
|
|
||||||
<el-dialog title="分配数据权限" :visible.sync="openDataScope" width="500px" append-to-body>
|
|
||||||
<el-form :model="form" label-width="80px">
|
|
||||||
<el-form-item label="角色名称">
|
|
||||||
<el-input v-model="form.name" :disabled="true" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="角色标识">
|
|
||||||
<el-input v-model="form.code" :disabled="true" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="权限范围">
|
|
||||||
<el-select v-model="form.dataScope">
|
|
||||||
<el-option
|
|
||||||
v-for="item in dataScopeDictDatas"
|
|
||||||
:key="parseInt(item.value)"
|
|
||||||
:label="item.label"
|
|
||||||
:value="parseInt(item.value)"
|
|
||||||
></el-option>
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="数据权限" v-show="form.dataScope === SysDataScopeEnum.DEPT_CUSTOM">
|
|
||||||
<el-checkbox :checked="!form.deptCheckStrictly" @change="handleCheckedTreeConnect($event, 'dept')">父子联动(选中父节点,自动选择子节点)</el-checkbox>
|
|
||||||
<el-checkbox v-model="deptExpand" @change="handleCheckedTreeExpand($event, 'dept')">展开/折叠</el-checkbox>
|
|
||||||
<el-checkbox v-model="deptNodeAll" @change="handleCheckedTreeNodeAll($event, 'dept')">全选/全不选</el-checkbox>
|
|
||||||
<el-tree
|
|
||||||
class="tree-border"
|
|
||||||
:data="deptOptions"
|
|
||||||
show-checkbox
|
|
||||||
default-expand-all
|
|
||||||
ref="dept"
|
|
||||||
node-key="id"
|
|
||||||
:check-strictly="form.deptCheckStrictly"
|
|
||||||
empty-text="加载中,请稍后"
|
|
||||||
:props="defaultProps"
|
|
||||||
></el-tree>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
<div slot="footer" class="dialog-footer">
|
|
||||||
<el-button type="primary" @click="submitDataScope">确 定</el-button>
|
|
||||||
<el-button @click="cancelDataScope">取 消</el-button>
|
|
||||||
</div>
|
|
||||||
</el-dialog>
|
|
||||||
|
|
||||||
<!-- 分配角色的菜单权限对话框 -->
|
|
||||||
<el-dialog :title="title" :visible.sync="openMenu" width="500px" append-to-body>
|
|
||||||
<el-form :model="form" label-width="80px">
|
|
||||||
<el-form-item label="角色名称">
|
|
||||||
<el-input v-model="form.name" :disabled="true" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="角色标识">
|
|
||||||
<el-input v-model="form.code" :disabled="true" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="菜单权限">
|
|
||||||
<el-checkbox v-model="menuExpand" @change="handleCheckedTreeExpand($event, 'menu')">展开/折叠</el-checkbox>
|
|
||||||
<el-checkbox v-model="menuNodeAll" @change="handleCheckedTreeNodeAll($event, 'menu')">全选/全不选</el-checkbox>
|
|
||||||
<el-tree class="tree-border" :data="menuOptions" show-checkbox ref="menu" node-key="id"
|
|
||||||
:check-strictly="form.menuCheckStrictly" empty-text="加载中,请稍后" :props="defaultProps"></el-tree>
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
<div slot="footer" class="dialog-footer">
|
|
||||||
<el-button type="primary" @click="submitMenu">确 定</el-button>
|
|
||||||
<el-button @click="cancelMenu">取 消</el-button>
|
|
||||||
</div>
|
|
||||||
</el-dialog>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import { delRole, listRole } from '@/api/system/role';
|
||||||
addRole,
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
changeRoleStatus,
|
import RoleAdd from './components/roleAdd';
|
||||||
delRole,
|
import MenuAuth from './components/menuAuth';
|
||||||
exportRole,
|
import DataAuth from './components/dataAuth';
|
||||||
getRole,
|
import statusBtn from './../components/statusBtn.vue';
|
||||||
listRole,
|
const tableProps = [
|
||||||
updateRole
|
{
|
||||||
} from "@/api/system/role";
|
prop: 'code',
|
||||||
import {listSimpleMenus} from "@/api/system/menu";
|
label: '角色编码',
|
||||||
import {assignRoleMenu, listRoleMenus, assignRoleDataScope} from "@/api/system/permission";
|
minWidth: 140,
|
||||||
import {listSimpleDepts} from "@/api/system/dept";
|
showOverflowtooltip: true,
|
||||||
import {CommonStatusEnum, SystemDataScopeEnum} from "@/utils/constants";
|
},
|
||||||
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
{
|
||||||
|
prop: 'name',
|
||||||
|
label: '角色名称',
|
||||||
|
minWidth: 140,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'sort',
|
||||||
|
label: '角色顺序',
|
||||||
|
minWidth: 90,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'status',
|
||||||
|
label: '状态',
|
||||||
|
minWidth: 100,
|
||||||
|
subcomponent: statusBtn,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'remark',
|
||||||
|
label: '角色描述',
|
||||||
|
minWidth: 140,
|
||||||
|
showOverflowtooltip: true,
|
||||||
|
},
|
||||||
|
];
|
||||||
export default {
|
export default {
|
||||||
name: "SystemRole",
|
name: 'SystemRole',
|
||||||
data() {
|
mixins: [tableHeightMixin],
|
||||||
return {
|
components: { RoleAdd, MenuAuth, DataAuth },
|
||||||
// 遮罩层
|
data() {
|
||||||
loading: true,
|
return {
|
||||||
// 导出遮罩层
|
formConfig: [
|
||||||
exportLoading: false,
|
{
|
||||||
// 显示搜索条件
|
type: 'input',
|
||||||
showSearch: true,
|
label: '角色名称',
|
||||||
// 总条数
|
placeholder: '角色名称',
|
||||||
total: 0,
|
param: 'name',
|
||||||
// 角色表格数据
|
},
|
||||||
roleList: [],
|
{
|
||||||
// 弹出层标题
|
type: 'button',
|
||||||
title: "",
|
btnName: '查询',
|
||||||
// 是否显示弹出层
|
name: 'search',
|
||||||
open: false,
|
color: 'primary',
|
||||||
// 是否显示弹出层(数据权限)
|
},
|
||||||
openDataScope: false,
|
{
|
||||||
// 是否显示弹出层(菜单权限)
|
type: this.$auth.hasPermi('system:role:create') ? 'separate' : '',
|
||||||
openMenu: false,
|
},
|
||||||
menuExpand: false,
|
{
|
||||||
menuNodeAll: false,
|
type: this.$auth.hasPermi('system:role:create') ? 'button' : '',
|
||||||
deptExpand: true,
|
btnName: '新增',
|
||||||
deptNodeAll: false,
|
name: 'add',
|
||||||
// 菜单列表
|
color: 'success',
|
||||||
menuOptions: [],
|
plain: true,
|
||||||
// 部门列表
|
},
|
||||||
deptOptions: [], // 部门属性结构
|
],
|
||||||
depts: [], // 部门列表
|
queryParams: {
|
||||||
// 查询参数
|
pageNo: 1,
|
||||||
queryParams: {
|
pageSize: 20,
|
||||||
pageNo: 1,
|
name: '',
|
||||||
pageSize: 10,
|
},
|
||||||
name: undefined,
|
tableProps,
|
||||||
code: undefined,
|
list: [],
|
||||||
status: undefined,
|
tableBtn: [
|
||||||
createTime: []
|
this.$auth.hasPermi('system:permission:assign-role-menu')
|
||||||
},
|
? {
|
||||||
// 表单参数
|
type: 'menuAuth',
|
||||||
form: {},
|
btnName: '菜单权限',
|
||||||
defaultProps: {
|
}
|
||||||
label: "name",
|
: undefined,
|
||||||
children: "children"
|
this.$auth.hasPermi('system:permission:assign-role-data-scope')
|
||||||
},
|
? {
|
||||||
// 表单校验
|
type: 'dataAuth',
|
||||||
rules: {
|
btnName: '数据权限',
|
||||||
name: [
|
// showTip: "新增工单",
|
||||||
{ required: true, message: "角色名称不能为空", trigger: "blur" }
|
}
|
||||||
],
|
: undefined,
|
||||||
code: [
|
this.$auth.hasPermi('system:role:update')
|
||||||
{ required: true, message: "角色标识不能为空", trigger: "blur" }
|
? {
|
||||||
],
|
type: 'edit',
|
||||||
sort: [
|
btnName: '编辑',
|
||||||
{ required: true, message: "角色顺序不能为空", trigger: "blur" }
|
}
|
||||||
]
|
: undefined,
|
||||||
},
|
this.$auth.hasPermi('system:role:delete')
|
||||||
|
? {
|
||||||
// 枚举
|
type: 'delete',
|
||||||
SysCommonStatusEnum: CommonStatusEnum,
|
btnName: '删除',
|
||||||
SysDataScopeEnum: SystemDataScopeEnum,
|
}
|
||||||
// 数据字典
|
: undefined,
|
||||||
roleTypeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_ROLE_TYPE),
|
].filter((v) => v),
|
||||||
statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),
|
addOrEditTitle: '',
|
||||||
dataScopeDictDatas: getDictDatas(DICT_TYPE.SYSTEM_DATA_SCOPE)
|
centervisible: false,
|
||||||
};
|
// 菜单权限
|
||||||
},
|
menuVisible: false,
|
||||||
created() {
|
// 数据权限
|
||||||
this.getList();
|
dataVisible: false,
|
||||||
},
|
// 总条数
|
||||||
methods: {
|
total: 0,
|
||||||
/** 查询角色列表 */
|
};
|
||||||
getList() {
|
},
|
||||||
this.loading = true;
|
created() {
|
||||||
listRole(this.queryParams).then(
|
this.getList();
|
||||||
response => {
|
},
|
||||||
this.roleList = response.data.list;
|
methods: {
|
||||||
this.total = response.data.total;
|
/** 查询角色列表 */
|
||||||
this.loading = false;
|
getList() {
|
||||||
}
|
listRole(this.queryParams).then((response) => {
|
||||||
);
|
this.list = response.data.list;
|
||||||
},
|
this.total = response.data.total;
|
||||||
// 角色状态修改
|
});
|
||||||
handleStatusChange(row) {
|
},
|
||||||
// 此时,row 已经变成目标状态了,所以可以直接提交请求和提示
|
buttonClick(val) {
|
||||||
let text = row.status === CommonStatusEnum.ENABLE ? "启用" : "停用";
|
console.log(val);
|
||||||
this.$modal.confirm('确认要"' + text + '""' + row.name + '"角色吗?').then(function() {
|
if (val.btnName === 'search') {
|
||||||
return changeRoleStatus(row.id, row.status);
|
this.queryParams.pageNo = 1;
|
||||||
}).then(() => {
|
this.queryParams.name = val.name;
|
||||||
this.$modal.msgSuccess(text + "成功");
|
this.getList();
|
||||||
}).catch(function() {
|
} else {
|
||||||
// 异常时,需要将 row.status 状态重置回之前的
|
this.addOrEditTitle = '新增';
|
||||||
row.status = row.status === CommonStatusEnum.ENABLE ? CommonStatusEnum.DISABLE
|
this.centervisible = true;
|
||||||
: CommonStatusEnum.ENABLE;
|
this.$nextTick(() => {
|
||||||
});
|
this.$refs.roleAdd.init();
|
||||||
},
|
});
|
||||||
// 取消按钮
|
}
|
||||||
cancel() {
|
},
|
||||||
this.open = false;
|
handleClick(val) {
|
||||||
this.reset();
|
switch (val.type) {
|
||||||
},
|
case 'edit':
|
||||||
// 取消按钮(数据权限)
|
this.addOrEditTitle = '编辑';
|
||||||
cancelDataScope() {
|
this.centervisible = true;
|
||||||
this.openDataScope = false;
|
this.$nextTick(() => {
|
||||||
this.reset();
|
this.$refs.roleAdd.init(val.data.id);
|
||||||
},
|
});
|
||||||
// 取消按钮(菜单权限)
|
break;
|
||||||
cancelMenu() {
|
case 'delete':
|
||||||
this.openMenu = false;
|
this.handleDelete(val.data);
|
||||||
this.reset();
|
break;
|
||||||
},
|
case 'menuAuth':
|
||||||
// 表单重置
|
this.menuVisible = true;
|
||||||
reset() {
|
this.$nextTick(() => {
|
||||||
if (this.$refs.menu !== undefined) {
|
this.$refs.menuAuth.init(val.data.id);
|
||||||
this.$refs.menu.setCheckedKeys([]);
|
});
|
||||||
}
|
break;
|
||||||
this.menuExpand = false;
|
default:
|
||||||
this.menuNodeAll = false;
|
this.dataVisible = true;
|
||||||
this.deptExpand = true;
|
this.$nextTick(() => {
|
||||||
this.deptNodeAll = false;
|
this.$refs.dataAuth.init(val.data.id);
|
||||||
this.form = {
|
});
|
||||||
id: undefined,
|
}
|
||||||
name: undefined,
|
},
|
||||||
code: undefined,
|
/** 删除按钮操作 */
|
||||||
sort: 0,
|
handleDelete(row) {
|
||||||
deptIds: [],
|
this.$modal
|
||||||
menuIds: [],
|
.delConfirm(row.name)
|
||||||
dataScope: undefined,
|
.then(function () {
|
||||||
deptCheckStrictly: false,
|
return delRole(row.id);
|
||||||
menuCheckStrictly: true,
|
})
|
||||||
remark: undefined
|
.then(() => {
|
||||||
};
|
this.queryParams.pageNo = 1;
|
||||||
this.resetForm("form");
|
this.getList();
|
||||||
},
|
this.$modal.msgSuccess('删除成功');
|
||||||
/** 搜索按钮操作 */
|
})
|
||||||
handleQuery() {
|
.catch(() => {});
|
||||||
this.queryParams.pageNo = 1;
|
},
|
||||||
this.getList();
|
// 新增取消
|
||||||
},
|
handleCancel() {
|
||||||
/** 重置按钮操作 */
|
this.$refs.roleAdd.formClear();
|
||||||
resetQuery() {
|
this.centervisible = false;
|
||||||
this.resetForm("queryForm");
|
this.addOrEditTitle = '';
|
||||||
this.handleQuery();
|
},
|
||||||
},
|
handleConfirm() {
|
||||||
// 树权限(展开/折叠)
|
this.$refs.roleAdd.submitForm();
|
||||||
handleCheckedTreeExpand(value, type) {
|
},
|
||||||
if (type === 'menu') {
|
successSubmit() {
|
||||||
let treeList = this.menuOptions;
|
this.handleCancel();
|
||||||
for (let i = 0; i < treeList.length; i++) {
|
this.getList();
|
||||||
this.$refs.menu.store.nodesMap[treeList[i].id].expanded = value;
|
},
|
||||||
}
|
// 菜单权限
|
||||||
} else if (type === 'dept') {
|
handleCancelm() {
|
||||||
let treeList = this.deptOptions;
|
this.$refs.menuAuth.formClear();
|
||||||
for (let i = 0; i < treeList.length; i++) {
|
this.menuVisible = false;
|
||||||
this.$refs.dept.store.nodesMap[treeList[i].id].expanded = value;
|
},
|
||||||
}
|
handleConfirmm() {
|
||||||
}
|
this.$refs.menuAuth.submitForm();
|
||||||
},
|
},
|
||||||
// 树权限(全选/全不选)
|
successSubmitm() {
|
||||||
handleCheckedTreeNodeAll(value, type) {
|
this.handleCancelm();
|
||||||
if (type === 'menu') {
|
this.getList();
|
||||||
this.$refs.menu.setCheckedNodes(value ? this.menuOptions: []);
|
},
|
||||||
} else if (type === 'dept') {
|
// 数据权限
|
||||||
// this.$refs.dept.setCheckedNodes(value ? this.deptOptions: []);
|
handleCanceld() {
|
||||||
this.$refs.dept.setCheckedNodes(value ? this.depts: []);
|
this.$refs.dataAuth.formClear();
|
||||||
}
|
this.dataVisible = false;
|
||||||
},
|
},
|
||||||
// 树权限(父子联动)
|
handleConfirmd() {
|
||||||
handleCheckedTreeConnect(value, type) {
|
this.$refs.dataAuth.submitForm();
|
||||||
if (type === 'menu') {
|
},
|
||||||
this.form.menuCheckStrictly = value;
|
successSubmitd() {
|
||||||
} else if (type === 'dept') {
|
this.handleCanceld();
|
||||||
this.form.deptCheckStrictly = !value;
|
this.getList();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
/** 新增按钮操作 */
|
|
||||||
handleAdd() {
|
|
||||||
this.reset();
|
|
||||||
this.open = true;
|
|
||||||
this.title = "添加角色";
|
|
||||||
},
|
|
||||||
/** 修改按钮操作 */
|
|
||||||
handleUpdate(row) {
|
|
||||||
this.reset();
|
|
||||||
const id = row.id
|
|
||||||
getRole(id).then(response => {
|
|
||||||
this.form = response.data;
|
|
||||||
this.open = true;
|
|
||||||
this.title = "修改角色";
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 分配菜单权限操作 */
|
|
||||||
handleMenu(row) {
|
|
||||||
this.reset();
|
|
||||||
const id = row.id
|
|
||||||
// 处理了 form 的角色 name 和 code 的展示
|
|
||||||
this.form.id = id;
|
|
||||||
this.form.name = row.name;
|
|
||||||
this.form.code = row.code;
|
|
||||||
// 打开弹窗
|
|
||||||
this.openMenu = true;
|
|
||||||
// 获得菜单列表
|
|
||||||
listSimpleMenus().then(response => {
|
|
||||||
// 处理 menuOptions 参数
|
|
||||||
this.menuOptions = [];
|
|
||||||
this.menuOptions.push(...this.handleTree(response.data, "id"));
|
|
||||||
// 获取角色拥有的菜单权限
|
|
||||||
listRoleMenus(id).then(response => {
|
|
||||||
// 设置为严格,避免设置父节点自动选中子节点,解决半选中问题
|
|
||||||
this.form.menuCheckStrictly = true
|
|
||||||
// 设置选中
|
|
||||||
this.$refs.menu.setCheckedKeys(response.data);
|
|
||||||
// 设置为非严格,继续使用半选中
|
|
||||||
this.form.menuCheckStrictly = false
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
},
|
|
||||||
/** 分配数据权限操作 */
|
|
||||||
handleDataScope(row) {
|
|
||||||
this.reset();
|
|
||||||
// 处理了 form 的角色 name 和 code 的展示
|
|
||||||
this.form.id = row.id;
|
|
||||||
this.form.name = row.name;
|
|
||||||
this.form.code = row.code;
|
|
||||||
// 打开弹窗
|
|
||||||
this.openDataScope = true;
|
|
||||||
// 获得部门列表
|
|
||||||
listSimpleDepts().then(response => {
|
|
||||||
// 处理 deptOptions 参数
|
|
||||||
this.deptOptions = [];
|
|
||||||
this.deptOptions.push(...this.handleTree(response.data, "id"));
|
|
||||||
this.depts = response.data;
|
|
||||||
// this.deptIds = response.data.map(x => x.id);
|
|
||||||
// 获得角色拥有的数据权限
|
|
||||||
getRole(row.id).then(response => {
|
|
||||||
this.form.dataScope = response.data.dataScope;
|
|
||||||
this.$refs.dept.setCheckedKeys(response.data.dataScopeDeptIds, false);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 提交按钮 */
|
|
||||||
submitForm: function() {
|
|
||||||
this.$refs["form"].validate(valid => {
|
|
||||||
if (valid) {
|
|
||||||
if (this.form.id !== undefined) {
|
|
||||||
updateRole(this.form).then(response => {
|
|
||||||
this.$modal.msgSuccess("修改成功");
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
addRole(this.form).then(response => {
|
|
||||||
this.$modal.msgSuccess("新增成功");
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 提交按钮(数据权限) */
|
|
||||||
submitDataScope: function() {
|
|
||||||
if (this.form.id !== undefined) {
|
|
||||||
assignRoleDataScope({
|
|
||||||
roleId: this.form.id,
|
|
||||||
dataScope: this.form.dataScope,
|
|
||||||
dataScopeDeptIds: this.form.dataScope !== SystemDataScopeEnum.DEPT_CUSTOM ? [] :
|
|
||||||
this.$refs.dept.getCheckedKeys()
|
|
||||||
}).then(response => {
|
|
||||||
this.$modal.msgSuccess("修改成功");
|
|
||||||
this.openDataScope = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/** 提交按钮(菜单权限) */
|
|
||||||
submitMenu: function() {
|
|
||||||
if (this.form.id !== undefined) {
|
|
||||||
assignRoleMenu({
|
|
||||||
roleId: this.form.id,
|
|
||||||
menuIds: [...this.$refs.menu.getCheckedKeys(), ...this.$refs.menu.getHalfCheckedKeys()]
|
|
||||||
}).then(response => {
|
|
||||||
this.$modal.msgSuccess("修改成功");
|
|
||||||
this.openMenu = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/** 删除按钮操作 */
|
|
||||||
handleDelete(row) {
|
|
||||||
const ids = row.id || this.ids;
|
|
||||||
this.$modal.confirm('是否确认删除角色编号为"' + ids + '"的数据项?').then(function() {
|
|
||||||
return delRole(ids);
|
|
||||||
}).then(() => {
|
|
||||||
this.getList();
|
|
||||||
this.$modal.msgSuccess("删除成功");
|
|
||||||
}).catch(() => {});
|
|
||||||
},
|
|
||||||
/** 导出按钮操作 */
|
|
||||||
handleExport() {
|
|
||||||
const queryParams = this.queryParams;
|
|
||||||
this.$modal.confirm('是否确认导出所有角色数据项?').then(function() {
|
|
||||||
this.exportLoading = true;
|
|
||||||
return exportRole(queryParams);
|
|
||||||
}).then(response => {
|
|
||||||
this.$download.excel(response, '角色数据.xls');
|
|
||||||
this.exportLoading = false;
|
|
||||||
}).catch(() => {});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.app-container {
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100vh - 164px);
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -7,9 +7,9 @@
|
|||||||
<span>个人信息</span>
|
<span>个人信息</span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- <div class="text-center">
|
<div class="text-center">
|
||||||
<userAvatar :user="user" />
|
<userAvatar :user="user" />
|
||||||
</div> -->
|
</div>
|
||||||
<ul class="list-group list-group-striped">
|
<ul class="list-group list-group-striped">
|
||||||
<li class="list-group-item">
|
<li class="list-group-item">
|
||||||
<svg-icon icon-class="user" />用户名称
|
<svg-icon icon-class="user" />用户名称
|
||||||
@ -66,7 +66,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import userAvatar from "./userAvatar";
|
import userAvatar from "./userAvatar";
|
||||||
import userInfo from "./userInfo";
|
import userInfo from "./userInfo";
|
||||||
import resetPwd from "./resetPwd";
|
import resetPwd from "./resetPwd";
|
||||||
import userSocial from "./userSocial";
|
import userSocial from "./userSocial";
|
||||||
@ -74,7 +74,7 @@ import { getUserProfile } from "@/api/system/user";
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Profile",
|
name: "Profile",
|
||||||
components: { /** userAvatar , **/ userInfo, resetPwd, userSocial },
|
components: { userAvatar, userInfo, resetPwd, userSocial },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
user: {},
|
user: {},
|
||||||
|
@ -67,7 +67,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
createWarehouseArea,
|
createWarehouseArea,
|
||||||
updateWarehouseArea,
|
updateWarehouseArea,
|
||||||
|
@ -46,12 +46,12 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import codeFilter from '../../mixins/code-filter';
|
import codeFilter from '@/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
deleteWarehouseArea,
|
deleteWarehouseArea,
|
||||||
getWarehouseAreaPage,
|
getWarehouseAreaPage,
|
||||||
getWarehouseAreaList
|
getWarehouseAreaListAll
|
||||||
} from "@/api/warehouse/warehouse-area-setup";
|
} from "@/api/warehouse/warehouse-area-setup";
|
||||||
import {
|
import {
|
||||||
getWarehouseList
|
getWarehouseList
|
||||||
@ -145,7 +145,7 @@ export default {
|
|||||||
getWarehouseList().then((response) => {
|
getWarehouseList().then((response) => {
|
||||||
this.formConfig[0].selectOptions = response.data;
|
this.formConfig[0].selectOptions = response.data;
|
||||||
});
|
});
|
||||||
getWarehouseAreaList().then((response) => {
|
getWarehouseAreaListAll().then((response) => {
|
||||||
this.formConfig[1].selectOptions = response.data;
|
this.formConfig[1].selectOptions = response.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2023-08-01 13:52:10
|
* @Date: 2023-08-01 13:52:10
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-07 15:53:15
|
* @LastEditTime: 2024-08-21 10:26:21
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -20,7 +20,7 @@
|
|||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.warehouseId"
|
v-model="dataForm.warehouseId"
|
||||||
filterable
|
filterable
|
||||||
clearable
|
@change="getAreaList"
|
||||||
:style="{ width: '100%' }"
|
:style="{ width: '100%' }"
|
||||||
placeholder="请选择仓库名称">
|
placeholder="请选择仓库名称">
|
||||||
<el-option
|
<el-option
|
||||||
@ -35,8 +35,8 @@
|
|||||||
<el-form-item label="库区名称" prop="areaId">
|
<el-form-item label="库区名称" prop="areaId">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.areaId"
|
v-model="dataForm.areaId"
|
||||||
|
:disabled="!areaArr.length>0"
|
||||||
filterable
|
filterable
|
||||||
clearable
|
|
||||||
:style="{ width: '100%' }"
|
:style="{ width: '100%' }"
|
||||||
@change="setAreaType"
|
@change="setAreaType"
|
||||||
placeholder="请选择库区名称">
|
placeholder="请选择库区名称">
|
||||||
@ -125,7 +125,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
createWarehouseLocation,
|
createWarehouseLocation,
|
||||||
updateWarehouseLocation,
|
updateWarehouseLocation,
|
||||||
@ -206,11 +206,16 @@ export default {
|
|||||||
getWarehouseList().then((response) => {
|
getWarehouseList().then((response) => {
|
||||||
this.warehouseArr = response.data;
|
this.warehouseArr = response.data;
|
||||||
});
|
});
|
||||||
getWarehouseAreaList().then((response) => {
|
|
||||||
this.areaArr = response.data;
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
getAreaList(){
|
||||||
|
getWarehouseAreaList(this.dataForm.warehouseId).then((response) => {
|
||||||
|
this.areaArr = response.data;
|
||||||
|
if(this.areaArr.length===0){
|
||||||
|
this.$message('该仓库下暂无库区');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
setAreaType() {
|
setAreaType() {
|
||||||
if (this.dataForm.areaId) {
|
if (this.dataForm.areaId) {
|
||||||
this.dataForm.areaType = this.areaArr.find(
|
this.dataForm.areaType = this.areaArr.find(
|
||||||
|
@ -46,14 +46,14 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import codeFilter from '../../mixins/code-filter';
|
import codeFilter from '@/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
deleteWarehouseLocation,
|
deleteWarehouseLocation,
|
||||||
getWarehouseLocationPage,
|
getWarehouseLocationPage,
|
||||||
} from "@/api/warehouse/warehouse-location-setup";
|
} from "@/api/warehouse/warehouse-location-setup";
|
||||||
import {
|
import {
|
||||||
getWarehouseAreaList
|
getWarehouseAreaListAll
|
||||||
} from "@/api/warehouse/warehouse-area-setup";
|
} from "@/api/warehouse/warehouse-area-setup";
|
||||||
import {
|
import {
|
||||||
getWarehouseList
|
getWarehouseList
|
||||||
@ -173,7 +173,7 @@ export default {
|
|||||||
getWarehouseList().then((response) => {
|
getWarehouseList().then((response) => {
|
||||||
this.formConfig[0].selectOptions = response.data;
|
this.formConfig[0].selectOptions = response.data;
|
||||||
});
|
});
|
||||||
getWarehouseAreaList().then((response) => {
|
getWarehouseAreaListAll().then((response) => {
|
||||||
this.formConfig[1].selectOptions = response.data;
|
this.formConfig[1].selectOptions = response.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -66,7 +66,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
createWarehouse,
|
createWarehouse,
|
||||||
updateWarehouse,
|
updateWarehouse,
|
||||||
|
@ -46,9 +46,9 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import codeFilter from '../../mixins/code-filter';
|
import codeFilter from '@/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
deleteWarehouse,
|
deleteWarehouse,
|
||||||
getWarehousePage,
|
getWarehousePage,
|
||||||
|
@ -129,7 +129,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
createWarehouseRealtime,
|
createWarehouseRealtime,
|
||||||
outWarehouseRealtime,
|
outWarehouseRealtime,
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import product from './product-mini';
|
import product from './product-mini';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { getMaterialList } from '@/api/base/material';
|
import { getMaterialList } from '@/api/base/material';
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import { getWarehouseRealtimePage } from '@/api/warehouse/warehouseRealtime';
|
import { getWarehouseRealtimePage } from '@/api/warehouse/warehouseRealtime';
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import { getWarehouseRealtimeDet } from '@/api/warehouse/warehouseRealtime';
|
import { getWarehouseRealtimeDet } from '@/api/warehouse/warehouseRealtime';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../mixins/basic-add';
|
import basicAdd from '@/mixins/basic-add';
|
||||||
import {
|
import {
|
||||||
outWarehouseRealtimeLocation,
|
outWarehouseRealtimeLocation,
|
||||||
outWarehouseRealtimeLocationList,
|
outWarehouseRealtimeLocationList,
|
||||||
|
@ -81,6 +81,7 @@ export default {
|
|||||||
this.$refs['dataForm'].validate((valid) => {
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
if (this.dataForm.productInfo) {
|
if (this.dataForm.productInfo) {
|
||||||
this.dataForm.productInfo.goodsId = this.dataForm.productInfo.id
|
this.dataForm.productInfo.goodsId = this.dataForm.productInfo.id
|
||||||
|
this.dataForm.productInfo.spec = this.dataForm.productInfo.specifications
|
||||||
this.dataForm.productInfo.remark = ''
|
this.dataForm.productInfo.remark = ''
|
||||||
// 修改的提交
|
// 修改的提交
|
||||||
if (this.dataForm.index >= 0) {
|
if (this.dataForm.index >= 0) {
|
||||||
|
@ -55,13 +55,16 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
<base-table
|
<base-table
|
||||||
|
v-if="
|
||||||
|
productAttributeList.length > 1 ||
|
||||||
|
(productAttributeList.length && !isDetail)
|
||||||
|
"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
@emitFun="inputChange"
|
@emitFun="inputChange"
|
||||||
:height="400"
|
:height="400"
|
||||||
:table-data="productAttributeList"
|
:table-data="productAttributeList">
|
||||||
v-if="productAttributeList.length">
|
|
||||||
<method-btn
|
<method-btn
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
v-if="!isDetail"
|
v-if="!isDetail"
|
||||||
@ -70,6 +73,31 @@
|
|||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
|
<!-- 一条数据 -->
|
||||||
|
<div v-else-if="productAttributeList.length === 1 && isDetail">
|
||||||
|
<el-descriptions title="" direction="vertical" :column="3" border>
|
||||||
|
<el-descriptions-item label="物品名称">
|
||||||
|
{{ productAttributeList[0].name }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品编码">
|
||||||
|
{{ productAttributeList[0].code }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品规格">
|
||||||
|
{{ productAttributeList[0].spec }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品批次">
|
||||||
|
{{ productAttributeList[0].goodsBatch }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="数量">
|
||||||
|
{{ productAttributeList[0].num }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品单位">
|
||||||
|
{{
|
||||||
|
getDictDataLabel('unit_dict', productAttributeList[0].unit)
|
||||||
|
}}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</div>
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-else></div>
|
<div class="no-data-bg" v-else></div>
|
||||||
</div>
|
</div>
|
||||||
@ -118,7 +146,7 @@ const tableProps1 = [
|
|||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'specifications',
|
prop: 'spec',
|
||||||
label: '物品规格',
|
label: '物品规格',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -151,7 +179,7 @@ const tableProps2 = [
|
|||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'specifications',
|
prop: 'spec',
|
||||||
label: '物品规格',
|
label: '物品规格',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -210,9 +238,9 @@ export default {
|
|||||||
init(val, nickname, isDetail) {
|
init(val, nickname, isDetail) {
|
||||||
this.isDetail = isDetail || false;
|
this.isDetail = isDetail || false;
|
||||||
if (isDetail) {
|
if (isDetail) {
|
||||||
this.tableProps= tableProps2;
|
this.tableProps = tableProps2;
|
||||||
}else{
|
} else {
|
||||||
this.tableProps= tableProps1;
|
this.tableProps = tableProps1;
|
||||||
}
|
}
|
||||||
this.operator = nickname;
|
this.operator = nickname;
|
||||||
this.dataForm.id = val.id;
|
this.dataForm.id = val.id;
|
||||||
|
@ -54,8 +54,8 @@
|
|||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import Drawer from './drawer';
|
import Drawer from './drawer';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import { getWarehouseRealtimeLocationPage } from '@/api/warehouse/warehouseRealtimeLocation';
|
import { getWarehouseRealtimeLocationPage } from '@/api/warehouse/warehouseRealtimeLocation';
|
||||||
import { listData } from '@/api/system/dict/data';
|
import { listData } from '@/api/system/dict/data';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2024-08-09 14:48:46
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2024-08-21 10:00:21
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
@ -25,10 +32,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getWarehouseRealtimeHisPage,
|
inventoryPage,
|
||||||
} from '@/api/warehouse/warehouseRealtime';
|
} from '@/api/warehouse/warehouseRealtime';
|
||||||
import { getMaterialList } from '@/api/base/material';
|
import { getMaterialList } from '@/api/base/material';
|
||||||
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
@ -40,10 +47,6 @@ const tableProps = [
|
|||||||
prop: 'warehouseName',
|
prop: 'warehouseName',
|
||||||
label: '仓库名称',
|
label: '仓库名称',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'warehouseAreaName',
|
|
||||||
label: '库区名称',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '物品名称',
|
label: '物品名称',
|
||||||
@ -51,34 +54,37 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '物品编码',
|
label: '物品编码',
|
||||||
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'spec',
|
prop: 'spec',
|
||||||
label: '物品规格',
|
label: '物品规格',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'goodsBatch',
|
prop: 'batch',
|
||||||
label: '物品批次',
|
label: '物品批次',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'supplierName',
|
||||||
|
label: '供应商',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'num',
|
prop: 'num',
|
||||||
label: '出入库数量',
|
label: '当前库存量',
|
||||||
|
width: 95,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'operateStatus',
|
prop: 'unit',
|
||||||
label: '操作状态',
|
label: '单位',
|
||||||
filter: publicFormatter('warehouse_operate_status'),
|
filter: publicFormatter('unit_dict'),
|
||||||
|
width: 60,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'operateTime',
|
prop: 'latestInTime',
|
||||||
label: '操作时间',
|
label: '入库时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
width: 150,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'operator',
|
|
||||||
label: '操作人',
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -86,7 +92,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getWarehouseRealtimeHisPage,
|
getDataListURL: inventoryPage,
|
||||||
},
|
},
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps,
|
tableProps,
|
||||||
@ -96,37 +102,11 @@ export default {
|
|||||||
type: 'select',
|
type: 'select',
|
||||||
label: '物品名称',
|
label: '物品名称',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'goodsId',
|
param: 'goodsName',
|
||||||
defaultSelect: '',
|
defaultSelect: '',
|
||||||
|
valueField: 'name',
|
||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '操作人',
|
|
||||||
placeholder: '操作人',
|
|
||||||
param: 'operator',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '操作状态',
|
|
||||||
selectOptions: [],
|
|
||||||
param: 'status',
|
|
||||||
defaultSelect: '',
|
|
||||||
filterable: true,
|
|
||||||
labelField: 'label',
|
|
||||||
valueField: 'value',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'datePicker',
|
|
||||||
label: '操作时间',
|
|
||||||
dateType: 'daterange',
|
|
||||||
format: 'yyyy-MM-dd',
|
|
||||||
valueFormat: "timestamp",
|
|
||||||
rangeSeparator: '-',
|
|
||||||
startPlaceholder: '开始时间',
|
|
||||||
endPlaceholder: '结束时间',
|
|
||||||
param: 'searchTime',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -139,14 +119,6 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const queryParams = {
|
|
||||||
pageNo: 1,
|
|
||||||
pageSize: 99,
|
|
||||||
dictType: 'warehouse_operate_status',
|
|
||||||
};
|
|
||||||
listData(queryParams).then((response) => {
|
|
||||||
this.formConfig[2].selectOptions = response.data.list;
|
|
||||||
});
|
|
||||||
getMaterialList().then((response) => {
|
getMaterialList().then((response) => {
|
||||||
this.formConfig[0].selectOptions = response.data;
|
this.formConfig[0].selectOptions = response.data;
|
||||||
});
|
});
|
||||||
@ -157,10 +129,7 @@ export default {
|
|||||||
case 'search':
|
case 'search':
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 10;
|
||||||
this.listQuery.goodsId = val.goodsId;
|
this.listQuery.goodsName = val.goodsName;
|
||||||
this.listQuery.operator = val.operator;
|
|
||||||
this.listQuery.operateStatus = val.status;
|
|
||||||
this.listQuery.operateTime = val.searchTime?val.searchTime:null;
|
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -2,24 +2,63 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2023-11-23 16:09:47
|
* @LastEditTime: 2024-08-21 11:14:16
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<base-table
|
<div v-if="tableData.length > 1">
|
||||||
:table-props="tableProps"
|
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
|
||||||
:page="listQuery.pageNo"
|
<el-descriptions-item label="库位编码">
|
||||||
:limit="listQuery.pageSize"
|
{{ fatherInfo.code }}
|
||||||
:height="300"
|
</el-descriptions-item>
|
||||||
:table-data="tableData"
|
<el-descriptions-item label="托盘编码">
|
||||||
v-if="tableData.length" />
|
{{ fatherInfo.palletCode }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:height="300"
|
||||||
|
:table-data="tableData" />
|
||||||
|
</div>
|
||||||
|
<!-- 一条数据 -->
|
||||||
|
<div v-else-if="tableData.length === 1">
|
||||||
|
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
|
||||||
|
<el-descriptions-item label="库位编码" :span="2">
|
||||||
|
{{ fatherInfo.code }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="托盘编码">
|
||||||
|
{{ fatherInfo.palletCode }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品名称">
|
||||||
|
{{ tableData[0].name }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品编码">
|
||||||
|
{{ tableData[0].code }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品规格">
|
||||||
|
{{ tableData[0].spec }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品批次">
|
||||||
|
{{ tableData[0].goodsBatch }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="数量">
|
||||||
|
{{ tableData[0].num }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="物品单位">
|
||||||
|
{{ getDictDataLabel('unit_dict', tableData[0].unit) }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</div>
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-else></div>
|
<div class="no-data-bg" v-else></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { publicFormatter,getDictDataLabel } from '@/utils/dict';
|
||||||
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
|
import { getStoreInfo
|
||||||
|
} from '@/api/warehouse/warehouse-location-setup';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
@ -29,13 +68,14 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '物品编码',
|
label: '物品编码',
|
||||||
|
width: 160,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'spec',
|
prop: 'spec',
|
||||||
label: '物品规格',
|
label: '物品规格',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'batchCode',
|
prop: 'goodsBatch',
|
||||||
label: '物品批次',
|
label: '物品批次',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -43,13 +83,10 @@ const tableProps = [
|
|||||||
label: '数量',
|
label: '数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'allowTime',
|
prop: 'unit',
|
||||||
label: '允许留存时长(天)',
|
label: '单位',
|
||||||
width: 150
|
filter: publicFormatter('unit_dict'),
|
||||||
},
|
width: 60,
|
||||||
{
|
|
||||||
prop: 'remark',
|
|
||||||
label: '备注',
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
export default {
|
export default {
|
||||||
@ -57,6 +94,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps,
|
tableProps,
|
||||||
|
fatherInfo: {}, //父页面数据
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 100,
|
pageSize: 100,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
@ -67,10 +105,12 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
init(id) {
|
init(data) {
|
||||||
|
this.fatherInfo = data;
|
||||||
|
console.log(data)
|
||||||
this.dataListLoading = true;
|
this.dataListLoading = true;
|
||||||
getWarehouseLocationHisDet(id).then((response) => {
|
getStoreInfo(data.id).then((response) => {
|
||||||
this.tableData = response.data;
|
this.tableData = response.data || [];
|
||||||
this.dataListLoading = false;
|
this.dataListLoading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -12,12 +12,13 @@
|
|||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="listQuery.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="listQuery.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
|
:max-height="tableH"
|
||||||
:table-data="tableData">
|
:table-data="tableData">
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="100"
|
:width="80"
|
||||||
label="库位详情"
|
label="操作"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
@ -31,32 +32,25 @@
|
|||||||
<base-dialog
|
<base-dialog
|
||||||
:dialogTitle="addOrEditTitle"
|
:dialogTitle="addOrEditTitle"
|
||||||
:dialogVisible="addOrUpdateVisible"
|
:dialogVisible="addOrUpdateVisible"
|
||||||
|
@cancel="handleCancel"
|
||||||
|
@confirm="handleConfirm"
|
||||||
:before-close="handleCancel"
|
:before-close="handleCancel"
|
||||||
width="50%">
|
width="40%">
|
||||||
<add-or-update
|
<add-or-update
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="successSubmit"></add-or-update>
|
@refreshDataList="successSubmit"></add-or-update>
|
||||||
<slot name="footer">
|
|
||||||
<el-row slot="footer" type="flex" justify="end">
|
|
||||||
<el-col :span="24">
|
|
||||||
<el-button size="small" class="btnTextStyle" @click="handleCancel">
|
|
||||||
取消
|
|
||||||
</el-button>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</slot>
|
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import codeFilter from '@/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getWarehouseLocationHisPage,
|
getWarehouseLocationPage,
|
||||||
} from '@/api/warehouse/warehouseRealtimeLocation';
|
} from '@/api/warehouse/warehouse-location-setup';
|
||||||
import { listData } from '@/api/system/dict/data';
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
@ -65,9 +59,17 @@ const tableProps = [
|
|||||||
label: '仓库名称',
|
label: '仓库名称',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'areaName',
|
||||||
label: '库区名称',
|
label: '库区名称',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
prop: 'areaType',
|
||||||
|
label: '库区类型',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'name',
|
||||||
|
label: '库位名称',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '库位编码',
|
label: '库位编码',
|
||||||
@ -78,84 +80,45 @@ const tableProps = [
|
|||||||
filter: publicFormatter('location_type'),
|
filter: publicFormatter('location_type'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'palletCode',
|
prop: 'arrange',
|
||||||
label: '托盘编码',
|
label: '排',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'palletCode',
|
prop: 'col',
|
||||||
label: '物品名称',
|
label: '列',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'operateStatus',
|
prop: 'layer',
|
||||||
label: '操作状态',
|
label: '层',
|
||||||
filter: publicFormatter('warehouse_operate_status'),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'enabled',
|
||||||
label: '操作时间',
|
label: '库位状态',
|
||||||
filter: parseTime,
|
filter: codeFilter('deactivate'),
|
||||||
minWidth: 100,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'creator',
|
|
||||||
label: '操作人',
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
getDataListURL: getWarehouseLocationHisPage,
|
getDataListURL: getWarehouseLocationPage,
|
||||||
},
|
},
|
||||||
listQuery: {
|
|
||||||
storageType: 1,
|
|
||||||
},
|
|
||||||
tableData: [],
|
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi(`raw-material:warehouse-location-his:query`)
|
{
|
||||||
? {
|
type: 'detail',
|
||||||
type: 'detail',
|
btnName: '详情',
|
||||||
btnName: '详情',
|
},
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
drawerVisible: false,
|
tableData: [],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '库位编码',
|
label: '库位编码',
|
||||||
placeholder: '库位编码',
|
placeholder: '库位编码',
|
||||||
param: 'kcode',
|
param: 'code',
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '托盘编码',
|
|
||||||
placeholder: '托盘编码',
|
|
||||||
param: 'tcode',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '操作状态',
|
|
||||||
selectOptions: [],
|
|
||||||
param: 'status',
|
|
||||||
defaultSelect: '',
|
|
||||||
filterable: true,
|
|
||||||
labelField: 'label',
|
|
||||||
valueField: 'value',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'datePicker',
|
|
||||||
label: '操作时间',
|
|
||||||
dateType: 'daterange',
|
|
||||||
format: 'yyyy-MM-dd',
|
|
||||||
valueFormat: "timestamp",
|
|
||||||
rangeSeparator: '-',
|
|
||||||
startPlaceholder: '开始时间',
|
|
||||||
endPlaceholder: '结束时间',
|
|
||||||
param: 'searchTime',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
@ -170,25 +133,14 @@ export default {
|
|||||||
AddOrUpdate,
|
AddOrUpdate,
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const queryParams = {
|
|
||||||
pageNo: 1,
|
|
||||||
pageSize: 99,
|
|
||||||
dictType: 'warehouse_operate_status',
|
|
||||||
};
|
|
||||||
listData(queryParams).then((response) => {
|
|
||||||
this.formConfig[2].selectOptions = response.data.list;
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 20;
|
||||||
this.listQuery.locationCode= val.kcode;
|
this.listQuery.code = val.code;
|
||||||
this.listQuery.palletCode = val.tcode;
|
|
||||||
this.listQuery.operateStatus = val.status;
|
|
||||||
this.listQuery.createTime = val.searchTime?val.searchTime:null;
|
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -198,9 +150,9 @@ export default {
|
|||||||
otherMethods(val) {
|
otherMethods(val) {
|
||||||
if (val.type === 'detail') {
|
if (val.type === 'detail') {
|
||||||
this.addOrUpdateVisible = true;
|
this.addOrUpdateVisible = true;
|
||||||
this.addOrEditTitle = val.data.name + ' -产品信息';
|
this.addOrEditTitle = '详情';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init(val.data.id);
|
this.$refs.addOrUpdate.init(val.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -211,9 +163,3 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style>
|
|
||||||
.app-container .el-table .el-table__cell {
|
|
||||||
padding: 0;
|
|
||||||
height: 35px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
@ -2,64 +2,67 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-09 17:00:46
|
* @LastEditTime: 2024-08-21 09:30:48
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<base-table
|
<div v-if="tableData.length > 1">
|
||||||
:table-props="tableProps"
|
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
|
||||||
:page="listQuery.pageNo"
|
<el-descriptions-item label="源库位编码">
|
||||||
:limit="listQuery.pageSize"
|
{{ fatherInfo.oldCode }}
|
||||||
:height="300"
|
</el-descriptions-item>
|
||||||
:table-data="tableData"
|
<el-descriptions-item label="目标库位编码">
|
||||||
v-if="tableData.length > 1" />
|
{{ fatherInfo.newCode }}
|
||||||
<!-- 一条数据 -->
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="移动托盘编码">
|
||||||
|
{{ fatherInfo.palletCode }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:height="300"
|
||||||
|
:table-data="tableData" />
|
||||||
|
</div>
|
||||||
|
<!-- 一条数据 -->
|
||||||
<div v-else-if="tableData.length === 1">
|
<div v-else-if="tableData.length === 1">
|
||||||
<el-form
|
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
|
||||||
:model="tableData[0]"
|
<el-descriptions-item label="源库位编码">
|
||||||
ref="dataForm"
|
{{ fatherInfo.oldCode }}
|
||||||
label-width="100px"
|
</el-descriptions-item>
|
||||||
label-position="top">
|
<el-descriptions-item label="目标库位编码">
|
||||||
<el-row :gutter="20">
|
{{ fatherInfo.newCode }}
|
||||||
<el-col :span="12">
|
</el-descriptions-item>
|
||||||
<el-form-item label="物品名称" prop="name">
|
<el-descriptions-item label="移动托盘编码">
|
||||||
<el-input v-model="tableData[0].name" readonly />
|
{{ fatherInfo.palletCode }}
|
||||||
</el-form-item>
|
</el-descriptions-item>
|
||||||
</el-col>
|
<el-descriptions-item label="物品名称">
|
||||||
<el-col :span="12">
|
{{ tableData[0].name }}
|
||||||
<el-form-item label="物品编码" prop="code">
|
</el-descriptions-item>
|
||||||
<el-input v-model="tableData[0].code" readonly />
|
<el-descriptions-item label="物品编码">
|
||||||
</el-form-item>
|
{{ tableData[0].code }}
|
||||||
</el-col>
|
</el-descriptions-item>
|
||||||
<el-col :span="12">
|
<el-descriptions-item label="物品规格">
|
||||||
<el-form-item label="物品规格" prop="specifications">
|
{{ tableData[0].specifications }}
|
||||||
<el-input v-model="tableData[0].specifications" readonly />
|
</el-descriptions-item>
|
||||||
</el-form-item>
|
<el-descriptions-item label="物品批次">
|
||||||
</el-col>
|
{{ tableData[0].batchCode }}
|
||||||
<el-col :span="12">
|
</el-descriptions-item>
|
||||||
<el-form-item label="物品批次" prop="batchCode">
|
<el-descriptions-item label="数量">
|
||||||
<el-input v-model="tableData[0].batchCode" readonly />
|
{{ tableData[0].num }}
|
||||||
</el-form-item>
|
</el-descriptions-item>
|
||||||
</el-col>
|
<el-descriptions-item label="物品单位">
|
||||||
<el-col :span="12">
|
{{ getDictDataLabel('unit_dict', tableData[0].unit) }}
|
||||||
<el-form-item label="数量" prop="num">
|
</el-descriptions-item>
|
||||||
<el-input v-model="tableData[0].num" readonly />
|
</el-descriptions>
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="物品单位" prop="name">
|
|
||||||
<el-input v-model="tableData[0].name" readonly />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
</div>
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-else></div>
|
<div class="no-data-bg" v-else></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter,getDictDataLabel } from '@/utils/dict';
|
||||||
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
|
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
@ -96,6 +99,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps,
|
tableProps,
|
||||||
|
fatherInfo: {}, //父页面数据
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 100,
|
pageSize: 100,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
@ -106,9 +110,10 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
init(id) {
|
init(data) {
|
||||||
|
this.fatherInfo = data;
|
||||||
this.dataListLoading = true;
|
this.dataListLoading = true;
|
||||||
getWarehouseLocationHisDet(id).then((response) => {
|
getWarehouseLocationHisDet(data.id).then((response) => {
|
||||||
this.tableData = response.data;
|
this.tableData = response.data;
|
||||||
this.dataListLoading = false;
|
this.dataListLoading = false;
|
||||||
});
|
});
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="100"
|
:width="90"
|
||||||
label="库位详情"
|
label="库位详情"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
@ -52,11 +52,9 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import {
|
import { getMoveHisPage } from '@/api/warehouse/warehouseRealtimeLocation';
|
||||||
getMoveHisPage,
|
|
||||||
} from '@/api/warehouse/warehouseRealtimeLocation';
|
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
|
|
||||||
@ -93,13 +91,13 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'newCode',
|
prop: 'newCode',
|
||||||
label: '目的库位编码',
|
label: '目的库位编码',
|
||||||
width: 150,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '操作时间',
|
label: '操作时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
width: 150,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'creator',
|
prop: 'creator',
|
||||||
@ -108,7 +106,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage,tableHeightMixin],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
@ -117,14 +115,11 @@ export default {
|
|||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi(`raw-material:warehouse-location-his:query`)
|
{
|
||||||
? {
|
type: 'detail',
|
||||||
type: 'detail',
|
btnName: '详情',
|
||||||
btnName: '详情',
|
},
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
drawerVisible: false,
|
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
@ -143,7 +138,7 @@ export default {
|
|||||||
label: '操作时间',
|
label: '操作时间',
|
||||||
dateType: 'daterange',
|
dateType: 'daterange',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: "timestamp",
|
valueFormat: 'timestamp',
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
@ -161,8 +156,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
AddOrUpdate,
|
AddOrUpdate,
|
||||||
},
|
},
|
||||||
created() {
|
created() {},
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
@ -172,7 +166,7 @@ export default {
|
|||||||
this.listQuery.locationCode = val.kcode;
|
this.listQuery.locationCode = val.kcode;
|
||||||
this.listQuery.palletCode = val.tcode;
|
this.listQuery.palletCode = val.tcode;
|
||||||
this.listQuery.operateStatus = val.status;
|
this.listQuery.operateStatus = val.status;
|
||||||
this.listQuery.createTime = val.searchTime?val.searchTime:null;
|
this.listQuery.createTime = val.searchTime ? val.searchTime : null;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -184,7 +178,7 @@ export default {
|
|||||||
this.addOrUpdateVisible = true;
|
this.addOrUpdateVisible = true;
|
||||||
this.addOrEditTitle = '详情';
|
this.addOrEditTitle = '详情';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init(val.data.id);
|
this.$refs.addOrUpdate.init(val.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -25,8 +25,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getWarehouseRealtimeHisPage,
|
getWarehouseRealtimeHisPage,
|
||||||
} from '@/api/warehouse/warehouseRealtime';
|
} from '@/api/warehouse/warehouseRealtime';
|
||||||
@ -51,6 +51,7 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '物品编码',
|
label: '物品编码',
|
||||||
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'spec',
|
prop: 'spec',
|
||||||
@ -63,6 +64,7 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'num',
|
prop: 'num',
|
||||||
label: '出入库数量',
|
label: '出入库数量',
|
||||||
|
width: 95,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'operateStatus',
|
prop: 'operateStatus',
|
||||||
|
@ -2,75 +2,61 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-08-09 16:59:34
|
* @LastEditTime: 2024-08-21 09:36:31
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<base-table
|
<div v-if="tableData.length > 1">
|
||||||
:table-props="tableProps"
|
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
|
||||||
:page="listQuery.pageNo"
|
<el-descriptions-item label="库位编码">
|
||||||
:limit="listQuery.pageSize"
|
{{ fatherInfo.code }}
|
||||||
:height="300"
|
</el-descriptions-item>
|
||||||
:table-data="tableData"
|
<el-descriptions-item label="托盘编码">
|
||||||
v-if="tableData.length > 1" />
|
{{ fatherInfo.palletCode }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:height="300"
|
||||||
|
:table-data="tableData" />
|
||||||
|
</div>
|
||||||
|
<!-- 一条数据 -->
|
||||||
<div v-else-if="tableData.length === 1">
|
<div v-else-if="tableData.length === 1">
|
||||||
<el-form
|
<el-descriptions title="" direction="vertical" :column="3" border style="margin-bottom: 10px;">
|
||||||
:model="tableData[0]"
|
<el-descriptions-item label="库位编码" :span="2">
|
||||||
ref="dataForm"
|
{{ fatherInfo.code }}
|
||||||
label-width="100px"
|
</el-descriptions-item>
|
||||||
label-position="top">
|
<el-descriptions-item label="托盘编码">
|
||||||
<el-row :gutter="20">
|
{{ fatherInfo.palletCode }}
|
||||||
<el-col :span="12">
|
</el-descriptions-item>
|
||||||
<el-form-item label="物品名称" prop="name">
|
<el-descriptions-item label="物品名称">
|
||||||
<el-input
|
{{ tableData[0].name }}
|
||||||
v-model="tableData[0].name"
|
</el-descriptions-item>
|
||||||
readonly />
|
<el-descriptions-item label="物品编码">
|
||||||
</el-form-item>
|
{{ tableData[0].code }}
|
||||||
</el-col>
|
</el-descriptions-item>
|
||||||
<el-col :span="12">
|
<el-descriptions-item label="物品规格">
|
||||||
<el-form-item label="物品编码" prop="code">
|
{{ tableData[0].specifications }}
|
||||||
<el-input
|
</el-descriptions-item>
|
||||||
v-model="tableData[0].code"
|
<el-descriptions-item label="物品批次">
|
||||||
readonly />
|
{{ tableData[0].batchCode }}
|
||||||
</el-form-item>
|
</el-descriptions-item>
|
||||||
</el-col>
|
<el-descriptions-item label="数量">
|
||||||
<el-col :span="12">
|
{{ tableData[0].num }}
|
||||||
<el-form-item label="物品规格" prop="specifications">
|
</el-descriptions-item>
|
||||||
<el-input
|
<el-descriptions-item label="物品单位">
|
||||||
v-model="tableData[0].specifications"
|
{{ getDictDataLabel('unit_dict', tableData[0].unit) }}
|
||||||
readonly />
|
</el-descriptions-item>
|
||||||
</el-form-item>
|
</el-descriptions>
|
||||||
</el-col>
|
</div>
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="物品批次" prop="batchCode">
|
|
||||||
<el-input
|
|
||||||
v-model="tableData[0].batchCode"
|
|
||||||
readonly />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="数量" prop="num">
|
|
||||||
<el-input
|
|
||||||
v-model="tableData[0].num"
|
|
||||||
readonly />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="物品单位" prop="name">
|
|
||||||
<el-input
|
|
||||||
v-model="tableData[0].name"
|
|
||||||
readonly />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
|
||||||
<!-- 没有数据 -->
|
<!-- 没有数据 -->
|
||||||
<div class="no-data-bg" v-else></div>
|
<div class="no-data-bg" v-else></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter,getDictDataLabel } from '@/utils/dict';
|
||||||
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
|
import { getWarehouseLocationHisDet } from '@/api/warehouse/warehouseRealtimeLocation';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
@ -107,6 +93,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps,
|
tableProps,
|
||||||
|
fatherInfo: {}, //父页面数据
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 100,
|
pageSize: 100,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
@ -117,9 +104,10 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
init(id) {
|
init(data) {
|
||||||
|
this.fatherInfo = data;
|
||||||
this.dataListLoading = true;
|
this.dataListLoading = true;
|
||||||
getWarehouseLocationHisDet(id).then((response) => {
|
getWarehouseLocationHisDet(data.id).then((response) => {
|
||||||
this.tableData = response.data;
|
this.tableData = response.data;
|
||||||
this.dataListLoading = false;
|
this.dataListLoading = false;
|
||||||
});
|
});
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
:width="100"
|
:width="90"
|
||||||
label="库位详情"
|
label="库位详情"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
@ -52,11 +52,9 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AddOrUpdate from './add-or-updata';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPage from '../../mixins/basic-page';
|
import basicPage from '@/mixins/basic-page';
|
||||||
import { parseTime } from '../../mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import {
|
import { getWarehouseLocationHisPage } from '@/api/warehouse/warehouseRealtimeLocation';
|
||||||
getWarehouseLocationHisPage,
|
|
||||||
} from '@/api/warehouse/warehouseRealtimeLocation';
|
|
||||||
import { listData } from '@/api/system/dict/data';
|
import { listData } from '@/api/system/dict/data';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
||||||
@ -97,7 +95,7 @@ const tableProps = [
|
|||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '操作时间',
|
label: '操作时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
width: 150,
|
width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'creator',
|
prop: 'creator',
|
||||||
@ -106,7 +104,7 @@ const tableProps = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicPage,tableHeightMixin],
|
mixins: [basicPage, tableHeightMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
@ -115,14 +113,11 @@ export default {
|
|||||||
tableData: [],
|
tableData: [],
|
||||||
tableProps,
|
tableProps,
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi(`raw-material:warehouse-location-his:query`)
|
{
|
||||||
? {
|
type: 'detail',
|
||||||
type: 'detail',
|
btnName: '详情',
|
||||||
btnName: '详情',
|
},
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
drawerVisible: false,
|
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
@ -151,7 +146,7 @@ export default {
|
|||||||
label: '操作时间',
|
label: '操作时间',
|
||||||
dateType: 'daterange',
|
dateType: 'daterange',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: "timestamp",
|
valueFormat: 'timestamp',
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
@ -185,10 +180,10 @@ export default {
|
|||||||
case 'search':
|
case 'search':
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1;
|
||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 10;
|
||||||
this.listQuery.locationCode= val.kcode;
|
this.listQuery.locationCode = val.kcode;
|
||||||
this.listQuery.palletCode = val.tcode;
|
this.listQuery.palletCode = val.tcode;
|
||||||
this.listQuery.operateStatus = val.status;
|
this.listQuery.operateStatus = val.status;
|
||||||
this.listQuery.createTime = val.searchTime?val.searchTime:null;
|
this.listQuery.createTime = val.searchTime ? val.searchTime : null;
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -200,7 +195,7 @@ export default {
|
|||||||
this.addOrUpdateVisible = true;
|
this.addOrUpdateVisible = true;
|
||||||
this.addOrEditTitle = '详情';
|
this.addOrEditTitle = '详情';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.addOrUpdate.init(val.data.id);
|
this.$refs.addOrUpdate.init(val.data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -189,7 +189,7 @@
|
|||||||
resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz"
|
resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz"
|
||||||
integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
|
integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.22.15"
|
"@babel/types" "^7.22.5"
|
||||||
|
|
||||||
"@babel/helper-module-transforms@^7.24.7":
|
"@babel/helper-module-transforms@^7.24.7":
|
||||||
version "7.24.7"
|
version "7.24.7"
|
||||||
@ -1000,6 +1000,8 @@
|
|||||||
integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
|
integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-plugin-utils" "^7.0.0"
|
"@babel/helper-plugin-utils" "^7.0.0"
|
||||||
|
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
|
||||||
|
"@babel/plugin-transform-dotall-regex" "^7.4.4"
|
||||||
"@babel/types" "^7.4.4"
|
"@babel/types" "^7.4.4"
|
||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
|
|
||||||
@ -1166,8 +1168,8 @@
|
|||||||
resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"
|
resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"
|
||||||
integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
|
integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@jridgewell/resolve-uri" "^3.1.0"
|
"@jridgewell/resolve-uri" "3.1.0"
|
||||||
"@jridgewell/sourcemap-codec" "^1.4.14"
|
"@jridgewell/sourcemap-codec" "1.4.14"
|
||||||
|
|
||||||
"@mrmlnc/readdir-enhanced@^2.2.1":
|
"@mrmlnc/readdir-enhanced@^2.2.1":
|
||||||
version "2.2.1"
|
version "2.2.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user