Commit 95241787 authored by 吴春's avatar 吴春

提交代码

parent 27790173
...@@ -4,7 +4,9 @@ ...@@ -4,7 +4,9 @@
<span>品牌列表</span> <span>品牌列表</span>
<div style="display: flex;flex-direction: row;align-items: center"> <div style="display: flex;flex-direction: row;align-items: center">
<el-button type="primary" class="el-button--small" @click="addTopic">新增</el-button> <el-button type="primary" class="el-button--small" @click="addTopic">新增</el-button>
 <el-button size="small" type="primary" @click="Export">导出</el-button>
</div> </div>
</div> </div>
<div class="content"> <div class="content">
<div style="display: flex;flex-direction: row;align-items: center"> <div style="display: flex;flex-direction: row;align-items: center">
...@@ -175,7 +177,21 @@ ...@@ -175,7 +177,21 @@
mounted() { mounted() {
this.getList(); this.getList();
}, },
methods: { methods: {
Export() {
      this.msg.ExcelEnumIds = this.checkedCities;
      let msg = JSON.parse(JSON.stringify(this.msg));
      if (!msg.Id || msg.Id == "") {
        msg.Id = 0;
      }
      this.GetLocalFile(
        "/api/Trade/GetMemberUserListToExcel",
        msg,
        "用户管理.xls"
      );
    },
//获取商铺性质 //获取商铺性质
getProjectType() { getProjectType() {
this.apipost( this.apipost(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment