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/shop/IncreaseGroupSendConfigureA...

47 lines
1.3 KiB
Vue

6 years ago
<template>
<div>
<p style="margin-top: 30px;margin-bottom: 30px">
<Button style="width: 112px;height: 20px;background-color: #FFF;color: #1A80D2;border: 0px">选择发送给的客户</Button>
</p>
<dic>
<i-input v-model="groupContent" type="textarea" :rows="10" show-word-limit placeholder="输入消息内容。。。" style="width: 50%" />
</dic>
<div style="margin-top: 10px">
<i-input placeholder="添加图片/网页/小程序" readonly style="width: 50%">
<Icon type="md-add" slot="prefix" />
</i-input>
</div>
<Row style="width: 50%;margin-top: 30px">
<i-col span="12">
<Button style="width: 142px;height: 46px;background-color: #1A80D2;color: #FFF;">通知成员发送</Button>
</i-col>
<i-col span="12" style="text-align: left">
通知成员向选中的客户发送以上企业消息
</i-col>
</Row>
</div>
</template>
<script>
export default {
name: "IncreaseGroupSendConfigureAdd",
data(){
return {
groupContent:'',
}
},
mounted() {
},
methods:{
}
}
</script>
<style scoped>
</style>