Commit 53e326b6 by caoyanzhi

Merge branch 'feature/8月-奥莱定制' of http://git.gicdev.com/marketing-web/marketing…

Merge branch 'feature/8月-奥莱定制' of http://git.gicdev.com/marketing-web/marketing into feature/8月-奥莱定制
parents 7f023b82 997da883
<template>
<el-dialog title="新增门店" :visible.sync="show" width="600px" :before-close="handleClose">
<el-dialog title="新增门店" :visible.sync="show" width="600px" :before-close="handleClose" @opened="onOpen">
<el-form :model="form" ref="form">
<el-form-item label="门店范围:">
<dm-store-selector ref="se" :options="[5]" @saving="saving" :uuid.sync="uuid"></dm-store-selector>
<dm-store-selector ref="se" storeTypeDisabled :options="[5]" @saving="saving" :uuid.sync="uuid"></dm-store-selector>
</el-form-item>
</el-form>
<span slot="footer">
......@@ -31,6 +31,10 @@ export default {
};
},
methods: {
onOpen() {
this.$refs.se.storeType = 5;
console.log(this.$refs.se.storeType);
},
handleClose() {
this.uuid = '';
this.$nextTick(_ => {
......
......@@ -2,9 +2,9 @@
<el-dialog title="核销工具二维码" :visible.sync="show" width="600px" :before-close="close">
<div v-loading="loading" class="links-block">
<div class="links__body">
<div class="links__body--url">{{ src }}</div>
<div class="links__body--url">{{ link }}</div>
<div class="links__body--btn">
<el-button v-clipboard:text="src" v-show="src" type="text"><i class="iconfont icon-lianjie font-14"></i> 复制链接</el-button>
<el-button v-clipboard:text="link" v-show="link" type="text"><i class="iconfont icon-lianjie font-14"></i> 复制链接</el-button>
</div>
</div>
<div class="link__divider"></div>
......
......@@ -149,7 +149,6 @@ export default {
this.link = res.result.link;
this.linkUrl = res.result.url;
}
console.log(res.result, 'link');
this.linkShow = true;
});
}
......
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