Commit caa2de12 by crushh

udpate: 企微支付secret

parent d38b9c7a
......@@ -63,6 +63,13 @@ module.exports = {
pathRewrite: {
'^/haoban-task-manage-web': ''
}
}
},
'/haoban-app-aggregation-web/':{
target: 'https://www.gicdev.com/haoban-app-aggregation-web/',
changeOrigin: true,
pathRewrite: {
'^/haoban-app-aggregation-web/': ''
}
},
}
}
......@@ -100,6 +100,12 @@
<el-input class="m-l-10 w-399" maxlength="200" v-model="application.secretVal"></el-input>
<span v-if="haobanObj.updateTime" class="m-l-20 font-12 color-909399">最后一次授权:{{ application.updateTime | formatTimeStamp }}</span>
</div>
<div class="m-b-20 secret-cell" v-show="paymentObj.secretVal">
<span class="inline-block w-127">
<span class="font-14 color-606266">企微支付secret:</span>
</span>
<el-input class="m-l-10 w-399" maxlength="200" v-model="paymentObj.secretVal"></el-input>
</div>
<div class="secret-cell m-b-20">
<el-tooltip class="item" effect="dark" content="企业微信中【应用管理】关联的会员小程序secret,请复制后更新至此处。首次使用好办请输入。" placement="top-start"> <span style="cursor: pointer;padding-bottom: 2px; border-bottom: 1px dashed #2F54EB;" class="font-14 color-606266">会员小程序secret:</span></el-tooltip>
<span class="p-l-10 font-14 color-303133 font-w-500">会员小程序信息</span>
......@@ -294,7 +300,8 @@ export default {
application: {
secretVal: '',
updateTime: null
} // 待开发应用secret
}, // 待开发应用secret
paymentObj: {}
};
},
computed: {},
......@@ -635,6 +642,9 @@ export default {
if (ele.secretType == 5) {
this.application = ele;
}
if (ele.secretType == 6) {
this.paymentObj = ele;
}
});
}
return false;
......
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