You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bsdgy-front/src/pages/recruit/BulletinIndex.vue

45 lines
1.1 KiB
Vue

5 years ago
<template>
<div class="div-page">
<template>
<Row class="search-row">
<i-col span="8">
<p class="" style="font-size: 16px;line-height: 22px;margin-top: 10px;margin-left: 20px;margin-right: 20px;">招募令</p>
<p class="" style="font-size: 13px;line-height: 32px;margin-left: 20px;margin-right: 20px;">便于门店进行推广员招募</p>
</i-col>
<i-col span="8">
<span class="">使用范围26家零售公司785家店铺</span>
<span class="" style="border: 0px; color: rgb(52, 150, 235); margin-left: 15px; cursor: pointer;">修改</span>
</i-col>
<i-col span="8">
<i-switch size="large">
<span slot="open">开启</span>
<span slot="close">关闭</span>
</i-switch>
</i-col>
</Row>
</template>
</div>
</template>
<script>
export default {
data() {
return {
};
},
mounted: function() {
},
methods: {
change (status) {
this.$Message.info('开关状态:' + status);
}
},
};
</script>
<style scoped>
</style>