This commit is contained in:
zhangyc
2023-01-11 10:14:27 +08:00
parent f15e726cc7
commit 0cd2efad61
12 changed files with 1409 additions and 1338 deletions

View File

@@ -51,7 +51,7 @@
<div class="name">姓名</div>
<a-input
v-model:value="name"
style="width: 170px; height: 40px; border-radius: 8px"
style="width: 200px; height: 40px; border-radius: 8px"
placeholder="请输入姓名"
/>
</div>
@@ -60,7 +60,7 @@
<div class="select">
<a-select
v-model:value="projectName"
style="width: 170px"
style="width: 200px"
placeholder="请选择"
:options="projectNameList"
@change="selectProjectName"
@@ -174,13 +174,9 @@ export default {
pageSize: 10,
currentPage: 1,
tableDataTotal: 0,
projectName: "",
projectName: undefined,
projectNameList: [
{
id: 0,
value: '',
label: "全部",
},
{
id: 1,
value: "0",
@@ -323,7 +319,7 @@ export default {
ctx.emit("update:CommonModelVisible", false);
state.currentPage = 1;
state.name = "";
state.projectName = "";
state.projectName = undefined;
state.tabledata = [];
};
const afterVisibleChange = (bol) => {
@@ -444,7 +440,7 @@ export default {
state.tableDataTotalLoading = true;
state.currentPage = 1;
state.name = "";
state.projectName = "";
state.projectName = undefined;
getData();
}