Commit 2610bd18 authored by Mac's avatar Mac

1

parent 632a44c9
...@@ -266,9 +266,9 @@ ...@@ -266,9 +266,9 @@
this.msg.ExcelEnumIds=this.checkedCities; this.msg.ExcelEnumIds=this.checkedCities;
let msg = JSON.parse(JSON.stringify(this.msg)); let msg = JSON.parse(JSON.stringify(this.msg));
this.GetLocalFile( this.GetLocalFile(
"/api/user/GetDistributorRemitListToExcel", "/api/SmallShops/GetSmallShopsRemitListToExcel",
msg, msg,
"分销提现.xls" "微店提现.xls"
); );
}, },
ChangeOpenidState(index,row){ ChangeOpenidState(index,row){
......
...@@ -100,6 +100,7 @@ ...@@ -100,6 +100,7 @@
background background
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
:page-size="msg_t.pageSize" :page-size="msg_t.pageSize"
:current-page.sync="msg_t.pageIndex"
layout="prev, pager, next" layout="prev, pager, next"
:total="count"> :total="count">
</el-pagination> </el-pagination>
...@@ -140,7 +141,8 @@ ...@@ -140,7 +141,8 @@
msg_t:{ msg_t:{
pageIndex:1, pageIndex:1,
pageSize:10, pageSize:10,
Name:'' Name:'',
SmallShopId:0,
}, },
count:0, count:0,
loading:false, loading:false,
...@@ -152,7 +154,6 @@ ...@@ -152,7 +154,6 @@
created(){ created(){
this.getrigger() this.getrigger()
this.getrigger2() this.getrigger2()
this.getList()
setTimeout(()=>{ setTimeout(()=>{
if(this.$route.query.ID){ if(this.$route.query.ID){
this.gettRepositoryList(this.$route.query.ID) this.gettRepositoryList(this.$route.query.ID)
...@@ -201,7 +202,13 @@ ...@@ -201,7 +202,13 @@
}) })
}, },
choice(){ choice(){
this.options2.forEach(x=>{
if(x.ID == this.msg.DiscountCouponId){
this.msg_t.SmallShopId = x.SmallShopId
}
})
this.category = true; this.category = true;
this.msg_t.pageIndex =1
this.getList() this.getList()
}, },
getList(){ getList(){
...@@ -236,6 +243,7 @@ ...@@ -236,6 +243,7 @@
}, },
search(){ search(){
this.msg_t.pageIndex =1
this.getList(); this.getList();
}, },
preserve(formName){ preserve(formName){
......
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
</el-checkbox-group> </el-checkbox-group>
</div> </div>
<div style="width: 30%;display: flex;flex-direction: row;margin-top: 5px;justify-content: center;color: #666666" v-if="ByPhone.length==0">暂无数据~</div>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
...@@ -87,8 +88,9 @@ ...@@ -87,8 +88,9 @@
this.$router.go(-1) this.$router.go(-1)
}, },
lookup(){ lookup(){
this.msg.UserIds = [];//重新选择的时候清楚之前的
this.loading = true; this.loading = true;
this.apipost("/api/User/GetListByPhoneOrAliasName",{'AliasName':this.AliasName}, res => { this.apipost("/api/User/GetListByPhoneOrAliasName",{'AliasName':this.AliasName,SmallShopId:this.record.SmallShopId}, res => {
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
......
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