|
|
@@ -37,11 +37,18 @@
|
|
|
<van-dropdown-menu>
|
|
|
<van-dropdown-item title-class="van-icon van-icon-arrow" :value="value1" :options="option1" />
|
|
|
</van-dropdown-menu>
|
|
|
+
|
|
|
+ <div class="bottom">
|
|
|
+ <button-bg type="warning">分享店铺</button-bg>
|
|
|
+ <button-bg type="prim" isRight>管理商品</button-bg>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import ButtonBg from '../../components/ButtonBg.vue';
|
|
|
export default {
|
|
|
+ components: { ButtonBg },
|
|
|
data() {
|
|
|
return {
|
|
|
option1: [{ text: '全部商品', value: 0 }, { text: '新款商品', value: 1 }, { text: '活动商品', value: 2 }],
|
|
|
@@ -125,4 +132,15 @@ export default {
|
|
|
|
|
|
box-shadow: 0 2px 12px rgb(100 101 102 / 12%);
|
|
|
}
|
|
|
+
|
|
|
+.bottom {
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ .flex();
|
|
|
+ padding: 6px 20px;
|
|
|
+ .bottom(6px);
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
</style>
|