store.vue 7.6 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="addStore">添加门店</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 36 37 38 39
        <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"
xd's avatar
xd committed
40
        style="width: 100%"        
xd's avatar
xd committed
41
        @selection-change="listPick"
xd's avatar
xd committed
42
        :height="tableHeight"
xd's avatar
xd committed
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 75 76 77 78 79 80 81 82 83
      >
        <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
          prop="bar"
          label="门牌号"
          align="center"
          width="120"
        ></el-table-column>

        <el-table-column label="操作" align="center" fixed="right" width="200">
          <template slot-scope="scope">
xd's avatar
xd committed
84
            <el-button type="text" class="btn" @click="handleDetail(scope.row)"
xd's avatar
xd committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
              >详情</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
102 103 104 105 106 107
      @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
108
    </div>
xd's avatar
xd committed
109 110 111
    <add-store ref="addStore"></add-store>
    <store-detail  ref="storeDetail" ></store-detail>

xd's avatar
xd committed
112 113 114
  </div>
</template>
<script>
xd's avatar
xd committed
115 116
  import AddStore from './components/addStore'
  import StoreDetail from './components/storeDetail'
xd's avatar
xd committed
117
export default {
xd's avatar
xd committed
118 119 120 121
  components: {
    AddStore,
    StoreDetail
  },
xd's avatar
xd committed
122 123
  data() {
    return {
xd's avatar
xd committed
124 125 126 127 128
      page:{
          currentPage:1,
          size:20,
          total:100
      },
xd's avatar
xd committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
      list: {
        main: [
          {
            id: "1001",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
          {
            id: "1002",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
xd's avatar
xd committed
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
          {
            id: "1003",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
          {
            id: "1003",
            taskName: "2019年男装销售任务",
            taskType: "拉新",
            bar: "男装",
            taskContent: "任务内容任务内容任务内容...",
            sendDate: "2019/02/08"
          },
           {
            id: "1003",
            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
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
          {
            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: "测试"
            }
          ]
        }
      },
xd's avatar
xd committed
211
      tableHeight: window.innerHeight * 0.5 ,
xd's avatar
xd committed
212 213 214 215 216 217 218 219 220 221
      data: {
        search: {
          bar: "",
          taskType: "",
          date: "",
          keys: ""
        },
        page: {
          nowPageNum: 4
        }
xd's avatar
xd committed
222
      }
xd's avatar
xd committed
223 224 225 226 227 228 229 230 231 232 233 234
    };
  },
  created() {},
  methods: {
    listPick() {},
    testButtonClick() {},
    pagesSizeChange() {},
    pagesNowPageChange() {},
    setListsHeadStyle({ row, column, rowIndex, columnIndex }) {
      if (rowIndex === 0) {
        return "background-color: #0B0F32; border-right: 1px solid white;color: white;";
      } else {
xd's avatar
xd committed
235
        return ""
xd's avatar
xd committed
236
      }
xd's avatar
xd committed
237 238
    },
    addStore() {
xd's avatar
xd committed
239
      this.$refs.addStore.addStoreDialog = true
xd's avatar
xd committed
240 241
    },
    handleDetail() {
xd's avatar
xd committed
242
      this.$refs.storeDetail.detailDialog = true
xd's avatar
xd committed
243 244 245 246
    },
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`);
    },
xd's avatar
xd committed
247 248
  }
};
xd's avatar
xd committed
249
</script>
xd's avatar
xd committed
250 251 252 253 254 255 256
<style lang="scss" scoped>
.btn {
  font-size:14px;
  font-weight:bold;
  color:rgba(102,102,102,1);
}
.main {
xd's avatar
xd committed
257 258 259 260
  position: relative;
  background-color: #fff;
  box-sizing: border-box;
  height: 100%;
xd's avatar
xd committed
261 262 263 264
  padding: 0px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
xd's avatar
xd committed
265
  width: 100%;
xd's avatar
xd committed
266
}
xd's avatar
xd committed
267

xd's avatar
xd committed
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 315 316 317 318
.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;
}
.buttondark {
  width: 88px;
  height: 32px;
  background-color: #4e59c7;
  color: #ffffff;
  border: 1px solid #4e59c7;
  box-sizing: border-box;
}
.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>