Files
dvcp_v2_wechat_app/src/project/fengdu/AppNewFarmerBank/integralAdd.vue

46 lines
804 B
Vue
Raw Normal View History

2023-03-31 10:48:06 +08:00
<template>
<div class="integralAdd">
2023-03-31 14:51:04 +08:00
<div class="item">
<div class="left">事件类型</div>
<!-- <div class="right"> -->
<AiSelect class="right" dict="clapEventStatus" v-model="form.type"></AiSelect>
<!-- </div> -->
</div>
2023-03-31 10:48:06 +08:00
</div>
</template>
<script>
export default {
name: "integralAdd",
appName: '积分申请',
data() {
return {
2023-03-31 14:51:04 +08:00
form: {
type: 0,
}
2023-03-31 10:48:06 +08:00
}
},
2023-03-31 14:51:04 +08:00
onLoad(o) {
this.$dict.load(['clapEventStatus'])
}
2023-03-31 10:48:06 +08:00
}
</script>
<style lang="scss" scoped>
.integralAdd {
2023-03-31 14:51:04 +08:00
.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;
}
}
2023-03-31 10:48:06 +08:00
}
</style>