Commit 4061348e authored by 黄媛媛's avatar 黄媛媛

1

parent f5cae5ae
......@@ -8,7 +8,7 @@
<div>
<div class="searchInput" style="width:250px">
<el-input style="display:inline-block;width:225px;height:30px"
placeholder="请输入规格名搜索"
placeholder="请输入供应商名称搜索"
v-model="msg.Name"
@keyup.enter.native="msg.pageIndex=1,getList()"
@clear="msg.pageIndex=1,getList()"
......
......@@ -14,7 +14,7 @@
<el-form-item label="会员等级">
<el-select style="width:293px;" size="small" v-model="userInfo.MemberGrade" placeholder="请选择活动区域">
<el-option label="普通用户" :value="0"></el-option>
<el-option v-for="(item,index) in 100" :key="index" :label="`等级${index+1}`" :value="index+1">
<el-option v-for="(item,index) in options" :key="index" :label="item.Name" :value="item.Id">
</el-option>
</el-select>
</el-form-item>
......@@ -89,6 +89,7 @@
Moblie: ''
},
tableData: [],
options:[],
};
},
created() {
......@@ -96,6 +97,7 @@
this.UserId = this.$route.query.UserId;
this.getData()
this.getList();
this.getMemberGradeList()
}
},
methods: {
......@@ -133,6 +135,15 @@
}
})
},
getMemberGradeList(){
this.loading = true;
this.apipost("/api/user/GetMemberGradeList", {Grade:0,Name:'',Enabled:1}, res => {
this.loading = false;
if (res.data.resultCode == 1) {
this.options = res.data.data
}
})
},
querySearch(queryString, cb) {
},
......
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