Fix(云灵AI):[#5185]送礼,点击下单/送礼按钮,弹出的规格弹窗内,立即购买按钮位置太靠下
(cherry picked from commit 52817b48a8)
This commit is contained in:
@@ -421,14 +421,28 @@
|
|||||||
form-module="history"
|
form-module="history"
|
||||||
@enter-history="audioStopHandle"
|
@enter-history="audioStopHandle"
|
||||||
/>
|
/>
|
||||||
|
<ProductWindow
|
||||||
|
ref="attrWindow"
|
||||||
|
:attr="attr"
|
||||||
|
:cart-num="cart_num"
|
||||||
|
:show-ok="!showGiftBtn"
|
||||||
|
:is-gift="showGiftBtn"
|
||||||
|
:padding-bottom="'60px'"
|
||||||
|
ok-text="立即购买"
|
||||||
|
@changeFun="changeFun"
|
||||||
|
@ok="buyNowOrGiftBuyReq(1)"
|
||||||
|
@gift="buyNowOrGiftBuyReq(2)"
|
||||||
|
/>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { chatMixinsV2 } from '../mixins/chatMixinsV2.js'
|
import { chatMixinsV2 } from '../mixins/chatMixinsV2.js'
|
||||||
|
import goCartMixin from '@/mixins/goCartMixins'
|
||||||
import AiHistoryList from '../components/historyList'
|
import AiHistoryList from '../components/historyList'
|
||||||
import BottomSend from '../components/bottomSend.vue'
|
import BottomSend from '../components/bottomSend.vue'
|
||||||
import OrderItem from '../components/orderItem.vue'
|
import OrderItem from '../components/orderItem.vue'
|
||||||
|
import ProductWindow from '@/components/ProductWindow'
|
||||||
import {
|
import {
|
||||||
historyChatMessage
|
historyChatMessage
|
||||||
} from '@/api/chat/index'
|
} from '@/api/chat/index'
|
||||||
@@ -438,9 +452,10 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
AiHistoryList,
|
AiHistoryList,
|
||||||
BottomSend,
|
BottomSend,
|
||||||
OrderItem
|
OrderItem,
|
||||||
|
ProductWindow
|
||||||
},
|
},
|
||||||
mixins: [chatMixinsV2],
|
mixins: [chatMixinsV2, goCartMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
pageTitle: ''
|
pageTitle: ''
|
||||||
|
|||||||
@@ -550,7 +550,7 @@
|
|||||||
:cart-num="cart_num"
|
:cart-num="cart_num"
|
||||||
:show-ok="!showGiftBtn"
|
:show-ok="!showGiftBtn"
|
||||||
:is-gift="showGiftBtn"
|
:is-gift="showGiftBtn"
|
||||||
:padding-bottom="bottomSafeDistance + 'px'"
|
:padding-bottom="'60px'"
|
||||||
ok-text="立即购买"
|
ok-text="立即购买"
|
||||||
@changeFun="changeFun"
|
@changeFun="changeFun"
|
||||||
@ok="buyNowOrGiftBuyReq(1)"
|
@ok="buyNowOrGiftBuyReq(1)"
|
||||||
|
|||||||
Reference in New Issue
Block a user