|
@@ -9,7 +9,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
<view class="line-box">
|
|
<view class="line-box">
|
|
<view :style="[{top:CustomBar + 'px'}]">
|
|
<view :style="[{top:CustomBar + 'px'}]">
|
|
<mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" :up="upOption"
|
|
<mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" :up="upOption"
|
|
@@ -37,9 +37,13 @@
|
|
</view>
|
|
</view>
|
|
</mescroll-body>
|
|
</mescroll-body>
|
|
</view>
|
|
</view>
|
|
- <button class="btn_add" type="primary" @click="add">新增服务</button>
|
|
|
|
- <view style="height: 40rpx;"></view>
|
|
|
|
|
|
+
|
|
|
|
+ <!-- <view style="height: 40rpx;"></view> -->
|
|
|
|
+ </view>
|
|
|
|
+ <view class="btn_add">
|
|
|
|
+ <button type="primary" @click="add">新增服务</button>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -61,16 +65,33 @@
|
|
title: "服务记录",
|
|
title: "服务记录",
|
|
isBack: true, // 是否显示返回按钮
|
|
isBack: true, // 是否显示返回按钮
|
|
bgColor: 'bg-blue', // 背景颜色
|
|
bgColor: 'bg-blue', // 背景颜色
|
|
- finish:true,
|
|
|
|
|
|
+ finish: true,
|
|
curWord: "", //当前搜索关键词
|
|
curWord: "", //当前搜索关键词
|
|
- range: [
|
|
|
|
- { value: 999, text: "全部" },
|
|
|
|
- { value: 1, text: "反馈大走访" },
|
|
|
|
- { value: 2, text: "正在办理" },
|
|
|
|
- { value: 3, text: "难以化解" },
|
|
|
|
- { value: 4, text: "持续跟踪" },
|
|
|
|
- { value: 5, text: "提请会办" },
|
|
|
|
- ],
|
|
|
|
|
|
+ range: [{
|
|
|
|
+ value: 999,
|
|
|
|
+ text: "全部"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ value: 1,
|
|
|
|
+ text: "反馈大走访"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ value: 2,
|
|
|
|
+ text: "正在办理"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ value: 3,
|
|
|
|
+ text: "难以化解"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ value: 4,
|
|
|
|
+ text: "持续跟踪"
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ value: 5,
|
|
|
|
+ text: "提请会办"
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
dataList: [], // 数据列表
|
|
dataList: [], // 数据列表
|
|
modalName: null,
|
|
modalName: null,
|
|
tablePage: {
|
|
tablePage: {
|
|
@@ -123,9 +144,11 @@
|
|
this.mescroll.endErr();
|
|
this.mescroll.endErr();
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- change(val){
|
|
|
|
|
|
+ change(val) {
|
|
this.dataList = []
|
|
this.dataList = []
|
|
- if(this.curWord == ''){this.curWord = 999}
|
|
|
|
|
|
+ if (this.curWord == '') {
|
|
|
|
+ this.curWord = 999
|
|
|
|
+ }
|
|
this.upCallback(this.tablePage)
|
|
this.upCallback(this.tablePage)
|
|
},
|
|
},
|
|
|
|
|
|
@@ -293,6 +316,7 @@
|
|
padding-right: 20rpx;
|
|
padding-right: 20rpx;
|
|
margin-top: 20rpx;
|
|
margin-top: 20rpx;
|
|
height: 75vh;
|
|
height: 75vh;
|
|
|
|
+ overflow: auto;
|
|
}
|
|
}
|
|
|
|
|
|
.mart-t {
|
|
.mart-t {
|
|
@@ -745,4 +769,5 @@
|
|
/* 标题文本颜色 */
|
|
/* 标题文本颜色 */
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
+
|
|
</style>
|
|
</style>
|