提交 547c066e 编写于 作者: KK's avatar KK

表单样式调整

上级 137eb79b
......@@ -160,10 +160,16 @@ export default class AppFormGroup extends Vue {
* @type {string}
* @memberof AppFormGroup
*/
public mounted(){
let groupList :any= this.$refs.group;
if(groupList){
groupList.lastElementChild.classList.add("item-last-item")
public mounted() {
// 获取到group节点,其最后一项没有下划线
let groupList: any = this.$refs.group;
if (groupList && groupList.lastElementChild) {
groupList.lastElementChild.lines = "none";
}
for (let item of groupList.children) {
if (item.localName && item.localName === "ion-item" && item.nextElementSibling && item.nextElementSibling.localName === "ion-row") {
item.lines = "none";
}
}
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册