Commit 88e2a25d by ningjihai

13123

parent db33f6e9
<script setup name="ProjectManageList">
<script setup name="ClassificationVerification">
import { getCurrentInstance, reactive, ref, watch, onMounted, computed,nextTick} from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useRouter } from 'vue-router'
......@@ -398,7 +398,12 @@ const resetSummary = () => {
})
}
function pageProjectManage() {
changeRoute()
router.push({
path: '/project/Project'
})
}
</script>
<template>
......
......@@ -410,17 +410,19 @@ const handleAddEditConfirm = (submitData, isEditMode) =>{
</PageTitle>
<div class="app-container__body">
<div>
<query-form
ref="QueryFormRef"
v-model="queryParams"
@query="onQuery"
@reset="onReset"
@add="handleAdd"/>
@add="handleAdd"
/>
<div style="flex:1;">
<el-table
:data="tableData"
stripe
height="100%"
style="width: 100%"
>
<el-table-column
......@@ -608,6 +610,7 @@ const handleAddEditConfirm = (submitData, isEditMode) =>{
</template>
</el-table-column>
</el-table>
</div>
<pagination
v-show="total > 0"
:total="total"
......@@ -615,18 +618,19 @@ const handleAddEditConfirm = (submitData, isEditMode) =>{
v-model:limit="queryParams.pagesize"
@pagination="getList"
/>
</div>
</div>
<!-- 新增/编辑发现任务弹窗 -->
<!-- <AddDiscoveryDialog ref="addDiscoveryDialogRef" @confirm="handleAddEditConfirm" /> -->
</div>
<SmartDiscoveryDialog
v-model="smartDiscoveryDialogVisible"
ref="smartDiscoveryDialogRef"
@discover="disCoverSmart"
/>
</div>
<!-- 新增/编辑发现任务弹窗 -->
<!-- <AddDiscoveryDialog ref="addDiscoveryDialogRef" @confirm="handleAddEditConfirm" /> -->
</template>
<style lang="scss" scoped>
......
......@@ -90,12 +90,17 @@ onMounted(() => {
</PageTitle>
<div class="app-container__body">
<query-form ref="QueryFormRef" v-model="queryParams" @query="onQuery" @reset="onReset" />
<el-table v-loading="loading" :data="logList" border style="width: 100%">
<div style="flex:1;">
<el-table v-loading="loading" :data="logList" stripe
height="100%" style="width: 100%">
<el-table-column prop="createuser" label="用户" align="center" width="200" />
<el-table-column prop="createtime" label="时间" align="center" width="180" />
<el-table-column prop="code" label="操作代码" align="center" width="180" />
<el-table-column prop="operationMassage" label="操作信息" align="center" show-overflow-tooltip />
</el-table>
</div>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.page" v-model:limit="queryParams.rows"
@pagination="getList" />
......
......@@ -90,12 +90,15 @@ onMounted(() => {
</PageTitle>
<div class="app-container__body">
<query-form ref="QueryFormRef" v-model="queryParams" @query="onQuery" @reset="onReset" />
<el-table v-loading="loading" :data="logList" border style="width: 100%">
<div style="flex:1;">
<el-table v-loading="loading" :data="logList" stripe height="100%" style="width: 100%">
<el-table-column prop="operptionUser" label="用户" align="center" width="200" />
<el-table-column prop="code" label="操作代码" align="center" width="180" />
<el-table-column prop="operModule" label="操作模块" align="center" width="200" />
<el-table-column prop="operptionMassage" label="操作信息" align="center" show-overflow-tooltip />
</el-table>
</div>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.page" v-model:limit="queryParams.rows"
@pagination="getList" />
......
......@@ -421,9 +421,7 @@ onMounted(()=>{
</template>
</PageTitle>
<div class="app-container__body">
<query-form
ref="QueryFormRef"
v-model="queryParams"
......@@ -437,7 +435,7 @@ onMounted(()=>{
:data="tableList"
v-loading="loading"
stripe
style="width: 100%; margin-top: 20px"
style="width: 100%;"
>
<el-table-column
type="index"
......@@ -540,7 +538,7 @@ onMounted(()=>{
/>
</div>
</div>
<ProjectEditDialog
v-model:visible="dialogVisible"
:mode="dialogMode"
......@@ -567,7 +565,6 @@ onMounted(()=>{
:project-id="currentImportProjectId"
@success="handleImportSuccess"
/>
</div>
</template>
<style lang="scss" scoped>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论