| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <view class="content">
- 历史记录
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tel: 13525222222,
- formData: {
- pswd: ''
- },
- show: false,
- list: [
- {
- text: '切换账号',
- fontSize: '28'
- },
- {
- text: '注册',
- fontSize: '28'
- }
- ]
- };
- },
- onLoad() {},
- onShow() {},
- methods: {
- clickSheet() {
- this.show = true;
- },
- doLogin() {
-
- this.$u.route({
- url: 'pages/home/home',
- type: 'switchTab'
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .content {
- overflow: hidden;
- .status_bar {
- height: var(--status-bar-height);
- width: 100%;
- }
- &_body {
- margin-top: 170rpx;
- text-align: center;
- &_tel {
- margin-top: 10rpx;
- }
- &_pswd {
- margin-top: 40rpx;
- }
- &_btn {
- margin-top: 120rpx;
- padding: 0 20rpx;
- }
- }
- &_footer {
- position: absolute;
- bottom: 50rpx;
- width: 100%;
- padding: 0 30rpx;
- text {
- color: #2979ff;
- }
- }
- }
- </style>
- <style scoped>
- >>> .u-border-top:after {
- border-top-width: 0px;
- }
- </style>
|