This commit is contained in:
2023-10-23 10:39:04 +08:00
parent 3178b8931b
commit cdc39ea09f
5 changed files with 151 additions and 34 deletions

18
App.vue
View File

@ -15,14 +15,14 @@
@import "uview-ui/index.scss"; @import "uview-ui/index.scss";
/*每个页面公共css */ /*每个页面公共css */
// page { page {
// background-color: #F4F5F7; background-color: #F4F5F7;
// } }
// .app { .app {
// width: 100%; width: 100%;
// height: 100%; height: 100%;
// text-align: justify; text-align: justify;
// color: #000000; color: #000000;
// } }
</style> </style>

3
package-lock.json generated
View File

@ -10,8 +10,7 @@
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"uview-ui": "^1.8.8" "uview-ui": "^1.8.8"
}, }
"devDependencies": {}
}, },
"node_modules/uview-ui": { "node_modules/uview-ui": {
"version": "1.8.8", "version": "1.8.8",

View File

@ -3,22 +3,20 @@
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
}, },
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages "pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{ {
"path": "pages/homepage/homepage", "path": "pages/homepage/homepage",
"style": {
"enablePullDownRefresh": false,
"navigationBarTitleText": "工单"
}
}, {
"path": "pages/index/index",
"style": { "style": {
"enablePullDownRefresh": false, "enablePullDownRefresh": false,
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },
// { // {
// "path": "pages/login/login", // "path": "pages/login/login",
// "style": { // "style": {
@ -31,24 +29,22 @@
"path": "pages/myinformation/myinformation", "path": "pages/myinformation/myinformation",
"style": { "style": {
"navigationBarTitleText": "我的", "navigationBarTitleText": "我的",
"enablePullDownRefresh": false, "enablePullDownRefresh": false
"navigationBarBackgroundColor": "#4ac4ab"
// "navigationStyle": "custom" // "navigationStyle": "custom"
} }
} }
], ],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "white",
"navigationBarTitleText": "", "navigationBarTitleText": "",
"navigationBarBackgroundColor": "#F8F8F8", "navigationBarBackgroundColor": "#18CBB3",
"backgroundColor": "#F8F8F8" "backgroundColor": "#F8F8F8"
}, },
"uniIdRouter": {}, "uniIdRouter": {},
"tabBar": { "tabBar": {
"color": "#7A7E83", "color": "#7A7E83",
"selectedColor": "#435950", "selectedColor": "#435950",
"borderStyle": "black", "borderStyle": "white",
"backgroundColor": "#ffffff", "backgroundColor": "#ffffff",
"list": [{ "list": [{
"pagePath": "pages/homepage/homepage", "pagePath": "pages/homepage/homepage",
@ -56,7 +52,6 @@
"selectedIconPath": "static/homepage.png", "selectedIconPath": "static/homepage.png",
"text": "首页" "text": "首页"
}, },
{ {
"pagePath": "pages/myinformation/myinformation", "pagePath": "pages/myinformation/myinformation",
"iconPath": "static/myinformation.png", "iconPath": "static/myinformation.png",

View File

@ -1,7 +1,16 @@
<template> <template>
<view class="app"> <view class="app">
<view class="content"> <u-tabs :list="tabslist" :is-scroll="false" :current="tabscurrent" @change="tabschange" inactive-color='#fff'
111 active-color='#fff'></u-tabs>
<view class="top">
<u-dropdown active-color='#26A888'>
<u-dropdown-item v-model="optionindex" :title="optionname" :options="options"
@change='dropitemchange'></u-dropdown-item>
</u-dropdown>
<view class="inputs">
<!-- <i class="icon"></i> -->
<!-- <input type="text" name="" id="" class="input" placeholder="搜索" v-model="query.label"> -->
</view>
</view> </view>
</view> </view>
</template> </template>
@ -10,16 +19,130 @@
export default { export default {
data() { data() {
return { return {
tabslist: [{
name: '全部工单'
}, {
name: '我的工单'
}, {
name: '已完成工单',
}],
tabscurrent: 0,
optionindex: 1,
optionname: '待处理',
options: [{
label: '待处理',
value: 1,
}, {
label: '已完成',
value: 2,
}],
query: {
label: '',
}
} }
}, },
onLoad() { onLoad() {
}, },
methods: { methods: {
tabschange(index) {
this.tabscurrent = index;
},
dropitemchange(e) {
this.optionname = this.options.find(m => m.value === e).label
console.log(e)
},
} }
} }
</script> </script>
<style lang="scss"> <style lang="scss">
.app {
width: 100%;
// margin: 20rpx auto;
padding: 0 0 100rpx 0;
background-color: #fff;
font-size: 24rpx;
::v-deep .u-tabs {
background-color: #18CBB3 !important;
}
.top {
width: 90%;
margin: 0 auto;
display: flex;
height: 84rpx;
justify-content: space-around;
.inputs {
background-color: #fff;
width: 65%;
// height: 60rpx;
// border: 1px solid #F6F6F6;
height: 0rpx;
border-radius: 5rpx;
background-color: #ffffff;
z-index: 999;
position: relative;
top: 50%;
transform: translateY(-50%);
background: #F6F6F6;
border-radius: 38rpx;
.input {
margin: 0 auto;
position: absolute;
height: 60rpx;
// top: 8%;
left: 13%;
width: 80%;
font-size: 26rpx;
color: #000000;
}
.icon {
background: url(@/static/sousuo.png) no-repeat;
width: 30rpx;
height: 28rpx;
background-size: cover;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 3%;
}
}
::v-deep .u-flex {
width: 100% !important;
}
::v-deep .u-dropdown__content {
overflow-y: scroll !important;
height: 500rpx;
.u-flex {
width: 0 !important;
}
}
::v-deep .u-dropdown__content__mask {
background: none !important;
}
::v-deep .u-dropdown__menu__item {
width: 100% !important;
}
::v-deep .u-cell__value {
flex: 0;
}
::v-deep .u-dropdown {
:v-deep .u-dropdown__menu {}
}
::v-deep .u-cell-box {}
}
}
</style> </style>

BIN
static/sousuo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB