You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

708 lines
20 KiB

<template>
<div class="maboxhi" id="bodys">
<el-table
2 years ago
:data="tableData"
style="width: 100%"
:show-summary="shownm"
:summary-method="getSummaries"
v-loading="loading"
@selection-change="handleSelectionChange"
border
height="100%"
:row-class-name="tableRowClassName"
ref="selecttable"
>
<el-table-column
2 years ago
:type="column.type == 0 ? 'selection' : ''"
2 years ago
:min-width="column.width"
2 years ago
v-for="(column, index) in newcolumnList"
:key="column.prop"
:prop="column.prop"
:label="column.label"
2 years ago
:fixed="column.fixed"
:sortable="column.sortable"
:selectable="isselectfun"
2 years ago
v-show="column.head"
>
2 years ago
<!-- <template #header>
<el-text class="mx-1">{{ column.label }}</el-text>
</template> -->
<el-table-column
:type="column.type == 12 ? 'index' : ''"
2 years ago
:min-width="column.width"
:prop="column.prop"
:label="column.label"
v-if="column.type != 0"
flexible
show-overflow-tooltip
>
<template #header>
<!-- <el-text class="mx-1">{{ column.label }}</el-text> -->
<el-input
v-if="column.type == 2"
v-model.trim="column.values"
2 years ago
clearable
:placeholder="`请输入${column.label}`"
@change="inputchange($event, column)"
@blur="inputchange($event, column)"
@clear="inputclear($event, column)"
/>
2 years ago
<el-select
v-if="column.type == 3"
v-model="column.values"
class="m-2 selectbr"
clearable
:placeholder="`请选择${column.label}`"
@change="selectchange($event, column)"
@clear="selectclear($event, column)"
>
<el-option
v-for="item in column.checkarr"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-date-picker
v-model="column.values"
v-if="column.type == 4"
type="date"
clearable
style="width: auto"
:placeholder="`请选择${column.label}`"
@change="timechange($event, column)"
@clear="timeclear($event, column)"
/>
<el-date-picker
v-model="column.values"
v-if="column.type == 5"
type="datetime"
clearable
style="width: auto"
:placeholder="`请选择${column.label}`"
format="YYYY/MM/DD HH:mm:ss"
@change="timechange($event, column)"
@clear="timeclear($event, column)"
/>
</template>
2 years ago
<template #default="scope">
<el-text
class="mx-2 tabculconte"
v-if="Number(column.type) < 6 && Number(column.type) > 0"
>{{ scope.row[column.prop] }}</el-text
>
<el-switch
@change="makeCargo(scope.row, column)"
v-if="column.type == 11"
v-model="scope.row[column.prop]"
/>
<!-- <el-text
class="mx-2 tabculconte"
v-for="item in column.checkarr"
v-if="Number(column.type) < 6 && Number(column.type) > 0"
>
<span v-if="item.value==scope.row[column.prop]">{{ item.label }}</span>
</el-text
> -->
2 years ago
<el-text
style=""
class="mx-2 tabculconte colors"
v-if="column.type == 9"
@click="godowns(scope.row[column.downprop])"
>{{ scope.row[column.prop] }}</el-text
>
<el-input
@blur="handleNumberRange(column, scope.row)"
v-if="column.type == 10"
v-model.trim="scope.row[column.prop]"
2 years ago
type="number"
:min="0"
:max="scope.row.residueNumber"
2 years ago
></el-input>
<div class="slotbuts" v-if="column.type == 6 || column.type == 13">
<slot v-if="column.type == 6 || column.type == 13" :scope="scope"> </slot>
2 years ago
</div>
<el-image
preview-teleported
v-if="column.type == 7"
style="width: 60px; height: 60px; margin-left: 10px"
:initial-index="index"
:z-index="100"
v-for="(item, index) in scope.row[column.prop].split(',')"
:src="item"
:preview-src-list="scope.row[column.prop].split(',')"
/>
<!-- <el-tooltip placement="top" v-if="(Number(column.type)<6&&Number(column.type)>0)&&!column.isextrahide">
<template #content>{{ scope.row[column.prop] }}</template>
2 years ago
<div class="on tabculconte">{{ scope.row[column.prop] }}</div>
</el-tooltip> -->
2 years ago
<!-- <slot v-if="column.type == 7" name="test" :testdata="scope"></slot> -->
<!-- <el-button
v-if="column.type == 6"
size="small"
@click="handleEdit(scope.$index, scope.row)"
>Edit</el-button
>
<el-button
v-if="column.type == 6"
size="small"
type="danger"
@click="handleDelete(scope.$index, scope.row)"
>Delete</el-button
> -->
2 years ago
</template>
</el-table-column>
2 years ago
<template #header>
<div style="display: inline-block">
<div class="tilbox">
<el-text class="mx-1 tabtitles" @click.stop @dblclick.stop="copyalls(column)">{{
column.label
}}</el-text>
<!-- <el-icon v-if="column.type == 1 || column.type == 2 || column.type == 3"
><DocumentCopy
/></el-icon> -->
2 years ago
</div>
</div>
2 years ago
</template>
</el-table-column>
</el-table>
</div>
</template>
<script lang="ts" setup>
import { computed, ref, watchEffect, getCurrentInstance, onMounted, defineExpose } from 'vue';
import type { PropType } from 'vue';
const { proxy } = getCurrentInstance() as any;
const selecttable = ref(null);
/**
2 years ago
* 对应通知事件
* inputTxt:输入框输入的确认事件
* timeCheck:时间选择器选择事件
* selectCheck:下拉框选中事件
* selection:勾选框事件
*/
2 years ago
onMounted(() => {
function getWinHight() {
var windowHight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
windowHight =
2 years ago
document.body.clientHeight < document.documentElement.clientHeight
? document.body.clientHeight
: document.documentElement.clientHeight;
} else {
// windowHight=(document.body.clientHeight>document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
}
2 years ago
// return windowHight;
return document.documentElement.clientHeight;
}
var bodyContent = document.querySelectorAll('.maboxhi');
const _height = getWinHight();
// 设置列表的高度
bodyContent.forEach(val => {
val.style.height = _height - val.getBoundingClientRect().top - 65 + 'px';
// if (val.style.height === '890px') val.style.height = '600px';
});
2 years ago
});
interface TableColumnType {
/** 表格列的key */
prop: string;
/** 表格列的名字 */
label: string;
/**
* 对应列表头的类型
* 0:直接显示为单选proplabel全部传空
* 1:普通表格正常显示
* 2:带输入框表格
* 3:带下拉框表格
* 4:带日期选择器列
* 5:带日期时间选择器
* 6:操作栏proplabel全部传空
* 7:图片
2 years ago
* 8:带背景的文字
* 9:下载附件
* 10.输入框的表格内容
* 11.开关类型
* 12.序号
* 13.带搜索的自定义列表
*/
type: number | string;
/** 用于接受表头的值 */
values: number | string;
/** 表头宽度 number string undefined */
width: number | string | undefined;
/** 下拉框可选项 */
checkarr?: {
value: string | number;
label: string | number;
}[];
/**
* true false
* left right
*/
fixed: boolean | string;
/**
* true false 或者直接不写该参数
*/
isshowSummary?: boolean;
2 years ago
/**
* true false 或者直接不写该参数
*/
2 years ago
sortable?: boolean;
/**
* true false 或者直接不写该参数
*/
2 years ago
head?: boolean;
/**
* 默认超出隐藏
* true是不隐藏
* false 隐藏
*/
2 years ago
isextrahide?: boolean;
/** urlkey
*/
2 years ago
downprop?: string;
/**
*/
lessThanNum?: string;
}
interface TableDataType {
[key: string]: any;
}
let props = defineProps({
columnList: {
type: Array as PropType<TableColumnType[]>,
required: true,
},
tableData: {
type: Array as PropType<TableDataType[]>,
required: true,
},
2 years ago
loading: {
type: Boolean as PropType<boolean>,
required: true,
2 years ago
},
//回显勾选的数据列表
checkselect: {
type: Array as PropType<TableDataType[]>,
required: false,
},
//是否可选择的函数
isselectfun: {
type: Function as PropType<(row: TableDataType) => boolean>,
required: false,
default: null,
},
});
2 years ago
let selectarr = ref([]);
const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: number }) => {
let sfcheck = false;
selectarr.value.map(item => {
if (item == row) {
sfcheck = true;
2 years ago
}
2 years ago
});
if (sfcheck) {
return 'table-SelectedRow-bgcolor';
2 years ago
}
2 years ago
return '';
};
let emit = defineEmits(['inputTxt', 'timeCheck', 'selectCheck', 'selection', 'makeCargo']);
2 years ago
let newcolumnList = ref<TableColumnType[]>([]);
watchEffect(() => {
newcolumnList.value = [];
props.columnList.map(item => {
if (!item.head) {
newcolumnList.value.push(item);
}
2 years ago
});
});
onMounted(() => {
1 year ago
/* if (props.checkselect) {
props.checkselect.map(item => {
if (props.isselectfun) {
if (props.isselectfun(item)) {
selecttable.value.toggleRowSelection(item, true);
}
} else {
selecttable.value.toggleRowSelection(item, true);
}
});
1 year ago
} */
let _checkSelect = props.checkselect;
if (!_checkSelect) {
_checkSelect = [];
}
1 year ago
handleCheckSelect(_checkSelect);
});
1 year ago
/** 勾选 */
function handleCheckSelect(select: []) {
if (select.length !== 0) {
select.map(item => {
if (props.isselectfun) {
if (props.isselectfun(item)) {
selecttable.value.toggleRowSelection(item, true);
}
} else {
selecttable.value.toggleRowSelection(item, true);
}
});
} else {
selecttable.value.clearSelection();
1 year ago
}
}
2 years ago
function godowns(url) {
let a = document.createElement('a'); //创建一个a标签用来跳转
a.href = url; //myurl 是后端返回的下载地址
// a.target = '_blank';
a.download = 'xixi.zip'; //设置下载文件的文件名和文件格式
document.body.appendChild(a); //将标签DOM,放置页面
a.click();
window.URL.revokeObjectURL(url); //释放 url 对象内存
document.body.removeChild(a);
}
let shownm = ref(false);
2 years ago
function copyalls(column: TableColumnType) {
const _isReturn = column.type == 1 || column.type == 2 || column.type == 3;
if (!_isReturn) return;
let text = '';
2 years ago
props.tableData.map((item, index) => {
if (index < props.tableData.length - 1) {
if (item[column.prop]) {
text += `${item[column.prop]}\n`;
2 years ago
}
2 years ago
} else {
if (item[column.prop]) {
text += `${item[column.prop]}`;
} else {
2 years ago
}
}
2 years ago
});
copyContent(text);
}
function handleNumberRange(column: TableColumnType, row: TableDataType) {
row[column.prop] = row[column.prop].replace(/[^\.\d]/g, ''); //替换掉与数字无关的字符(中英文与符号都会被替换掉,只留下数字,此时值类型为字符串)
if (row[column.prop]) {
//如果替换后还有值
row[column.prop] = parseInt(row[column.prop]); //把字符型转成整数型
}
// if (column.lessThanNum) {
// if (row[column.prop] > row[column.lessThanNum]) {
// row[column.prop] = row[column.lessThanNum];
// proxy.$message({
// type: 'error',
// message: '数量不能大于可用数量',
// });
// }
// }
// 上架数量判断
if (row.residueNumber) {
if (row.enterNum > row.residueNumber) {
2 years ago
proxy.$message({
type: 'error',
message: '数量不能大于可上架总数,已调整为最大数量!',
2 years ago
});
row.enterNum = row.residueNumber;
2 years ago
}
}
// 下架数量判断
if (row.num) {
if (row.enterNum > row.num) {
proxy.$message({
type: 'error',
message: '数量不能大于可下架总数,已调整为最大数量!',
});
row.enterNum = row.num;
}
}
}
1 year ago
function handleEdit(index: number, row: TableDataType) {}
function makeCargo(value, column: TableColumnType) {
emit('makeCargo', value, column);
}
2 years ago
function inputchange(value, column: TableColumnType) {
if (typeof value == 'string') {
emit('inputTxt', value, column);
2 years ago
}
}
2 years ago
function selectchange(value, column: TableColumnType) {
emit('selectCheck', value, column);
}
2 years ago
function timechange(value, column: TableColumnType) {
emit('timeCheck', value, column);
}
2 years ago
const handleSelectionChange = (param: TableDataType[]) => {
2 years ago
// console.log(param)
2 years ago
selectarr.value = param;
emit('selection', param);
};
function inputclear(value, column: TableColumnType) {
emit('inputTxt', '', column);
}
2 years ago
function selectclear(value, column: TableColumnType) {
emit('selectCheck', '', column);
}
2 years ago
function timeclear(value, column: TableColumnType) {
emit('timeCheck', '', column);
}
1 year ago
function handleDelete(index: number, row: TableDataType) {}
const getSummaries = (param: any) => {
const { columns, data } = param;
let newarr = [];
let tji = 0;
columns.map((item, index) => {
if (index == 0) {
newarr[index] = '总计';
return;
}
tji = 0;
if (props.columnList[index]?.isshowSummary) {
data.map(ite => {
2 years ago
tji += Number(ite[props.columnList[index]?.prop] || 0);
});
newarr[index] = tji;
// shownm.value=true
} else {
newarr[index] = null;
}
});
// console.log(columns)
return newarr;
};
2 years ago
watchEffect(() => {
props.columnList.map(item => {
2 years ago
if (item.isshowSummary) {
shownm.value = true;
}
});
});
2 years ago
// 复制文本内容
function copyContent(content: string) {
// 复制结果
let copyResult = true;
// 设置想要复制的文本内容
const text = content || '让我们一起快乐的敲代码吧~';
// 判断是否支持clipboard方式
if (!!window.navigator.clipboard) {
// 利用clipboard将文本写入剪贴板(这是一个异步promise)
window.navigator.clipboard
.writeText(text)
.then(res => {
proxy.$message({
type: 'success',
message: '复制成功',
});
// 返回复制操作的最终结果
return copyResult;
2 years ago
})
.catch(err => {
copyResult = false;
console.log('复制失败', err);
proxy.$message({
type: 'error',
message: '复制失败',
});
// 返回复制操作的最终结果
return copyResult;
2 years ago
});
} else {
// 不支持clipboard方式 则采用document.execCommand()方式
// 创建一个input元素
let inputDom = document.createElement('textarea');
// 设置为只读 防止移动端手机上弹出软键盘
inputDom.setAttribute('readonly', 'readonly');
// 给input元素赋值
inputDom.value = text;
// 将创建的input添加到body
document.body.appendChild(inputDom);
// 选中input元素的内容
inputDom.select();
// 执行浏览器复制命令
// 复制命令会将当前选中的内容复制到剪切板中(这里就是创建的input标签中的内容)
// Input要在正常的编辑状态下原生复制方法才会生效
const result = document.execCommand('copy');
// 判断是否复制成功
if (result) {
proxy.$message({
type: 'success',
message: '复制成功',
});
} else {
2 years ago
console.log('复制失败');
proxy.$message({
type: 'error',
message: '复制失败',
});
copyResult = false;
}
2 years ago
// 复制操作后再将构造的标签 移除
document.body.removeChild(inputDom);
// 返回复制操作的最终结果
return copyResult;
}
2 years ago
}
1 year ago
defineExpose({ handleCheckSelect });
</script>
<style lang="scss">
2 years ago
// :root{
// --el-checkbox-checked-bg-color:'#D3832A';
// --el-checkbox-checked-input-border-color:'#D3832A';
// }
.el-table {
//悬停
2 years ago
--el-table-row-hover-bg-color: #d3832a;
}
2 years ago
// .el-table .warning-row {
// --el-table-tr-bg-color: var(--el-color-warning-light-9);
// }
// .el-table .success-row {
// --el-table-tr-bg-color: var(--el-color-success-light-9);
// }
2 years ago
.maboxhi {
width: 100%;
// min-height: 950px;
// height: 841px;
// flex:1;
// min-height: 100%;
}
2 years ago
.on {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 12px !important;
}
2 years ago
.selectbr {
2 years ago
border: none !important;
font-size: 12px !important;
2 years ago
}
2 years ago
.tabtitles {
color: #092c4d !important;
font-size: 12px !important;
margin-right: 5px !important;
2 years ago
}
2 years ago
.el-table .ascending .sort-caret.ascending {
border-bottom-color: #d3832a !important;
font-size: 12px !important;
2 years ago
}
2 years ago
.el-table .descending .sort-caret.descending {
border-top-color: #d3832a !important;
font-size: 12px !important;
2 years ago
}
2 years ago
.tabculconte {
2 years ago
color: #333333 !important;
font-size: 12px !important;
2 years ago
}
2 years ago
.slotbuts {
2 years ago
height: 25px;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px !important;
2 years ago
}
2 years ago
.slotbuts .el-text {
color: #d3832a !important;
2 years ago
margin-right: 10px !important;
cursor: pointer;
font-size: 12px !important;
2 years ago
&:nth-last-child(1) {
2 years ago
margin-right: 0px !important;
}
}
2 years ago
.el-popper.is-pure.is-light.el-dropdown__popper .el-text {
color: #d3832a !important;
2 years ago
margin-right: 10px !important;
cursor: pointer;
font-size: 12px !important;
2 years ago
&:nth-last-child(1) {
2 years ago
margin-right: 0px !important;
}
}
2 years ago
.el-table .el-input__inner {
2 years ago
height: 23px !important;
}
2 years ago
// .el-checkbox__input.is-checked .el-checkbox__inner{
// background-color: #D3832A !important;
// border-color: #D3832A !important;
// }
// .is .el-checkbox__input.is-checked .el-checkbox__inner{
// background-color: #D3832A !important;
// border-color: #D3832A !important;
// }
// .is-checked .el-checkbox__inner:hover{
// border-color: #D3832A !important;
// }
// .el-checkbox__input.is-indeterminate .el-checkbox__inner{
// background-color: #D3832A !important;
// border-color: #D3832A !important;
// }
2 years ago
.el-table .el-table__cell {
padding: 0px !important;
}
2 years ago
.el-checkbox__input.is-checked .el-checkbox__inner,
2 years ago
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
border-color: #d3832a !important;
background-color: #d3832a !important;
}
.el-checkbox__input.is-focus .el-checkbox__inner {
border-color: #d3832a !important;
}
//修改选中后文本的颜色
.el-checkbox__input.is-checked + .el-checkbox__label {
color: #d3832a !important;
2 years ago
}
2 years ago
.el-checkbox__inner:hover {
border-color: #d3832a !important;
font-size: 12px !important;
2 years ago
}
2 years ago
.table-SelectedRow-bgcolor {
2 years ago
> td {
background-color: #f7e8d7 !important;
}
}
.colors {
color: #409eff !important;
2 years ago
cursor: pointer !important;
}
2 years ago
.el-table .cell {
line-height: 22px !important;
}
2 years ago
.el-table .el-input__inner {
2 years ago
font-size: 12px !important;
}
2 years ago
.el-table__body tr.hover-row.current-row > td,
.el-table__body tr.hover-row.el-table__row--striped.current-row > td,
.el-table__body tr.hover-row.el-table__row--striped > td,
.el-table__body tr.hover-row > td {
background-color: #d3d8e1 !important;
2 years ago
}
2 years ago
.el-date-editor.el-input,
.el-date-editor.el-input__wrapper {
height: 23px !important;
}
2 years ago
.copys {
display: inline-block;
margin-left: 5px;
padding-top: 5px;
margin-right: 5px;
}
2 years ago
.tilbox {
display: flex;
align-items: center;
}
.el-table .el-popper {
max-width: 20% !important;
}
.el-input {
2 years ago
// width: 200px !important;
}
</style>