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.
64 lines
1.7 KiB
64 lines
1.7 KiB
![]()
7 months ago
|
<template>
|
||
|
<div class="create-offline-wrap">
|
||
|
<el-form :model="formConfig">
|
||
|
<p class="flex"><a href="" class="flex"> <img src="@/assets/site/form_linkActive.svg"
|
||
|
alt="">前往微软云</a>左上角切换有效的账户后,点击转化->点击转化目标->点击创建</p>
|
||
|
<p class="createOffdescBox mt12">您想要跟踪哪种类型的转化? 选择“离线”->点击下一步<br />
|
||
|
目标类别 选择“购买”->点击下一步<br />
|
||
|
目标名称自行设置并同步到下方输入框</p>
|
||
|
<GuipInput label="目标名称" column="column" 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">
|
||
|
.create-offline-wrap {
|
||
|
color: #6B7280;
|
||
|
.el-form-item{
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: #006AFF;
|
||
|
|
||
|
img {
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.createOffdescBox {
|
||
|
color: #6B7280;
|
||
|
text-align: left;
|
||
|
}
|
||
|
}
|
||
|
</style>
|