123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="bazaar">
- <view class="btn" @click="$goBack(2,'/pages/bazaar/VaseYard/VaseYard')">
- <text>瓶码/箱码查询</text>
- <uni-icons type="arrow-right" size="20" color='#bcbcbc'></uni-icons>
- </view>
- <!-- <view class="btn" @click="$goBack(2,'/pages/bazaar/SecurityCode')">
- <text>防伪码反查询</text>
- <uni-icons type="arrow-right" size="20" color='#bcbcbc'></uni-icons>
- </view>
- <view class="btn" @click="$goBack(2,'/pages/bazaar/bodyOfBottle/bodyOfBottle')">
- <text>瓶身码反查询</text>
- <uni-icons type="arrow-right" size="20" color='#bcbcbc'></uni-icons>
- </view> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .bazaar{
- padding: 0 20rpx;
- .btn{
- padding: 30rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx solid #bcbcbc;
- &:last-child{
- border-bottom: 0;
- }
- }
- }
- </style>
|