审核日志只有一条

This commit is contained in:
zhangyc
2022-12-13 09:11:52 +08:00
parent 89e889506b
commit a8c7308cc2
10 changed files with 72 additions and 26 deletions

View File

@@ -14,13 +14,33 @@
<div class="tmplh_inp">
<div class="inpbox">
<div class="inpbox1">
<!--
<a-select
v-model:value="valueproj"
v-model:value="categoryId"
:options="[
{ label: '请选择内容分类', value: '' },
...calssifyList,
]"
/>
/>-->
<a-tree-select
:getPopupContainer="
(triggerNode) => {
return triggerNode.parentNode || document.body;
}
"
v-model:value="categoryId"
show-search
:dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
placeholder="请选择内容分类"
allow-clear
tree-default-expand-all
:tree-data="options2222"
>
<template #title="{ value: val, title }">
<b v-if="val === '11111'" style="color: #08c">sss</b>
<template v-else>{{ title }}</template>
</template>
</a-tree-select>
</div>
<div class="inpbox1">
<a-input
@@ -193,7 +213,7 @@ export default {
},
],
calssifyList: [], //分类字典
valueproj: "",
categoryId: "",
valuecreater: "",
valuename: "",
// currentFacePage: 1,
@@ -468,7 +488,7 @@ export default {
state.loading=true
let objn = {
auditStatus: 1,
categoryId: state.valueproj,
categoryId: state.categoryId,
createName: state.valuecreater,
name: state.valuename,
pageNo: state.currentPage,
@@ -537,7 +557,7 @@ export default {
const searchList = () => {
let objn = {
auditStatus: 1,
categoryId: state.valueproj,
categoryId: state.categoryId,
createName: state.valuecreater,
name: state.valuename,
pageNo: state.currentPage,
@@ -602,7 +622,7 @@ export default {
state.tableData1 = array;
};
const reset = () => {
state.valueproj = "";
state.categoryId = "";
state.valuecreater = null;
state.valuename = null;
getFaceList();