counter.vue 7.52 KB
Newer Older
xd's avatar
xd committed
1
<template>
xd's avatar
xd committed
2 3 4 5
  <div class="main">
    <div class="title">全部柜组( 共5个 )</div>
    <div class="searchs">
      <div class="buttons">
xd's avatar
xd committed
6
        <el-button class="button buttonlight" size="small" @click="addCounter">添加柜组</el-button>
xd's avatar
xd committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
        <el-button class="button buttondark" size="small">批量删除</el-button>
      </div>

      <!-- 搜索区 -->
      <el-form
        class="searchzone"
        :inline="true"
        :model="data.search"
        label-width="auto"
      >
        <el-form-item label="关键词">
          <el-input
            size="small"
            v-model="data.search.keys"
            style="width:160px"
            placeholder="请输入关键词"
          />
        </el-form-item>
        <el-button class="button buttondark" size="small" style="margin-top:4px;">搜索</el-button>
      </el-form>
    </div>
    <div class="lists">
      <el-table
        stripe
        class="list"
        ref="multipleTable"
        :data="list.main"
        tooltip-effect="dark"
        style="width: 100%"
xd's avatar
xd committed
36
         :height="tableHeight"
xd's avatar
xd committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
        @selection-change="listPick"
      >
        <el-table-column type="selection" width="60"></el-table-column>
        <el-table-column
          prop="taskName"
          label="柜组名称"
          align="center"
        ></el-table-column>
        <el-table-column
          prop="taskType"
          label="柜组负责人"
          align="center"
          width="120"
        ></el-table-column>
        <el-table-column
          prop="bar"
          label="柜组编号"
          align="center"
          width="120"
        ></el-table-column>
        <el-table-column
          prop="bar"
          label="所有区域"
          align="center"
          width="120"
        ></el-table-column>
         <el-table-column
          prop="bar"
          label="门店数量"
          align="center"
          width="120"
        ></el-table-column>
        <el-table-column label="创建时间" width="120" align="center">
          <template slot-scope="scope">{{ scope.row.sendDate }}</template>
        </el-table-column>

        <el-table-column label="操作" align="center" fixed="right" width="200">
          <template slot-scope="scope">
xd's avatar
xd committed
75
            <el-button type="text" class="btn" @click="handleDetail(scope.row)"
xd's avatar
xd committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
              >详情</el-button
            >
            <el-button type="text" class="btn" @click="testButtonClick(scope.row)"
              >编辑</el-button
            >
            <el-button
              type="text"
              @click="testButtonClick(scope.row)"
              class="listButtonRed"
              >删除</el-button
            >
          </template>
        </el-table-column>
      </el-table>
    </div>
    <div class="pages">
      <el-pagination
xd's avatar
xd committed
93 94 95 96 97 98
      @current-change="handleCurrentChange"
      :current-page="page.currentPage"
      :page-size="page.size"
      layout="total, prev, pager, next, jumper"
      :total="page.total">
    </el-pagination>
xd's avatar
xd committed
99
    </div>
xd's avatar
xd committed
100 101
    <add-counter ref="addCounter"></add-counter>
    <counter-detail ref="counterDetail" ></counter-detail>
xd's avatar
xd committed
102 103 104
  </div>
</template>
<script>
xd's avatar
xd committed
105
import CounterDetail from "./components/counterDetail"
xd's avatar
xd committed
106
import AddCounter from "./components/addCounter"
xd's avatar
xd committed
107
export default {
xd's avatar
xd committed
108
  components: {
xd's avatar
xd committed
109 110
    CounterDetail,
    AddCounter
xd's avatar
xd committed
111
  },
xd's avatar
xd committed
112 113 114 115
  data() {
    return {
      list: {
        main: [
xd's avatar
xd committed
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
          {
            id: "1001",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
          {
            id: "1002",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
          {
            id: "1003",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
xd's avatar
xd committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
          {
            id: "1001",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
          {
            id: "1002",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
          {
            id: "1003",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          }
        ],
        search: {
          bar: [
            {
              id: "1",
              name: "全部"
            },
            {
              id: "2",
              name: "测试"
            }
          ],
          taskType: [
            {
              id: "1",
              name: "全部"
            },
            {
              id: "2",
              name: "测试"
            }
          ]
        }
      },
      data: {
        search: {
          bar: "",
          taskType: "",
          date: "",
          keys: ""
        },
        page: {
          nowPageNum: 4
        }
xd's avatar
xd committed
198
      },
xd's avatar
xd committed
199 200
      detailDialog: false,
      counterDialog: false,
xd's avatar
xd committed
201
      tableHeight: window.innerHeight * 0.5 ,
xd's avatar
xd committed
202 203 204 205 206
      page:{
          currentPage:1,
          size:20,
          total:100
        }
xd's avatar
xd committed
207 208 209 210 211 212 213 214
    };
  },
  created() {},
  methods: {
    listPick() {},
    testButtonClick() {},
    pagesSizeChange() {},
    pagesNowPageChange() {},
xd's avatar
xd committed
215
    handleDetail() {
xd's avatar
xd committed
216
      this.$refs.counterDetail.detailDialog = true
xd's avatar
xd committed
217 218
    },
    addCounter() {
xd's avatar
xd committed
219
      this.$refs.addCounter.counterDialog= true
xd's avatar
xd committed
220
    },
xd's avatar
xd committed
221 222
    addCounterFinish() {
      this.counterDialog = false
xd's avatar
xd committed
223 224 225 226
    },
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`);
    },
xd's avatar
xd committed
227 228 229 230 231 232 233
  },
 /*  mounted() {
     this.$nextTick(() => {
         this.tableHeight = window.innerHeight - 120;
     })        
  } */
}
xd's avatar
xd committed
234
</script>
xd's avatar
xd committed
235 236
<style lang="scss" scoped>
.main {
xd's avatar
xd committed
237 238 239 240
  position: relative;
  background-color: #fff;
  box-sizing: border-box;
  height: 100%;
xd's avatar
xd committed
241 242 243 244
  padding: 0px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
xd's avatar
xd committed
245
  width: 100%;
xd's avatar
xd committed
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
}
.searchs {
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.buttons {
  width: 266px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.buttonlight {
  background-color: #e8e9fe;
  color: #4e59c7;
  border: 1px solid #4e59c7;
  box-sizing: border-box;
}
.buttonlight:hover {
}
.btn {
  font-size:14px;
  font-weight:bold;
  color:rgba(102,102,102,1);
}
.buttondark {
  width: 88px;
  height: 32px;
  background-color: #4e59c7;
  color: #ffffff;
  border: 1px solid #4e59c7;
  box-sizing: border-box;
}
.buttondark:hover {
}
.searchzone {
  height: 40px;
  width: auto;
  min-width: 654px;
  text-align: right;
}
.lists {
  height: auto;
  min-height: 70%;
  width: 100%;
  margin-top: 20px;
}
.listButtonRed {
  color: red;
}
.pages {
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.title {
  height: 48px;
  line-height: 48px;
  color:rgba(56,56,56,1);
  border-bottom: 1px solid #f8f8f8;
  margin-bottom: 16px;
}
</style>