|
@@ -10,6 +10,7 @@
|
|
|
<shop-joinrecord v-if="dialogTitle==='参加的活动'" ref="refName" :operateId="businessId"></shop-joinrecord>
|
|
<shop-joinrecord v-if="dialogTitle==='参加的活动'" ref="refName" :operateId="businessId"></shop-joinrecord>
|
|
|
<shop-withdrawrec v-if="dialogTitle==='提现记录'" ref="refName" :operateId="businessId"></shop-withdrawrec>
|
|
<shop-withdrawrec v-if="dialogTitle==='提现记录'" ref="refName" :operateId="businessId"></shop-withdrawrec>
|
|
|
<shop-product-fee v-if="dialogTitle==='产品费率'" ref="refName" :operateId="businessId"></shop-product-fee>
|
|
<shop-product-fee v-if="dialogTitle==='产品费率'" ref="refName" :operateId="businessId"></shop-product-fee>
|
|
|
|
|
+ <shop-wechat-config v-if="dialogTitle==='公众号配置'" ref="refName" :businessId="businessId"></shop-wechat-config>
|
|
|
<shop-auth-state v-if="dialogTitle==='易宝商户授权'" ref="refName" :operateId="businessId"></shop-auth-state>
|
|
<shop-auth-state v-if="dialogTitle==='易宝商户授权'" ref="refName" :operateId="businessId"></shop-auth-state>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
<el-col style="padding: 10px 0 10px 0;">
|
|
<el-col style="padding: 10px 0 10px 0;">
|
|
@@ -22,7 +23,7 @@
|
|
|
:disabled="$isEmpty(this.merchantNo)">产品费率
|
|
:disabled="$isEmpty(this.merchantNo)">产品费率
|
|
|
</el-button>
|
|
</el-button>
|
|
|
<el-button size="small" plain icon="el-icon-chat-dot-round"
|
|
<el-button size="small" plain icon="el-icon-chat-dot-round"
|
|
|
- @click.stop="handleWechatConfig" :disabled="$isEmpty(this.merchantNo)">公众号配置
|
|
|
|
|
|
|
+ @click.stop="openDialog('公众号配置')" :disabled="$isEmpty(this.merchantNo)">公众号配置
|
|
|
</el-button>
|
|
</el-button>
|
|
|
<el-button size="small" plain icon="el-icon-s-check"
|
|
<el-button size="small" plain icon="el-icon-s-check"
|
|
|
@click.stop="openDialog('易宝商户授权')" :disabled="$isEmpty(this.merchantNo)">易宝商户授权
|
|
@click.stop="openDialog('易宝商户授权')" :disabled="$isEmpty(this.merchantNo)">易宝商户授权
|
|
@@ -97,6 +98,11 @@ export default {
|
|
|
ShopWechatConfig,
|
|
ShopWechatConfig,
|
|
|
shopMember, shopBills, shopJoinrecord, shopWithdrawrec, shopProductFee
|
|
shopMember, shopBills, shopJoinrecord, shopWithdrawrec, shopProductFee
|
|
|
},
|
|
},
|
|
|
|
|
+ props:{
|
|
|
|
|
+ operateId:{
|
|
|
|
|
+ type: "String"
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
merchant: {
|
|
merchant: {
|
|
@@ -394,7 +400,8 @@ export default {
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
init() {
|
|
init() {
|
|
|
- this.businessId = this.$route.params.businessId;
|
|
|
|
|
|
|
+ this.businessId = this.operateId;
|
|
|
|
|
+ // this.businessId = this.$route.params.businessId;
|
|
|
this.merchantNo = this.$route.params.no;
|
|
this.merchantNo = this.$route.params.no;
|
|
|
this.getAccountInfo();
|
|
this.getAccountInfo();
|
|
|
this.getDetail();
|
|
this.getDetail();
|