|
|
- <template>
- <view class="page">
-
- <navbar />
- <view class="Carousel-image">
- <view class="imgs">
- <uv-swiper :list="list" indicator indicatorMode="dot" circular height="420"></uv-swiper>
- </view>
-
-
- <view class="search">
- <view class="center-area">
- <image style="margin-right: 20rpx;" src="@/static/image/home/search-icon.png"></image>
- <input v-model="queryParams.title" placeholder="输入单号进行搜索" />
- </view>
- </view>
-
- </view>
-
- <view class="festival">
- <view class="indus">
- <view class="horn">
- <uv-icon name="volume" size=""></uv-icon>
- </view>
- <view class="words">
- 中秋节放假及工作安排通知
- </view>
- </view>
- <view class="arrow">
- <uv-icon name="arrow-right"></uv-icon>
- </view>
- </view>
-
-
- <uv-divider text="" textColor="#2979ff" lineColor="grey" textSize="1"></uv-divider>
-
- <view class="task">
- <view class="backimg" @click="$utils.navigateTo('/pages_order/order/WorkOrderListitem')" >
- <view class="Work-Order">
- 所有工单
- </view>
- </view>
- </view>
-
- <uv-divider text="" textColor="#2979ff" lineColor="grey" textSize="1"></uv-divider>
-
- <view class="Urgent-Work-Order">
- <view class="Urgent-Work">
- 紧急工单
- </view>
-
- <WorkOrderitem
- v-for="(item,index) in 2 "
- />
-
-
- </view>
- <PrivacyAgreementPoup/>
-
- <tabber select="0"/>
- </view>
- </template>
-
- <script>
- import PrivacyAgreementPoup from '@/components/config/PrivacyAgreementPoup.vue'
- import Position from '@/utils/position.js'
- import tabber from '@/components/base/tabbar.vue'
- import productList from '@/components/user/productList.vue'
- import WorkOrderitem from '@/components/work/WorkOrderitem.vue'
-
- import {
- mapGetters
- } from 'vuex'
- // import selectArea from '../../components/selectArea.vue';
- export default {
- components: {
- tabber,
- productList,
- PrivacyAgreementPoup,
- WorkOrderitem,
- },
- data() {
- return {
- list: [
- 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
- 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
- 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
- ],
- area: '长沙',
- text: '长沙市刘师傅在服务过程中客户投诉“服务过程中有不文明的行为”.....',
- queryParams: {
- pageNo: 1,
- pageSize: 10,
- title: ''
- },
- bannerList: [{
- url: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
- },
- {
- url: 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
- },
- {
- url: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
- },
- ],
- }
- },
- computed: {
- },
- methods: {
- }
- }
- </script>
-
- <style scoped lang="scss">
- .Carousel-image {
- position: relative;
- display: inline-block;
- width: 100%;
-
- .search {
- height: 82rpx;
- width: 710rpx;
- background: #FFFFFF;
- margin: 20rpx auto;
- border-radius: 41rpx;
- box-sizing: border-box;
- padding: 0 15rpx;
- display: flex;
- align-items: center;
- position: absolute;
- top: 10px;
- left: 10px;
-
- //搜素框
- .center-area {
- display: flex;
- flex-wrap: nowrap;
- align-items: center;
- width: calc(100% - 290rpx);
- margin-left: 30rpx;
-
- image {
- width: 26rpx;
- height: 26rpx;
- }
- }
- }
- }
-
- .festival {
- margin-top: 20rpx;
- display: flex;
- justify-content: space-between;
-
- .indus {
- display: flex;
-
- .words {
- margin: 0rpx 5rpx;
- font-size: 27rpx;
- opacity: 0.8;
- }
-
- .horn {
- margin: 5rpx 10rpx;
- }
- }
-
- .arrow {
- padding: 8rpx;
- }
-
- }
-
- .task {
-
- .backimg {
- width: 100%;
- height: 320rpx;
- background-color: greenyellow;
-
- .Work-Order {
- margin: 20rpx;
-
- }
- }
- }
-
- .page {
- & /deep/ .uv-icon__icon {
- font-size: 30rpx !important;
- }
- }
- </style>
|