Commit 7dbdf5a4 authored by zhangjianguo's avatar zhangjianguo

1

parent 6ab785fc
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
</div> </div>
<el-button type="primary" size="small" @click="JumpDeploy" style="margin-top: 20px">可跳转小程序设置</el-button> <el-button type="primary" size="small" @click="JumpDeploy" style="margin-top: 20px">可跳转小程序设置</el-button>
<div style="text-align: center;"> <div style="text-align: center;">
<el-button type="primary" @click="active=1" >下一步</el-button> <el-button type="primary" @click="updateSet" >下一步</el-button>
</div> </div>
</div> </div>
...@@ -101,9 +101,10 @@ ...@@ -101,9 +101,10 @@
</div> </div>
</el-dialog> </el-dialog>
<!--可跳转小程序设置--> <!--可跳转小程序设置-->
<!--TODO 不确定参数是否是这样-->
<el-dialog title="小程序码" :visible.sync="rightshow" width="418px"> <el-dialog title="小程序码" :visible.sync="rightshow" width="418px">
<div style="text-align: center;"> <div style="text-align: center;">
<img src="" alt="" style="width: 200px;"> <img :src="getWeiXin" alt="" style="width: 200px;">
</div> </div>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="rightshow=false" >确定</el-button> <el-button type="primary" @click="rightshow=false" >确定</el-button>
...@@ -130,6 +131,7 @@ ...@@ -130,6 +131,7 @@
getQRcode_load:false, getQRcode_load:false,
upload_load:false, upload_load:false,
getLoginQRcode:'', getLoginQRcode:'',
getWeiXin:'',
previewQRcode:'', previewQRcode:'',
Version:'', Version:'',
} }
...@@ -173,6 +175,15 @@ ...@@ -173,6 +175,15 @@
} }
}) })
}, },
updateSet(){
this.apipost("/api/Publish/UpdateSetting", {}, res => {
if (res.data.resultCode == 1) {
this.active=1;
} else {
this.Info(res.data.message);
}
})
},
getSignQRcode(){ getSignQRcode(){
this.getQRcode_load = true this.getQRcode_load = true
this.apipost("/api/Publish/GetLoginAppletWeChat", {}, res => { this.apipost("/api/Publish/GetLoginAppletWeChat", {}, res => {
...@@ -221,7 +232,14 @@ ...@@ -221,7 +232,14 @@
// }) // })
}, },
getApplet(){ //获取小程序的二维码 getApplet(){ //获取小程序的二维码
this.rightshow=true this.rightshow=true;
this.apipost("/api/Publish/GetWeiXinShare", {}, res => {
if (res.data.resultCode == 1) {
this.getWeiXin = res.data.data;
} else {
this.Info(res.data.message);
}
})
}, },
UpdateLivePlayBtn(val){ UpdateLivePlayBtn(val){
this.apipost("/api/Tenant/UpdateLivePlayerPlugin", {'LivePlayerPlugin':val}, res => { this.apipost("/api/Tenant/UpdateLivePlayerPlugin", {'LivePlayerPlugin':val}, res => {
......
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
</div> </div>
</div> </div>
<el-button size="small" type="primary" @click="UpdateMallDistributionMsg()">保 存</el-button> <el-button size="small" type="primary" @click="UpdateMallDistributionMsg()">保 存</el-button>
<el-button size="small" type="primary">生成测试二维码</el-button> <!--<el-button size="small" type="primary">生成测试二维码</el-button>-->
</template> </template>
</div> </div>
</template> </template>
......
This diff is collapsed.
...@@ -78,8 +78,8 @@ ...@@ -78,8 +78,8 @@
label="数量" label="数量"
width="150"> width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<div>总数量:{{scope.row.TotalNum ==-1? '无限制领取':scope.row.TotalNum}}</div> <div>总数量:{{scope.row.TotalNum ==-1? '无限制领取':scope.row.TotalNum+scope.row.ResidueNum}}</div>
<div v-if="scope.row.TotalNum !=-1">剩余发放数:{{scope.row.ResidueNum}}</div> <div v-if="scope.row.TotalNum !=-1">剩余发放数:{{scope.row.TotalNum}}</div>
</template> </template>
</el-table-column> </el-table-column>
......
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