嵌套一层
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user