13 changed files with 910 additions and 28 deletions
@ -0,0 +1,374 @@ |
|||||
|
<!-- |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-03 13:39:16 |
||||
|
@ 备注: app专用列表内容展示 |
||||
|
--> |
||||
|
<script lang='ts' setup> |
||||
|
import { submitButton, afreshSubmitButton,editFormCont,draftSubmitButton,editLookFormCont } from "@/utils/workflow/const"; |
||||
|
import { json2string,objToStringify,string2json,stringToObj } from '@/utils/DesignForm/form' |
||||
|
import { gainTaskFormInfo,generateFlow,gainEditDataLog,draftsInitiateApproval,afreshRunWorkflow } from '@/api/taskapi/management' |
||||
|
import { Close } from '@element-plus/icons-vue' |
||||
|
import { judgeSubmitCancel,startRunFlow } from '@/api/DesignForm/requestapi' |
||||
|
import { submitButtonEs } from '@/api/DesignForm/tableButton' |
||||
|
|
||||
|
import RunFlowStep from '@/views/taskplatform/taskmanagement/runFlowStep.vue' |
||||
|
|
||||
|
|
||||
|
const props = defineProps({ |
||||
|
isShow:{ |
||||
|
type:Boolean, |
||||
|
default:false, |
||||
|
}, |
||||
|
drawerWith:{ |
||||
|
type:Number, |
||||
|
default:0 |
||||
|
}, |
||||
|
tablePageClass:{ |
||||
|
type:Number, |
||||
|
default:1 |
||||
|
}, |
||||
|
operState:{ |
||||
|
type:Number, |
||||
|
default:1 |
||||
|
}, |
||||
|
pageInfo:{ |
||||
|
type:Object, |
||||
|
default(){ |
||||
|
return {} |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
const formEl = ref<any>(); |
||||
|
const emits = defineEmits(["update:isShow","getPageData"]); |
||||
|
const formLoading = ref(false); |
||||
|
const flowAry = ref<any[]>(); //流程列表 |
||||
|
const currentProgress = ref<number>(1); //当前步进值 |
||||
|
const runstep = ref(null) |
||||
|
//表单ID |
||||
|
const openOfClose = computed({ |
||||
|
get() { |
||||
|
return props.isShow |
||||
|
}, |
||||
|
set(val: boolean) { |
||||
|
emits('update:isShow', val) |
||||
|
} |
||||
|
}); |
||||
|
/** |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-03 14:09:24 |
||||
|
@ 功能: 监听状态变化处理数据 |
||||
|
*/ |
||||
|
watch(()=>props.isShow,(val:bool)=>{ |
||||
|
console.log("监听状态变化处理数据",props.pageInfo) |
||||
|
if(val){ |
||||
|
formLoading.value = true; |
||||
|
getCustomrrFormInfo(); |
||||
|
} |
||||
|
}) |
||||
|
/** |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-03 14:25:15 |
||||
|
@ 功能: 关闭抽屉 |
||||
|
*/ |
||||
|
const closeDrawer = () => { |
||||
|
emits('update:isShow', false) |
||||
|
} |
||||
|
|
||||
|
//表单相关内容 |
||||
|
const formState = reactive({ |
||||
|
formData: { |
||||
|
list: [], |
||||
|
form: {}, |
||||
|
config: {} |
||||
|
}, |
||||
|
dict: {}, |
||||
|
formId: props.pageInfo.idStr, |
||||
|
id: 1, |
||||
|
loading: true |
||||
|
}) |
||||
|
const pageLog = ref<any[]>([]) |
||||
|
/** |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-03 14:33:15 |
||||
|
@ 功能: 获取自定义表单内容 |
||||
|
*/ |
||||
|
const getCustomrrFormInfo = () => { |
||||
|
gainTaskFormInfo({id:props.pageInfo.mastersKeyStr}) |
||||
|
.then(({data})=>{ |
||||
|
// console.log("获取自定义表单内容",data,data.structure) |
||||
|
formState.formData = stringToObj(data.structure.mastesform) |
||||
|
// console.log("获取自定义表单内容--->",formState) |
||||
|
formState.dict = string2json(data.structure.dict) |
||||
|
// formState.formData.list.push(editLookFormCont) |
||||
|
if(props.tablePageClass != 4){ |
||||
|
judgeSubmitCancel({"name":data.structure.mastesformjson}) |
||||
|
.then((data:any) =>{ |
||||
|
if(data.code == 0){ |
||||
|
if (data.data == 3 || data.data == 4){ |
||||
|
// formState.formData.list.push(submitButtonEs) |
||||
|
if(props.operState == 2){ |
||||
|
formState.formData.list.push(afreshSubmitButton) |
||||
|
}else if(props.operState == 3){ |
||||
|
formState.formData.list.push(editFormCont) |
||||
|
}else if(props.operState == 4){ |
||||
|
formState.formData.list.push(draftSubmitButton) |
||||
|
}else if(props.operState == 5){ |
||||
|
formState.formData.list.push(submitButtonEs) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
|
||||
|
nextTick(()=>{ |
||||
|
// console.log("获取自定义表单内容-1111-->",data.tableData) |
||||
|
formEl.value.setValue(data.tableData) |
||||
|
}) |
||||
|
}) |
||||
|
.finally(()=>{ |
||||
|
formLoading.value = false; |
||||
|
gainEditDataLog({id:props.pageInfo.mastersKeyStr}) |
||||
|
.then(({data})=>{ |
||||
|
console.log("获取修改记录-1111-->",data) |
||||
|
pageLog.value = data.logAry |
||||
|
}); |
||||
|
}) |
||||
|
} |
||||
|
/** |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-07 10:55:34 |
||||
|
@ 功能: 表单动作回调 |
||||
|
*/ |
||||
|
const afterSubmit = (type: string) => { |
||||
|
console.log("表单提交成功") |
||||
|
if (type === 'success') { |
||||
|
// router.go(-1) |
||||
|
// console.log("表单提交成功") |
||||
|
emits("getPageData"); |
||||
|
closeDrawer(); |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
const closeAppSubmit = () => { |
||||
|
closeDrawer() |
||||
|
} |
||||
|
//流程执行 |
||||
|
const drawerBeforeClose = () => { |
||||
|
console.log("监听打开关闭",false) |
||||
|
// emits("getmytodolist") |
||||
|
// emits("update:isshow", false); |
||||
|
} |
||||
|
//提交审批 |
||||
|
const sendDraftSubmit = (type: string,val?:any) => { |
||||
|
console.log("提交审批",type,val) |
||||
|
// emits("getmytodolist") |
||||
|
if (type === 'success') { |
||||
|
if(props.pageInfo.types == 1){ |
||||
|
let sendInfo ={ |
||||
|
id:val.data.runFlowId, |
||||
|
flowList:flowAry.value, |
||||
|
state:3 |
||||
|
} |
||||
|
console.log("草稿提交审批--1-<",sendInfo) |
||||
|
draftsInitiateApproval(sendInfo) |
||||
|
.then((data:any) =>{ |
||||
|
console.log("草稿提交审批---<",sendInfo,data) |
||||
|
if(data.code == 0){ |
||||
|
ElMessage.success(data.msg || '提交成功!') |
||||
|
if(runstep.value){ |
||||
|
runstep.value.gainRunFlowTask() |
||||
|
} |
||||
|
emits("getPageData"); |
||||
|
closeDrawer() |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
//保存草稿箱(带流程) |
||||
|
const saveEditFormInfo = (type: string,val?:any) => { |
||||
|
console.log("草稿提交审批--1-<",type,val) |
||||
|
if(type == "success"){ |
||||
|
runstep.value.gainRunFlowTask() |
||||
|
emits("getPageData"); |
||||
|
closeDrawer() |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
//重新提交审核 |
||||
|
const anewSubmit = (type: string,val?:any) => { |
||||
|
|
||||
|
if(type == "success"){ |
||||
|
afreshRunWorkflow({id:val.data.flowkeys}) |
||||
|
.then((data:any) => { |
||||
|
console.log("重新提交数据---<",data,runstep.value) |
||||
|
runstep.value.gainRunFlowTask() |
||||
|
}) |
||||
|
.finally(() => { |
||||
|
emits("getPageData"); |
||||
|
closeDrawer() |
||||
|
}) |
||||
|
} |
||||
|
} |
||||
|
/** |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-11 11:35:24 |
||||
|
@ 功能: 申请修改 |
||||
|
*/ |
||||
|
//修改完毕 |
||||
|
const submitEdit = (type: string,val?:any) => { |
||||
|
// console("修改完毕----->",type,val) |
||||
|
if(type == "success"){ |
||||
|
runstep.value.gainRunFlowTask() |
||||
|
emits("getPageData"); |
||||
|
closeDrawer() |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
<template> |
||||
|
<el-drawer |
||||
|
v-model="openOfClose" |
||||
|
title="查看表单内容" |
||||
|
:size="drawerWith" |
||||
|
:with-header="false" |
||||
|
:close-on-click-modal="false" |
||||
|
:close-on-press-escape="false" |
||||
|
:destroy-on-close="true" |
||||
|
> |
||||
|
<div v-if="props.pageInfo.types==1" class="common-layout"> |
||||
|
|
||||
|
<el-container> |
||||
|
<el-main> |
||||
|
<ak-form |
||||
|
ref="formEl" |
||||
|
v-loading="formLoading" element-loading-text="Loading..." |
||||
|
:form-data="formState.formData" |
||||
|
:type="props.tablePageClass" |
||||
|
:dict="formState.dict" |
||||
|
request-url="getFormContent" |
||||
|
add-url="saveFormContent" |
||||
|
edit-url="editFormContent" |
||||
|
:before-submit="beforeSubmit" |
||||
|
:close-app-submit="closeDrawer" |
||||
|
:change-key-val="changeKeyVal" |
||||
|
:anew-submit = "anewSubmit" |
||||
|
:save-edit-form-info="saveEditFormInfo" |
||||
|
:send-draft-submit= "sendDraftSubmit" |
||||
|
:after-submit="afterSubmit" |
||||
|
:submit-edit="submitEdit" |
||||
|
/> |
||||
|
|
||||
|
<el-divider v-if="pageLog&&pageLog.length > 0" content-position="left">历史记录</el-divider> |
||||
|
<el-timeline style="width: 100%"> |
||||
|
<el-timeline-item v-for="(item,index) in pageLog" :key="index" :timestamp="item.time+' 操作人:'+item.creater" placement="top"> |
||||
|
<el-card> |
||||
|
<el-descriptions border> |
||||
|
<el-descriptions-item v-for="(mastItem,mastIndex) in item.masterdata" :key="mastIndex" :label="mastIndex"> |
||||
|
{{mastItem}} |
||||
|
</el-descriptions-item> |
||||
|
</el-descriptions> |
||||
|
<el-tabs v-if="item.sunList" type="border-card" style="margin-top:20px;"> |
||||
|
<el-tab-pane v-for="(sonItem,sonIndex) in item.sunList" :label="sonIndex" :key="sonIndex"> |
||||
|
<el-descriptions v-for="(sonVal,sonIndex) in sonItem" :key="sonIndex" border> |
||||
|
<el-descriptions-item v-for="(sonCentor,sonKey) in sonVal" :key="sonKey" :label="sonKey"> {{sonCentor}} |
||||
|
</el-descriptions-item> |
||||
|
</el-descriptions> |
||||
|
</el-tab-pane> |
||||
|
</el-tabs> |
||||
|
</el-card> |
||||
|
</el-timeline-item> |
||||
|
</el-timeline> |
||||
|
</el-main> |
||||
|
<el-aside width="350px" class="flowBox"> |
||||
|
<el-header height="30px"> |
||||
|
<div class="workFlowHead"> |
||||
|
<el-text>审批流程</el-text> |
||||
|
<el-icon @click="closeDrawer"><Close /></el-icon> |
||||
|
</div> |
||||
|
</el-header> |
||||
|
<el-scrollbar class="scorllbarBox"> |
||||
|
<RunFlowStep ref="runstep" v-model:flowary="flowAry" :flow-key="props.pageInfo.runFlowIdStr" :current-progress="currentProgress" @updatelist="drawerBeforeClose" /> |
||||
|
</el-scrollbar> |
||||
|
</el-aside> |
||||
|
|
||||
|
</el-container> |
||||
|
</div> |
||||
|
<div v-else class="common-layout"> |
||||
|
<el-header height="30px"> |
||||
|
<el-icon @click="closeDrawer"><Close /></el-icon> |
||||
|
</el-header> |
||||
|
<ak-form |
||||
|
ref="formEl" |
||||
|
v-loading="formLoading" element-loading-text="Loading..." |
||||
|
:form-data="formState.formData" |
||||
|
:type="props.tablePageClass" |
||||
|
:dict="formState.dict" |
||||
|
request-url="getFormContent" |
||||
|
add-url="saveFormContent" |
||||
|
edit-url="editFormContent" |
||||
|
:before-submit="beforeSubmit" |
||||
|
:close-app-submit="closeDrawer" |
||||
|
:change-key-val="changeKeyVal" |
||||
|
:anew-submit = "anewSubmit" |
||||
|
:after-submit="afterSubmit" |
||||
|
:save-edit-form-info="saveEditFormInfo" |
||||
|
:send-draft-submit= "sendDraftSubmit" |
||||
|
:submit-edit="submitEdit" |
||||
|
/> |
||||
|
<el-divider v-if="pageLog&&pageLog.length > 0" content-position="left">历史记录</el-divider> |
||||
|
<el-timeline style="width: 100%"> |
||||
|
<el-timeline-item v-for="(item,index) in pageLog" :key="index" :timestamp="item.time+' 操作人:'+item.creater" placement="top"> |
||||
|
<el-card> |
||||
|
<el-descriptions border> |
||||
|
<el-descriptions-item v-for="(mastItem,mastIndex) in item.masterdata" :key="mastIndex" :label="mastIndex"> |
||||
|
{{mastItem}} |
||||
|
</el-descriptions-item> |
||||
|
</el-descriptions> |
||||
|
<el-tabs v-if="item.sunList" type="border-card" style="margin-top:20px;"> |
||||
|
<el-tab-pane v-for="(sonItem,sonIndex) in item.sunList" :label="sonIndex" :key="sonIndex"> |
||||
|
<el-descriptions v-for="(sonVal,sonIndex) in sonItem" :key="sonIndex" border> |
||||
|
<el-descriptions-item v-for="(sonCentor,sonKey) in sonVal" :key="sonKey" :label="sonKey"> {{sonCentor}} |
||||
|
</el-descriptions-item> |
||||
|
</el-descriptions> |
||||
|
</el-tab-pane> |
||||
|
</el-tabs> |
||||
|
</el-card> |
||||
|
</el-timeline-item> |
||||
|
</el-timeline> |
||||
|
</div> |
||||
|
</el-drawer> |
||||
|
</template> |
||||
|
<style lang='scss' scoped> |
||||
|
.common-layout{ |
||||
|
height: 100vh; |
||||
|
padding: 0 15px; |
||||
|
.el-main{ |
||||
|
height: 100vh; |
||||
|
padding:0; |
||||
|
} |
||||
|
.flowBox{ |
||||
|
height: 100vh; |
||||
|
border-left: 1px solid #ccc; |
||||
|
.scorllbarBox{ |
||||
|
height: calc(100vh - 35px) |
||||
|
} |
||||
|
.workFlowHead{ |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
justify-content: space-between; |
||||
|
} |
||||
|
} |
||||
|
.el-header{ |
||||
|
padding:0 10px; |
||||
|
line-height:30px; |
||||
|
text-align:right; |
||||
|
font-size:20px; |
||||
|
i{ |
||||
|
cursor:pointer; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
</style> |
||||
File diff suppressed because one or more lines are too long
@ -0,0 +1,229 @@ |
|||||
|
<!-- |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-05-31 13:59:06 |
||||
|
@ 备注: 我创建的 |
||||
|
--> |
||||
|
<script lang='ts' setup> |
||||
|
|
||||
|
import { gainAppAllTaskList } from "@/api/DesignForm/requestapi" |
||||
|
|
||||
|
const props = defineProps({ |
||||
|
pickAppMenu:{ |
||||
|
type:Object, |
||||
|
default(){ |
||||
|
return {} |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
const selectInfo = reactive<taskflowquery>({ |
||||
|
page: 1, |
||||
|
pagesize: 20, |
||||
|
class:1, |
||||
|
id:props.pickAppMenu.appkey |
||||
|
}) |
||||
|
const loading = ref(false) |
||||
|
const searckFormRef = ref(ElForm); |
||||
|
const totals = ref<number>(0) //总共多少条记录 |
||||
|
const taskFlowAry = ref<any>([]) //记录数组 |
||||
|
//重置表单 |
||||
|
const resetQuery = () =>{ |
||||
|
searckFormRef.value.resetFields(); |
||||
|
initData(); |
||||
|
} |
||||
|
//初始化数据 |
||||
|
const initData = () =>{ |
||||
|
selectInfo.page = 1; |
||||
|
selectInfo.pagesize = 15; |
||||
|
selectInfo.title = "" |
||||
|
selectInfo.class = 3; |
||||
|
selectInfo.state = 0; |
||||
|
} |
||||
|
/** |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-06-07 09:28:35 |
||||
|
@ 功能: 加载数据 |
||||
|
*/ |
||||
|
const getToDoList = () =>{ |
||||
|
gainAppAllTaskList(selectInfo) |
||||
|
.then((data) =>{ |
||||
|
console.log("加载数据--->",data) |
||||
|
totals.value = data.data.total |
||||
|
taskFlowAry.value = data.data.list |
||||
|
}) |
||||
|
} |
||||
|
onMounted(() =>{ |
||||
|
getToDoList() |
||||
|
}) |
||||
|
</script> |
||||
|
<template> |
||||
|
<div ref="myappbox" class="app_box"> |
||||
|
<div class="app-container"> |
||||
|
<div class="search"> |
||||
|
<div class="titleBox"> |
||||
|
我创建的 |
||||
|
</div> |
||||
|
<el-form ref="searckFormRef" :model="selectInfo" :inline="true"> |
||||
|
<el-form-item label="任务标题" prop="name"> |
||||
|
<el-input |
||||
|
v-model="selectInfo.title" |
||||
|
placeholder="请输入任务标题" |
||||
|
clearable |
||||
|
@keyup.enter="searchQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" @click="getToDoList()"><i-ep-search />搜索</el-button> |
||||
|
<el-button @click="resetQuery()"><i-ep-refresh />重置</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
</div> |
||||
|
<el-card shadow="never"> |
||||
|
<el-table |
||||
|
v-loading="loading" |
||||
|
element-loading-text="Loading..." |
||||
|
highlight-current-row |
||||
|
:data="taskFlowAry" |
||||
|
border |
||||
|
class="table_box" |
||||
|
> |
||||
|
<el-table-column fixed label="标题" prop="title" width="500" /> |
||||
|
<el-table-column label="创建人" prop="creater" width="200"> |
||||
|
<template #default="scope"> |
||||
|
{{ scope.row.createrInfo.name }}(<el-text type="info">{{ scope.row.createrInfo.number }}</el-text>) |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column label="发起日期" prop="createrTimeStr" align="center" width="300" /> |
||||
|
<el-table-column label="状态" prop="status" align="center" width="220" > |
||||
|
|
||||
|
<template #default="scope"> |
||||
|
<el-tag |
||||
|
v-if="scope.row.status==1" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
草稿 |
||||
|
</el-tag> |
||||
|
<el-tag |
||||
|
v-else-if="scope.row.status==2&&scope.row.types==1" |
||||
|
type="danger" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
驳回 |
||||
|
</el-tag> |
||||
|
<el-tag |
||||
|
v-else-if="scope.row.status==2&&scope.row.types!=1" |
||||
|
type="danger" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
发表 |
||||
|
</el-tag> |
||||
|
<el-tag |
||||
|
v-else-if="scope.row.status==3" |
||||
|
type="success" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
审批中 |
||||
|
</el-tag> |
||||
|
<el-tag |
||||
|
v-else-if="scope.row.status==4" |
||||
|
type="info" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
归档 |
||||
|
</el-tag> |
||||
|
<el-tag |
||||
|
v-else |
||||
|
type="info" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
删除 |
||||
|
</el-tag> |
||||
|
</template> |
||||
|
|
||||
|
</el-table-column> |
||||
|
<el-table-column label="任务性质" prop="currentStep" width="200" align="center"> |
||||
|
<template #default="scope"> |
||||
|
<el-tag |
||||
|
v-if="scope.row.types==1" |
||||
|
type="danger" |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
流程任务 |
||||
|
</el-tag> |
||||
|
<el-tag |
||||
|
v-else |
||||
|
class="mx-1" |
||||
|
effect="plain" |
||||
|
round |
||||
|
> |
||||
|
普通任务 |
||||
|
</el-tag> |
||||
|
|
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column fixed="right" align="center" label="操作" width="100" > |
||||
|
<template #default="scope"> |
||||
|
<el-tooltip |
||||
|
class="box-item" |
||||
|
effect="dark" |
||||
|
content="查看详情" |
||||
|
placement="top-end" |
||||
|
> |
||||
|
<el-button type="primary" size="small" class="fa fa-eye" @click="lookFlowInfo(scope.row,3)" /> |
||||
|
</el-tooltip> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
<pagination |
||||
|
v-model:total="totals" |
||||
|
v-model:page="selectInfo.page" |
||||
|
v-model:limit="selectInfo.pagesize" |
||||
|
@pagination="getToDoList" |
||||
|
/> |
||||
|
</el-card> |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</template> |
||||
|
<style lang='scss' scoped> |
||||
|
.app_box{ |
||||
|
width:100%; |
||||
|
overflow: hidden; |
||||
|
overflow-y: auto; |
||||
|
.search{ |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
justify-content: space-between; |
||||
|
} |
||||
|
.titleBox{ |
||||
|
font-size: 20px; |
||||
|
margin-top: -20px; |
||||
|
} |
||||
|
} |
||||
|
.box-card { |
||||
|
width: 100%; |
||||
|
} |
||||
|
.table_box{ |
||||
|
width: 100%; |
||||
|
height: calc(100vh - 260px); |
||||
|
} |
||||
|
</style> |
||||
Loading…
Reference in new issue