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.
43 lines
975 B
43 lines
975 B
7 days ago
|
<template>
|
||
|
<div class="main-content12">
|
||
|
<div class="pageheader">
|
||
|
<span class="pagetitle">收款设置</span>
|
||
|
</div>
|
||
|
|
||
|
<div class="flex-common payment-area">
|
||
|
<PromptText text="按住左侧图标,上下拖动可进行排序,平台卡券只能放到最后。" :type="1" class="mb32"/>
|
||
|
<PaymentMethod :paymentList="payList" @confirm="confirmPayment"/>
|
||
|
</div>
|
||
|
|
||
|
<div class="save-button">
|
||
|
<GuipButton type="primary" :btnstyle="saveBtnStyleObj">保存</GuipButton>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
|
||
|
import PaymentMethod from "@/components/paymentMethod.vue";
|
||
|
import PromptText from "@/components/PromptText.vue";
|
||
|
import GuipButton from "@/components/GuipButton.vue";
|
||
|
|
||
|
export default {
|
||
|
name: '',
|
||
|
props:[],
|
||
|
components: {
|
||
|
GuipButton,
|
||
|
PromptText, PaymentMethod
|
||
|
|
||
|
},
|
||
|
data(){
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods:{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|