// 清空一些无法通过清空数据清空的输入框
this.$refs.select.clearSingleSelect()
}
},
补充:
假如同时使用Table组件实现修改功能,修改是数据最好使用深拷贝
{
title: ‘操作’,
align: ‘center’,
key: ‘action’,
width: 125,
minWidth: 125,
render: (h, params) => {
return h(‘div’, [
h(
‘Button’,
{
props: {
type: ‘primary’,
size: ‘small’
},
style: ‘margin-right:5px;’,
on: {
click: () => {
this.newsForm = JSON.parse(JSON.stringify(params.row))
this.add_show = true
this.editStatus = true
this.index = params.row.id
console.log(this.newsForm)
}
}
},
‘修改’
)])
}
}
利用select的label-in-value实现两个输入框的绑定
<Select
v-model=“index”
placeholder=“请选择学校”
filterable
label-in-value
@on-change=“match1”
v-for=“item in universityList”
:label=“item.universityname”
:value=“item.id”
:key=“item.id”
match1 (item) {
if (item) {
this.newsForm.universityid = item.value
this.newsForm.universityname = item.label
}
}
补充:
假如只是实现增加,而无需实现修改,则不需要使用v-model
v-model此处的作用在于修改时将此选项框的选项赋值
利用select的远程搜索实现输入
// 主要通过:remote-method实现远程搜索
<Select
ref=“select”
v-model=“name”
filterable
clearable
remote
:remote-method=“remoteMethod1”
:loading=“select_loading”
@on-clear=“clear”
v-for=“option in options”
:value=“option.name”
:key=“option.id”
{{ option.name }}</Option
clear () {
this.name = ‘’
this.options = []
},
remoteMethod1 (query) {
if (query !== ‘’) {
this.select_loading = true
searchList(1, 10, query).then(res => {
this.select_loading = false
this.options = res.data.data.data
console.log(res.data.data)
})
} else {
this.options = []
}
}
select的远程搜索结合实现两个输入框的绑定以及增改
// 主要通过:remote-method实现远程搜索
<Select
ref=“select”
v-model=“index”
filterable
clearable
remote
:remote-method=“remoteMethod1”
:loading=“select_loading”
@on-change=“match1”
@on-clear=“clear”
v-for=“option in options”
:value=“option.companyName”
:key=“option.id”
{{ option.companyName }}</Option
match1 (item) {
console.log(item)
if (item) {
this.newsForm.companyName = item
console.log(item)
if (item !== ‘’) {
searchCompanyList(1, 1, item).then(res => {
this.newsForm.jobCompanyId = res.data.data.data[0].id
})
}
}
},
clear () {
this.newsForm.jobCompanyId = ‘’
this.options = []
},
remoteMethod1 (query) {
if (query !== ‘’) {
this.select_loading = true
searchCompanyList(1, 10, query).then(res => {
this.select_loading = false
this.options = res.data.data.data
console.log(res.data.data)
})
} else {
this.options = []
}
}
// 修改按钮的render函数
render: (h, params) => {
return h(‘div’, [
h(
‘Button’,
{
props: {
type: ‘primary’,
size: ‘small’
},
style: ‘margin-right:5px;’,
on: {
click: () => {
this.newsForm = JSON.parse(JSON.stringify(params.row))
this.add_show = true
this.editStatus = true
this.index = params.row.companyName
console.log(this.newsForm)
}
}
},
‘修改’
)])}
利用Table的render实现图片、替换
{
title: ‘学校logo’,
align: ‘center’,
key: ‘logo’,
width: 105,
render: (h, params) => {
return h(‘div’, [
h(‘img’, {
style: ‘width:100%;height:100%;margin:5px’,
attrs: {
src: params.row.logo
}
})
])
}
},
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**
[外链图片转存中…(img-DkpIKpRH-1715461974400)]
[外链图片转存中…(img-dTJk79IB-1715461974401)]
[外链图片转存中…(img-MZulPuw8-1715461974401)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!