|
@@ -2,20 +2,23 @@
|
|
|
<view class="page-container uni-column" style="position: absolute;left: 0;right: 0;top: 0;bottom: 0">
|
|
|
<view class="option-container uni-column" style="display: flex;">
|
|
|
<!-- tab-bar -->
|
|
|
- <view class="tab-bars uni-row">
|
|
|
- <view>
|
|
|
+ <view class="tab-bars">
|
|
|
+ <!-- <view style="text-align: center;">
|
|
|
<text style="font-weight: bold;">技术负责人</text>
|
|
|
<view class="line"></view>
|
|
|
+ </view> -->
|
|
|
+ <view class="search-container uni-row">
|
|
|
+ <input type="text" v-model="keywords" placeholder="请输入关键字" />
|
|
|
+ <view class="btn" @click="handleSearch()">搜索</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 搜索框 -->
|
|
|
- <view class="search-container uni-row">
|
|
|
- <input type="text" v-model="keywords" placeholder="请输入关键字" />
|
|
|
- <view class="btn" @click="handleSearch()">搜索</view>
|
|
|
- </view>
|
|
|
+
|
|
|
|
|
|
</view>
|
|
|
- <view class="uni-row" style="background-color:#ffffff;height: 85%;padding-bottom: 12px;margin-top: 8px;">
|
|
|
+ <view class="uni-row" style=" background-color: rgb(255, 255, 255);
|
|
|
+ padding-bottom: 12px;
|
|
|
+ margin-top: 88px;overflow: auto;">
|
|
|
<view style="width: 100%;height: 100%;overflow: auto;">
|
|
|
<view v-if="optionList&& optionList.length == 0" style="align-items: center;margin-top: 30px">暂无技术员
|
|
|
</view>
|
|
@@ -99,6 +102,7 @@
|
|
|
}
|
|
|
|
|
|
const handleOptionChecked = (data) => {
|
|
|
+ console.log(data)
|
|
|
uni.$emit('addTechnicianEvent', {
|
|
|
technicianId: data.userId,
|
|
|
technicianName: data.nickName
|
|
@@ -117,10 +121,19 @@
|
|
|
}
|
|
|
|
|
|
.option-container {
|
|
|
- height: 13%;
|
|
|
- background-color: #ffffff;
|
|
|
- padding: 24rpx;
|
|
|
- border-radius: 12rpx;
|
|
|
+ // height: 13%;
|
|
|
+ // background-color: #ffffff;
|
|
|
+ // padding: 24rpx;
|
|
|
+ // border-radius: 12rpx;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: .75rem;
|
|
|
+ border-radius: .375rem;
|
|
|
+ position: fixed;
|
|
|
+ top: 52px;
|
|
|
+ left: 12px;
|
|
|
+ right: 12px;
|
|
|
+ padding-bottom: 39px;
|
|
|
+ z-index: 5;
|
|
|
}
|
|
|
|
|
|
.tab-bars {
|
|
@@ -128,7 +141,7 @@
|
|
|
|
|
|
>view {
|
|
|
flex: 1;
|
|
|
- text-align: center;
|
|
|
+ // text-align: center;
|
|
|
|
|
|
.line {
|
|
|
width: 50%;
|