改错了
This commit is contained in:
61
src/project/saas/AppCooperationPropaganda/addPropaganda.vue
Normal file
61
src/project/saas/AppCooperationPropaganda/addPropaganda.vue
Normal file
@@ -0,0 +1,61 @@
|
||||
<template>
|
||||
<div class="addPropaganda">
|
||||
<!-- <div>{{ this.type==0? "群发居民群": this.type==1? "群发居民": "群发朋友圈" }}</div> -->
|
||||
|
||||
<div class="task_name">
|
||||
<div><span class="color_red">*</span><span class="title">任务名称</span></div>
|
||||
<u-input v-model="value" type="text" placeholder="请输入" maxlength="15" class="inpt"/>
|
||||
</div>
|
||||
|
||||
<div class="send_scope">
|
||||
<div><span class="color_red">*</span><span class="title">发送范围</span></div>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "addPropaganda",
|
||||
data() {
|
||||
return {
|
||||
type: '',
|
||||
}
|
||||
},
|
||||
methods: {},
|
||||
onShow() {
|
||||
},
|
||||
onLoad(o) {
|
||||
this.type = o.index;
|
||||
document.title = this.type==0? "群发居民群": this.type==1? "群发居民": "群发朋友圈"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.addPropaganda {
|
||||
font-size: 32px !important;
|
||||
.task_name,
|
||||
.send_scope {
|
||||
background: #FFF;
|
||||
padding: 32px;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 16px;
|
||||
box-shadow: inset 0px -1px 0px 0px #DDDDDD;
|
||||
.title {
|
||||
font-weight: 400;
|
||||
font-size: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.color_red {
|
||||
color: #FF4466;
|
||||
}
|
||||
.inpt {
|
||||
margin-left: 14px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user