mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 05:46:45 +08:00
提交
This commit is contained in:
@@ -165,9 +165,9 @@
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btnn">
|
||||
<!-- <div class="btnn">
|
||||
<button class="btn1" @click="closeDrawer">取消</button>
|
||||
</div>
|
||||
</div> -->
|
||||
</template>
|
||||
|
||||
<template v-if="step == 2">
|
||||
|
||||
@@ -371,6 +371,7 @@ export default {
|
||||
dataIndex: "finishTime",
|
||||
key: "finishTime",
|
||||
align: "center",
|
||||
width: 150,
|
||||
ellipsis: true,
|
||||
customRender: (text) => {
|
||||
return (
|
||||
|
||||
@@ -6,13 +6,15 @@
|
||||
style="padding-left: 20px; margin-right: 0px"
|
||||
>
|
||||
<a-col>
|
||||
<a-form-item title="Band职级" style="width: 193px">
|
||||
<a-form-item style="width: 193px">
|
||||
<div class="select in">
|
||||
<a-select
|
||||
v-model:value="tableParam.organizationId"
|
||||
placeholder="请选择归属组织"
|
||||
:options="organizationOption"
|
||||
:filterOption="filterOption"
|
||||
allowClear
|
||||
showSearch
|
||||
></a-select>
|
||||
</div>
|
||||
</a-form-item>
|
||||
@@ -51,6 +53,8 @@
|
||||
placeholder="请选择Band职级"
|
||||
:options="bandOption"
|
||||
allowClear
|
||||
:filterOption="filterOption"
|
||||
showSearch
|
||||
></a-select>
|
||||
</div>
|
||||
</a-form-item>
|
||||
@@ -388,12 +392,14 @@ const officeSelectChange = () => {
|
||||
});
|
||||
});
|
||||
};
|
||||
const filterOption = (input, option) => {
|
||||
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
||||
};
|
||||
const getBandListData = () => {
|
||||
getBandList({
|
||||
growthId: props.growId,
|
||||
}).then((res) => {
|
||||
// 清空筛选band职级的值
|
||||
tableParam.value.bandCode = null;
|
||||
bandOption.value = res.data.data.map((item) => {
|
||||
return {
|
||||
value: item.bandCode,
|
||||
|
||||
Reference in New Issue
Block a user