food_wechat/pages/main/order.vue
tk b3a0c1bd0e 【类 型】:fix
【主	题】:提交订单按钮 防止重复提交
【描	述】:
	[原因]:跳转页面时异步的 狂点按钮会致 添加多条订单记录
	[过程]:给按钮加状态 处于按过的状态 不再提交订单
	[影响]:
【结	束】

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
2024-06-05 19:00:42 +08:00

27 lines
410 B
Vue

<template>
<view>
<!-- topbar -->
<u-navbar title="订单查询" bgColor="#d43030" :titleStyle="{ color: '#FFF'}" :autoBack="true" placeholder>
<view class="u-nav-slot" slot="left">
<u-icon name="arrow-left" color="#fff" size="19"></u-icon>
</view>
</u-navbar>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>