123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <div class="right" :style="{ height: height, width: width }">
- <div class="up">
- <div class="left-up">
- <div class="up-title">🔍筛选搜索</div>
- <div class="up-input-title">
- 消息标题:<el-input v-model="input" class="up-input" placeholder="请输入内容"></el-input>
- </div>
- <div class="up-input-title-right">
- <span class="demonstration">发布时间:</span>
- <el-date-picker v-model="value2" type="datetimerange" class="up-input-right" :picker-options="pickerOptions"
- range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" align="right">
- </el-date-picker>
- </div>
- </div>
- <div class="right-up">
- <div class="anniu">
- <el-button plain>重置</el-button>
- <el-button type="primary" plain>查询列表</el-button>
- </div>
- </div>
- </div>
- <div class="down">
-
- <div class="down-add">
- <el-row :gutter="24">
- <el-col :span="22" class="down-title"> <i class="el-icon-tickets">消息列表</i> </el-col>
- <el-col :span="2"> <el-button>添加</el-button> </el-col>
- </el-row>
- </div>
-
- <div class="down-table">
- <el-table :data="tableData" border style="width: 100%" class="messagetable">
- <el-table-column
- prop="id"
- label="ID"
- >
- </el-table-column>
- <el-table-column
- prop="messageTitle"
- label="消息标题"
- >
- </el-table-column>
- <el-table-column
- prop="messageTitle"
- label="消息标题"
- >
- </el-table-column>
- <el-table-column
- prop="phoneNumber"
- label="手机号"
- >
- </el-table-column>
- <el-table-column
- prop="publishTime"
- label="发布时间"
- >
- </el-table-column>
- <el-table-column
- prop="operate"
- label="操作">
- </el-table-column>
- </el-table>
- </div>
- </div>
- <div class="bottom">
- <div class="bottom-page"><el-pagination background layout="prev, pager, next" :total="1"></el-pagination></div>
- <span class="bottom-number">共{{ 0 }}条 </span>
- </div>
-
- </div>
- </template>
- <script>
- <<<<<<< HEAD
- // import {getMessageList} from '../../mock/message-box.ts'
- export default {
-
- props: {
-
- },
- data() {
- return {
- chart: null
- }
- },
- mounted() {
-
- },
- beforeDestroy() {
-
- },
- methods: {
-
- }
- }
- =======
- export default {
- data() {
- return {
- tableData: []
- }
- }
- }
- >>>>>>> b30873e230bf17d674bfeb83ddfd5a0d3654db88
- </script>
- <style scoped>
- .up {
- width: 96%;
- height: 150px;
- margin-top: 20px;
- margin-left: 27px;
- border: 1px solid #ccc;
- }
- .up-title {
- margin-left: 20px;
- margin-top: 20px;
- }
- .up-input {
- width: 250px;
- margin-left: 15px;
- }
- .up-input-title {
- margin-top: 15px;
- margin-left: 40px;
- float: left;
- }
- .up-input-right {
- width: 500px;
- }
- .up-input-title-right {
- margin-left: 450px;
- margin-top: 15px;
- }
- .down{
- margin-top: 40px;
- }
- .down-add{
- padding: 10px;
- margin: 0 27px;
- border:1px solid #ccc ;
- border-radius: 2px
- }
- .down-title{
- padding-top: 10px;
- color: #303133;
- }
- .down-table{
- margin-top: 15px;
- text-align: center;
- margin: 35px 27px;
- }
- .el-table .el-table__header-wrapper th, .el-table .el-table__fixed-header-wrapper th {
- word-break: break-word;
- /* background-color: #f8f8f9; */
- color: #515a6e;
- height: 40px;
- font-size: 13px;
- text-align: center;
- }
- .bottom-number{
- padding-top: 5px;
- color: #303133;
- float: right;
- }
- .bottom-page{
- float:right;
- }
- /**
- 自适应
- */
- .right {
- float: none;
- width: 100%;
- height: 100%;
- /* background-color: #9dc3e6; */
- }
- </style>
|