You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.6 KiB

<template>
<div class="config-appInfo-wrap">
<el-form :model="formConfig">
<p class="column">
<b>1. 应用程序客户端ID</b>
<span>微软云平台应用列表点击刚创建的应用在应用概览中即可看到</span>
</p>
<GuipInput v-model="formConfig.id" placeholder="请输入" />
<p class="column mt16">
<b>1. 开发者令牌Developer token</b>
<span>联系开户人员获取</span>
</p>
<GuipInput v-model="formConfig.merchantID" placeholder="商户号" />
</el-form>
</div>
</template>
<script>
import GuipInput from '@/components/GuipInput.vue';
// import GuipFormItem from '@/components/GuipFormItem.vue';
export default {
// 站点设置
name: '',
props: [''],
components: {
GuipInput,
// GuipFormItem,
},
data() {
return {
formConfig: {
id: '',
merchantID: ''
}
}
},
computed: {
// ...mapState(['pageTitle']) // 从Vuex映射showSidebar状态到组件的计算属性中
},
mounted() {
// store.commit('SET_PAGETITLE', '营销推广');
},
methods: {
}
}
</script>
<style scoped lang="scss">
.config-appInfo-wrap {
b {
font-weight: normal;
margin-bottom: 8px;
}
.el-form-item {
margin-bottom: 0;
}
span {
color: #8A9099;
font-size: 12px;
margin-bottom: 8px;
}
}
</style>