| | |
| | | <a-cascader :options="areaData" v-model="areaVal" placeholder="行政规划" expandTrigger="hover" :fieldNames="fieldNames" changeOnSelect @change="onChange" style="width: 100%"/> |
| | | </a-col> |
| | | <a-col :span="4"> |
| | | <a-select v-model="search.searchParams.unittype" placeholder="监管层级" style="width: 100%"> |
| | | <a-select v-model="search.searchParams.unittype" placeholder="监管层级" style="width: 100%" clearable> |
| | | <a-select-option :value="1"> |
| | | 省级 |
| | | </a-select-option> |
| | |
| | | <a-col :span="4"> |
| | | <a-input v-model="search.searchParams.realName" placeholder="姓名" style="width: 100%"/> |
| | | </a-col> |
| | | <a-col :span="4"> |
| | | <a-col :span="6"> |
| | | <a-button type="primary" @click="getUserList">查询</a-button> |
| | | <a-button style="margin-left: 12px" @click="resetSearch">重置</a-button> |
| | | </a-col> |
| | |
| | | { |
| | | title: '操作', |
| | | key: 'action', |
| | | width: '18%', |
| | | scopedSlots: { customRender: 'action' }, |
| | | }, |
| | | ], |
| | |
| | | created() { |
| | | const t = this |
| | | t.unittype = getUserInfo().unittype |
| | | console.log(t.unittype,'unit') |
| | | t.getUserList() |
| | | t.getDistrictInfo() |
| | | }, |