Commit fec30f94 by liang ce

账户列表默认搜索正常状态用户

parent d54f9f1f
......@@ -9,7 +9,7 @@
<a-select-option value="NOT_EXIST">未绑卡</a-select-option>
<a-select-option value="UNACTIVE">已冻结</a-select-option>
</a-select>
<a-select placeholder="账户状态" style="width: 120px;margin-right: 20px;" :allowClear="true" @change="selectHandleChangeAccount">
<a-select placeholder="账户状态" defaultValue="ACTIVE" style="width: 120px;margin-right: 20px;" :allowClear="true" @change="selectHandleChangeAccount">
<a-select-option value="ACTIVE">正常</a-select-option>
<a-select-option value="LOG_OFF">已注销</a-select-option>
</a-select>
......@@ -33,7 +33,7 @@
<a-table :columns="columns" :dataSource="accountList" size="default" rowKey="ddUserId" :pagination="pagination" @change="handleTableChange">
<span slot="name">姓名</span>
<span slot="departmentNameList" slot-scope="departmentNameList, record">
<a-popover v-if="item" v-for="(item,indexOf) in departmentNameList" :key="indexOf">
<a-popover v-for="(item,indexOf) in departmentNameList" v-if="item" :key="indexOf">
<template slot="content">
<p>{{record.parentSysDeptNameList[indexOf]}}</p>
</template>
......@@ -189,7 +189,7 @@ export default {
},
cardNum: '',
cardStatus: '',
accountStatus: ''
accountStatus: 'ACTIVE'
}
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment