制作订单详情页面

This commit is contained in:
2025-04-26 14:40:25 +08:00
parent 6ae3444ed9
commit 0ab586dc2f
11 changed files with 56 additions and 14 deletions

View File

@ -35,7 +35,7 @@
<text class="text-999 ml20">随时退 过期自动退</text>
</view>
<view>
<u-button @click="mpLogin" hover-class="none"
<u-button @click="chooseSpec" hover-class="none"
:customStyle="{width: '116rpx', height: '46rpx', fontSize: '24rpx', backgroundColor: themeColor, color: '#fff', border: 'none', paddingTop: '8rpx'}"
:hair-line="false"
shape="circle">
@ -69,7 +69,7 @@
<view>门店</view>
</view>
<view class="u-margin-left-64 flex1">
<u-button @click="mpLogin" hover-class="none"
<u-button hover-class="none"
:customStyle="{height: '92rpx', fontSize: '24rpx', backgroundColor: themeColor, color: '#fff', border: 'none', paddingTop: '8rpx'}"
:hair-line="false"
shape="circle">
@ -77,6 +77,8 @@
</u-button>
</view>
</view>
<shop-spec v-model="showSpec" @close="showSpec = false"></shop-spec>
</view>
</template>
@ -94,6 +96,12 @@
title: "身无彩凤双飞翼,心有灵犀一点通",
}
],
showSpec: false
}
},
methods: {
chooseSpec() {
this.showSpec = true
}
}
}