mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 23:06:47 +08:00
fix: 显示
This commit is contained in:
@@ -95,7 +95,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div style="margin-top: 10px">
|
<div style="margin-top: 10px">
|
||||||
<a-select
|
<a-select
|
||||||
v-model:value="selectJobId"
|
v-model:value="selectJobId" v-if="selectJobId.length > 0"
|
||||||
mode="multiple"
|
mode="multiple"
|
||||||
style="width: 440px; min-height: 40px"
|
style="width: 440px; min-height: 40px"
|
||||||
placeholder="请选择岗位"
|
placeholder="请选择岗位"
|
||||||
@@ -111,7 +111,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div style="margin-top: 10px">
|
<div style="margin-top: 10px">
|
||||||
<a-select
|
<a-select
|
||||||
v-model:value="selectBandId"
|
v-model:value="selectBandId" v-if="selectBandId.length > 0"
|
||||||
mode="multiple"
|
mode="multiple"
|
||||||
style="width: 440px; min-height: 40px"
|
style="width: 440px; min-height: 40px"
|
||||||
placeholder="请选择Band"
|
placeholder="请选择Band"
|
||||||
@@ -411,6 +411,7 @@ export default defineComponent({
|
|||||||
let item = res.data.data;
|
let item = res.data.data;
|
||||||
if (item.jobTypeIds) {
|
if (item.jobTypeIds) {
|
||||||
state.selectJobId = item.jobTypeIds.split(",");
|
state.selectJobId = item.jobTypeIds.split(",");
|
||||||
|
console.log("selectJobId" + JSON.stringify(state.selectJobId));
|
||||||
}
|
}
|
||||||
if (item.bandIds) {
|
if (item.bandIds) {
|
||||||
state.selectBandId = item.bandIds.split(",");
|
state.selectBandId = item.bandIds.split(",");
|
||||||
|
|||||||
Reference in New Issue
Block a user