嵌套一层

This commit is contained in:
shijingjing
2023-03-31 14:51:04 +08:00
parent 8dc45d7f0f
commit 01beff42b0
3 changed files with 134 additions and 53 deletions

View File

@@ -1,6 +1,11 @@
<template>
<div class="integralAdd">
<div class="item">
<div class="left">事件类型</div>
<!-- <div class="right"> -->
<AiSelect class="right" dict="clapEventStatus" v-model="form.type"></AiSelect>
<!-- </div> -->
</div>
</div>
</template>
@@ -10,14 +15,32 @@ export default {
appName: '积分申请',
data() {
return {
form: {
type: 0,
}
}
},
onLoad(o) {
this.$dict.load(['clapEventStatus'])
}
}
</script>
<style lang="scss" scoped>
.integralAdd {
.item {
width: 100%;
display: flex;
justify-content: space-between;
background: #FFF;
padding: 24px 32px;
.left {
width: 250px;;
}
.right {
width: calc(100% - 200px);
text-align: right;
}
}
}
</style>