- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在使用 Vuejs 和 Vuetify 的动态表单上苦苦挣扎了一段时间。首先,我有一个 API,它可以返回我的能力和技能的值,以添加到评估中。创建新评估时,我想逐步显示表单,因此我使用 v-stepper。问题是,在第三步中,用户需要选择之前已经选择过的一项能力,选择该能力后,需要在该能力上添加技能,所以一种能力可以有多种技能。
我想做的是,在步骤 2 中,我有一个填充 selectedCompetences 数组的选择,在步骤 3 中,我有一个 selectedCompetence 属性,它保存用户选择用于添加技能的能力,以及一个 selectedSkills数组,添加到这个权限中。
要发布到 api,我需要一个像这样的数组
[
competenceId: 1
skills:
[
{skillId: 1},
{skillId: 2},
{skillId: 3},
{skillId: 4},
]
]
而且,我需要这样做,用户添加第一组能力/技能。他想要将技能添加到另一项能力中,因此需要有一个按钮来向表单添加 2 个新字段,以便他以相同的方式填写。我花了一整天的时间试图弄清楚这个逻辑,但似乎没有任何作用。
下面是我的步进器组件:
<template>
<v-stepper v-model="step" alt-labels>
<v-stepper-header>
<v-stepper-step editable step="1" :complete="step > 1">Avaliação</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step editable step="2" :complete="step > 2">Competências</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step editable step="3" :complete="step > 3">Fatores</v-stepper-step>
<v-divider></v-divider>
<v-stepper-step step="4">Resumo</v-stepper-step>
</v-stepper-header>
<v-stepper-content step="1">
<v-row align="center" justify="center">
<v-col cols="4">
<v-text-field label="Descrição"></v-text-field>
</v-col>
</v-row>
<v-row align="center" justify="center">
<v-col cols="4">
<v-text-field v-model="newAppraisal.year" label="Ano"></v-text-field>
</v-col>
</v-row>
<v-row align="center" justify="center">
<v-col cols="2">
<v-menu
v-model="menu_std"
:close-on-content-click="false"
:nudge-right="40"
transition="scale-transition"
offset-y
min-width="290px"
>
<template v-slot:activator="{ on }">
<v-text-field label="Data de Início" readonly v-on="on" :value="computedStartDate"></v-text-field>
</template>
<v-date-picker
v-model="newAppraisal.startDate"
show-week
@input="menu_std = false"
color="primary"
></v-date-picker>
</v-menu>
</v-col>
<v-col cols="2">
<v-menu
v-model="menu_end"
:close-on-content-click="false"
:nudge-right="40"
transition="scale-transition"
offset-y
min-width="290px"
>
<template v-slot:activator="{ on }">
<v-text-field label="Data de Término" readonly v-on="on" :value="computedEndDate"></v-text-field>
</template>
<v-date-picker
v-model="newAppraisal.endDate"
show-week
@input="menu_end = false"
color="primary"
></v-date-picker>
</v-menu>
</v-col>
</v-row>
<v-row align="center" justify="center">
<v-col cols="2">
<v-radio-group v-model="newAppraisal.type" row>
<v-radio label="Obrigatória" value="0" color="primary"></v-radio>
<v-radio label="Pontual" value="1" color="primary"></v-radio>
</v-radio-group>
</v-col>
<v-col cols="2">
<div v-if="newAppraisal.type === '1'">
<v-select label="Selecione o usuário" chips v-model="newAppraisal.appraised"></v-select>
</div>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-row align="center" justify="end">
<v-btn color="success" tile large @click.native="next">Continuar</v-btn>
</v-row>
</v-col>
</v-row>
</v-stepper-content>
<v-stepper-content step="2">
<v-row align="center" justify="center">
<v-col cols="4">
<v-select
v-model="selectedCompetences"
:items="competences"
multiple
item-text="name"
return-object
label="Selecione as competências"
chips
hint="Adicione as competências para essa avaliação"
persistent-hint
></v-select>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-row align="center" justify="space-between">
<v-btn color="error" tile large @click.native="previous">Voltar</v-btn>
<v-btn color="success" tile large @click.native="next">Continuar</v-btn>
</v-row>
</v-col>
</v-row>
</v-stepper-content>
<v-stepper-content step="3">
<v-row align="center" justify="center">
<v-col cols="8">
<v-subheader class="title">Competencia 1</v-subheader>
<v-divider></v-divider>
</v-col>
</v-row>
<v-row align="center" justify="center">
<v-col cols="4">
<v-autocomplete
:items="selectedCompetences"
item-text="name"
item-value="competenceId"
v-model="selectedCompetence"
label="Competência"
></v-autocomplete>
</v-col>
</v-row>
<v-row align="center" justify="center">
<v-col cols="4">
<v-select
:items="skills"
v-model="selectedSkills"
multiple
chips
label="Fatores"
item-text="name"
item-value="skillId"
></v-select>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-row align="center" justify="space-between">
<v-btn color="error" tile large @click.native="previous">Voltar</v-btn>
<v-btn color="success" tile large @click.native="next">Continuar</v-btn>
</v-row>
<v-btn color="success" @click.native="addSkillsToCompetence">teste aqui</v-btn>
</v-col>
</v-row>
</v-stepper-content>
<v-stepper-content step="4">
<v-list>
<v-list-item>{{newAppraisal.year}}</v-list-item>
<v-list-item>{{computedStartDate}}</v-list-item>
<v-list-item>{{computedEndDate}}</v-list-item>
<v-list-item v-if="newAppraisal.type === '0'">Obrigatória</v-list-item>
<v-list-item v-else-if="newAppraisal.type === '1'">Pontual</v-list-item>
<v-list-item
v-for="(competence, index) in selectedCompetences"
:key="index"
>{{competence.name}}</v-list-item>
</v-list>
<v-btn color="primary" @click.native="previous">Voltar</v-btn>
<v-btn color="primary" @click.native="save">Salvar</v-btn>
</v-stepper-content>
</v-stepper>
</template>
<script>
import moment from "moment";
export default {
data: () => ({
step: 1,
menu_std: false,
menu_end: false,
newAppraisal: {
year: "",
startDate: new Date().toISOString().substr(0, 10),
endDate: new Date().toISOString().substr(0, 10),
type: "0",
appraised: {
name: "",
sector: "",
admissionDate: new Date().toISOString().substr(0, 10),
jobTitle: "",
appraiserName: ""
}
},
competences: [],
selectedCompetences: [],
selectedCompetence: "",
competenceSkills: [],
skills: [],
selectedSkills: [],
errors: [],
teste: {
competenceId: "",
skills: []
}
}),
computed: {
computedStartDate() {
return this.newAppraisal.startDate
? moment(this.newAppraisal.startDate).format("DD/MM/YYYY")
: "";
},
computedEndDate() {
return this.newAppraisal.endDate
? moment(this.newAppraisal.endDate).format("DD/MM/YYYY")
: "";
}
},
methods: {
previous() {
this.step--;
},
next() {
this.step++;
},
save() {
// first save appraisal, then add skill to competence, then add competence to appraisal
},
loadCompetences() {
axios
.get("/questionnaire/competences")
.then(response => {
this.competences = response.data;
})
.catch(e => {
this.errors.push(e);
});
},
loadSkills() {
axios
.get("/questionnaire/skills")
.then(response => {
this.skills = response.data;
})
.catch(e => {
this.errors.push(e);
});
},
addSkillsToCompetence() {
console.log(this.selectedCompetence, this.selectedSkills);
this.teste.competenceId = this.selectedCompetence
this.teste.skills = this.selectedSkills
console.log(this.teste);
this.competenceSkills.push(this.teste)
}
},
created() {
this.loadCompetences();
this.loadSkills();
}
};
</script>
<style>
</style>
如果有人能帮忙解决这个问题,我就陷入困境了
最佳答案
我不确定我是否正确理解了您的意思,但这是我的解决方案:
<div id='app'>
<v-app>
<v-container>
<v-stepper
vertical
v-model='step'>
<v-stepper-step
editable
key='step-1'
:step='1'
:complete='step > 1'>
Step 1
</v-stepper-step>
<v-stepper-content
key='content-1'
:step='1'>
<v-select
multiple
label='Select Competencies'
v-model='selectedCompetencies'
:items='competencies'/>
</v-stepper-content>
<v-stepper-step
editable
key='step-2'
:step='2'
:complete='step > 2'>
Step 2
</v-stepper-step>
<v-stepper-content
key='content-2'
:step='2'>
<div v-for='set in selectedSkillSets'>
<div>{{ set.competence }}</div>
<v-select
multiple
label='Add Skill'
v-model='set.skills'
:items='skills'/>
</div>
<v-select
label='Add Skill Set'
v-if='availableCompetencies.length'
:items='availableCompetencies'
@change='addSkillSet($event)'/>
</v-stepper-content>
</v-stepper>
</v-container>
</v-app>
</div>
new Vue({
el: '#app',
vuetify: new Vuetify(),
data: () => ({
step: 1,
competencies: [
'Foo',
'Bar',
'Fizz',
'Buzz'
],
skills: [
'Communication',
'Teamwork',
'Adaptability',
'Problem-Solving',
'Creativity'
],
selectedCompetencies: [],
selectedSkillSets: []
}),
computed: {
availableCompetencies() {
let used = this.selectedSkillSets.map(set => set.competence)
return this.selectedCompetencies.filter(competence => (
!used.includes(competence)
))
}
},
methods: {
addSkillSet(competence) {
this.selectedSkillSets.push({
competence,
skills: []
})
}
}
})
我希望这会有所帮助。
关于javascript - 如何在 vuetify 中动态添加/删除带有选择/自动完成值的新表单行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59793402/
有没有办法覆盖 Vuetify carousel 下一个/上一个图标上的样式?我看到有些字段可以使用自定义字段,但我想保留默认的 $vuetify.icons.next 并只更改其颜色。 最佳答案 在
我想要一个 option group (如 this )在 vuetify select 上. 那可能吗?如果是,我该怎么做? 最佳答案 过时 :请参阅下面的@DevNik 答案以了解正确实现 您可以
使用 vuetify expanded table但展开箭头在左侧显示为第一项。我怎样才能最后显示它(右侧),如 Expandable rows 所示例子?
我是 Vuetify 的新手(有史以来的第一个项目),我正在尝试在列粘性顶部内设置一张卡片。不幸的是没有按预期工作。我也尝试使用 vue-sticky-directive 中的 v-scroll 指令
我的 vuetify v-data-table 有很多列。现在它会自动压缩到屏幕尺寸。而不是我想要的是向我的 v-data-tale 添加水平滚动条。之前在 1.5 版中存在,但在版本 2 中不存在。
我从 Vuetify 导入了数据表组件,除了 Rows per page 部分之外,它工作正常。它不会打开应包含 [5, 10, 20] 的列表来重新组织数据表。 照片中的更新这是错误,选项列表显示在
怎么设置vuetify嵌套列表默认关闭?文档示例显示了嵌套列表功能,但在添加到应用程序时默认情况下会打开嵌套列表。 https://vuetifyjs.com/en/components/naviga
我知道这个问题 change-default-font-in-vuetify在 SO,但它没有解决我的问题,因为它是在 vue-cli-3 出现之前发布的,所以那里的想法在这里并不适用,官方文档来自
我正在使用 nuxt.js 和 vuetify 创建一个网站,我想将 bool 复选框文本的颜色更改为黑色,默认情况下为白色,请参阅 here !我怎样才能改变颜色? 我已经尝试过使用类 black-
我正在使用 nuxt.js 和 vuetify 创建一个网站,我想将 bool 复选框文本的颜色更改为黑色,默认情况下为白色,请参阅 here !我怎样才能改变颜色? 我已经尝试过使用类 black-
以前(我认为?)可以将 HTML 放入 vuetify 提示中,但对我来说这不再有效。例如,在我的一个组件中我有: Red hint" /> 此提示以前显示为红色,但现在我看到了完整的 HTML 代码
当 v-data-table 在移动 View 上时,项目之间的分隔线不清晰。如何自定义此分隔线,例如线宽和颜色? 我想做的: Custom divider on mobile view 来自 vue
我想整体更改数据表的背景颜色。我不想使用深色主题或浅色主题。即使使用 !important 或使用可用类,我似乎也无法更改它。 最佳答案 只需添加相关的颜色类,例如class="primary"或 v
我正在尝试将对话框和 snackbar 的使用与 VueJS 结合起来。问题如下: 预期行为: 我应该能够在不关闭对话框的情况下关闭 snackbar 现在发生了什么: 单击 snackbar 时正在
如果不使用 vuetify fork,我无法找到一个好的解决方案,它不稳定并且无论如何似乎都是旧版本。我会在评论中链接到它。 我能想到的唯一方法是将两个数据表并排排列,这本身就会产生问题。我知道还有其
我需要一个 v-text-field用户可以在其中输入他们通过短信收到的确认码。即使用户没有写大写字母的意图,该字段的内容也应该全部自动转换为大写字母。 最佳答案 您可以使用 keyup事件大写是这样
我正在尝试创建一个搜索输入字段,其中包含下拉列表中先前搜索的历史记录,例如 Intellij 编辑器中的搜索字段。 我是 Vuetify 的新手,从我目前看到的情况来看,Combobox 是最好的组件
v-select允许添加append-outer-icon,但是如何在点击该项时强制展开图标列表? @click:append-outer 允许添加回调函数,但我在 openSelect 中做了什
我的代码是这样的: OK 演示是这样的:https://codepen.io/positivethinking639/pen/GRRNzVE?
单击(例如)此页面上的任何 CodePen 链接:https://vuetifyjs.com/en/components/navigation-drawers 注意无样式内容的闪光。你如何消除这个?
我是一名优秀的程序员,十分优秀!