mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-12 04:16:47 +08:00
style
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user