1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view :style="{ minHeight: sys.windowHeight + 'px' }"
- :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
- <tm-menubars title="城市" :shadow="0" :showback="true"></tm-menubars>
- <div class="zhuti">
- <template>
- <view>
- <tm-quickCity color="blue" :defaultValue.sync="defaultValue">
- <tm-button block theme="bg-gradient-blue-accent">显示快速城市选择</tm-button>
- </tm-quickCity>
- </view>
- </template>
- </div>
- <!-- 弹出层消息 -->
- <tm-message ref="toast"></tm-message>
- </view>
- </template>
- <script>
- import{myRequest} from '@/api/request.js'
- export default {
- data() {
- return {
- defaultValue:[],
- };
- },
- onLoad() {
-
- },
- created() {
- this.sys = uni.getSystemInfoSync();
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss">
- /deep/ .tm-menubars .body{
- background-color: #1b1b1b !important;
- }
- /deep/ .zhuti{padding: 10px 10px;}
- /deep/ .kuang{margin:0 !important;padding: 0px !important;}
- </style>
|