|
|
@@ -6,10 +6,8 @@
|
|
|
<el-form-item label="成员信息">
|
|
|
<el-input
|
|
|
v-model="formAccessibility.firstName"
|
|
|
-
|
|
|
placeholder="输入姓名,手机号,工号查询"
|
|
|
/>
|
|
|
-
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
@@ -17,7 +15,6 @@
|
|
|
<el-select
|
|
|
v-model="value"
|
|
|
placeholder="成员状态"
|
|
|
-
|
|
|
style="width: 240px"
|
|
|
>
|
|
|
<el-option
|
|
|
@@ -27,26 +24,23 @@
|
|
|
:value="item.value"
|
|
|
/>
|
|
|
</el-select>
|
|
|
-
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="4">
|
|
|
<el-form-item label="">
|
|
|
<el-button type="primary">查询</el-button>
|
|
|
<el-button type="primary" plain>重置</el-button>
|
|
|
-
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
-
|
|
|
</el-form>
|
|
|
<div>
|
|
|
- <Table
|
|
|
- :tableData="tableData"
|
|
|
- :columns="columns"
|
|
|
- :showIndex="false"
|
|
|
- :showSelect="true"
|
|
|
- :pageInfo="pageInfo"
|
|
|
+ <Table
|
|
|
+ :tableData="tableData"
|
|
|
+ :columns="columns"
|
|
|
+ :showIndex="false"
|
|
|
+ :showSelect="true"
|
|
|
+ :pageInfo="pageInfo"
|
|
|
@getList="getList">
|
|
|
<template v-slot:operation="scope">
|
|
|
<el-button type="primary" @click="editor(scope)"> 编辑 </el-button>
|
|
|
@@ -55,8 +49,6 @@
|
|
|
<template v-slot:search="scope">
|
|
|
{{ scope.slotData.label }}
|
|
|
</template>
|
|
|
-
|
|
|
-
|
|
|
</Table >
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -108,27 +100,22 @@ const options = [
|
|
|
Name: "Dec",
|
|
|
Phone: "13333333333",
|
|
|
role: "公司",
|
|
|
- status:"123"
|
|
|
-
|
|
|
+ status:"123"
|
|
|
},
|
|
|
-
|
|
|
];
|
|
|
- const columns = [
|
|
|
-
|
|
|
+ const columns = [
|
|
|
{ prop: "Name", label: "姓名", },
|
|
|
{ prop: "Phone", label: "手机号", },
|
|
|
{ prop: "size", label: "工号", },
|
|
|
{ prop: "role", label: "角色", },
|
|
|
{ prop: "status", label: "状态", },
|
|
|
-
|
|
|
- // {
|
|
|
+ // {
|
|
|
// prop: "operation", label: "operation", width: "280",
|
|
|
// type:'operation', btn:[{
|
|
|
// type:"pramary",
|
|
|
// label:"编辑"
|
|
|
// }]
|
|
|
// },
|
|
|
-
|
|
|
]
|
|
|
const pageInfo={
|
|
|
pageNum:1,
|
|
|
@@ -140,7 +127,6 @@ const options = [
|
|
|
pageInfo.pageNum=item.pageNum
|
|
|
pageInfo.pageSize=item.pageSize
|
|
|
}
|
|
|
-
|
|
|
</script>
|
|
|
<style lang='scss' scoped>
|
|
|
.member{
|
|
|
@@ -150,5 +136,4 @@ const options = [
|
|
|
padding: 20px;
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
-
|
|
|
-</style>
|
|
|
+</style>
|