123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- <template>
- <view>
- <cu-custom bgColor="bg-blue" :isBack="true" backUrl="/pages/index/index">
- <block slot="content">楼宇列表</block>
- </cu-custom>
-
- <view :style="[{top:CustomBar + 'px'}]">
- <view class="search-box">
- <view class="choose-box">
- <jp-picker v-model="parkId" rangeKey="label" rangeValue="value"
- :range="parkList" empty="选择园区">
- </jp-picker>
- </view>
-
- <view class="input-box">
- <input type="text" placeholder="请输入楼宇名称" v-model="curWord" confirm-type="search"
- ></input>
- </view>
-
-
- <text class="cuIcon-search color-white" @click="doSearch"></text>
- </view>
-
- <mescroll-body ref="mescrollRef" @init="mescrollInit" @down="downCallback" :up="upOption" @up="upCallback">
- <view class="cu-item" :class="modalName=='move-box-'+ index?'move-cur':''"
- v-for="(item, index) in dataList" :key="index" @touchstart="ListTouchStart"
- @touchmove="ListTouchMove" @touchend="ListTouchEnd" :data-target="'move-box-' + index">
-
- <view class="item-box" @click="gotoBuildInfo(item.id)">
- <view class="item-title">
-
- <view>
- <text class="line-zs"></text>{{item.buildingName}}(<text class="subtitle">{{item.parkName}}</text>)
- </view>
- <view class="btn-box" v-if="stype == 5">
- <view class="edit-botton" @click.stop="edit(item.id)">修改</view>
- <view class="del-botton" @click.stop="del(item.id)">删除</view>
- </view>
- </view>
- <view class="item-line">
- <view class="item-name">楼宇总面积:</view>
- <view class="item-content">{{item.buildingArea}}㎡</view>
- </view>
- <view class="item-line">
- <view class="item-name">楼宇企业数:</view>
- <view class="item-content">{{item.reserve3}}</view>
- </view>
- <view class="item-line">
- <view class="item-name">楼宇联系人:</view>
- <view class="item-content">{{item.buildingContacts.substring(0,5)}}({{item.reserve2}})</view>
- </view>
- </view>
-
- </view>
- </mescroll-body>
- <uni-fab :pattern=" {
- color: '#7A7E83',
- backgroundColor: '#fff',
- selectedColor: '#007AFF',
- buttonColor: '#007AFF'
- }" horizontal="right" vertical="bottom" @fabClick="add" v-if="stype == 5"></uni-fab>
- </view>
- </view>
- </template>
- <script>
- import uniFab from '@/components/uni-fab/uni-fab.vue';
- import loginService from '@/api/auth/loginService.js'
- import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js";
- import MescrollMoreItemMixin from "@/components/mescroll-uni/mixins/mescroll-more-item.js";
- export default {
- mixins: [MescrollMixin, MescrollMoreItemMixin], // 使用mixin (在main.js注册全局组件)
- onShow(option) {
- this.$auth.checkLogin()
- },
- components: {
- uniFab
- },
- data() {
- return {
- searchForm: {},
- curWord: "", //当前搜索关键词
- dataList: [], // 数据列表
- modalName: null,
- tablePage: {
- total: 0,
- currentPage: 1,
- pageSize: 10,
- orders: []
- },
- loading: false,
- parkList: [],
- parkId: '',
- stype: '', // 企业 => 3 楼宇 => 2 园区 => 1 zfadmin => 4 admin=> 5
- }
- },
- created() {
- this.stype = uni.getStorageSync('stype')
- this.getParkList()
- },
- methods: {
- // 新增
- add() {
- uni.navigateTo({
- url: '/pages/buildEdit/buildEdit'
- })
- },
-
- getParkList() {
- loginService.parkList({
- current: 1,
- size: 1000000,
- }).then(({
- data
- }) => {
- this.parkList = data.records.map((item) => {
- return {
- label: item.parkName,
- value: item.id
- }
- })
- console.log(this.parkList, '=============>')
- }).catch(e => {
- console.log(e)
- })
- },
-
- // 修改
- edit(id) {
- uni.navigateTo({
- url: '/pages/buildEdit/buildEdit?id=' + id
- })
- },
- gotoBuildInfo(id) {
- uni.navigateTo({
- url: `/pages/buildEdit/buildEdit?id=${id}&ischeck=1`
- })
- },
- // 删除
- del(id) {
- uni.showModal({
- title: '提示',
- content: '您确认要删除数据吗',
- showCancel: true,
- success: (res) => {
- if (res.confirm) {
- loginService.delete(id).then(({
- data
- }) => {
- uni.showToast({
- title: data,
- icon: "success"
- })
- this.doSearch()
- })
- }
- }
- });
- },
- /*获取数据列表 */
- upCallback(page) {
- this.loading = true
- loginService.list({
- current: page.num,
- size: page.size,
- buildingName: this.curWord,
- }).then(({
- data
- }) => {
- let curPageData = data.records
- this.mescroll.endBySize(curPageData.length, data.total);
- //如果是第一页需手动制空列表
- if (page.num == 1) {
- this.dataList = [];
- }
- //追加新数据
- this.dataList = this.dataList.concat(curPageData);
- }).catch(e => {
- //联网失败, 结束加载
- this.mescroll.endErr();
- })
- },
- // 输入监听
- inputWord(e) {
-
- },
- // 搜索
- doSearch(word) {
- this.dataList = []; // 先清空列表,显示加载进度
- this.mescroll.resetUpScroll();
- },
- // ListTouch触摸开始
- ListTouchStart(e) {
- this.listTouchStart = e.touches[0].pageX
- },
- // ListTouch计算方向
- ListTouchMove(e) {
- this.listTouchDirection = e.touches[0].pageX - this.listTouchStart > -60 ? 'right' : 'left'
- },
- // ListTouch计算滚动
- ListTouchEnd(e) {
- if (this.listTouchDirection == 'left') {
- this.modalName = e.currentTarget.dataset.target
- } else {
- this.modalName = null
- }
- this.listTouchDirection = null
- }
- }
- }
- </script>
- <style>
- .ellipsis-description {
- font-size: 12px;
- line-height: $line-height-base;
- display: -webkit-box;
- /*作为弹性伸缩盒子模型显示*/
- -webkit-line-clamp: 1;
- /*显示的行数;如果要设置2行加...则设置为2*/
- overflow: hidden;
- /*超出的文本隐藏*/
- text-overflow: ellipsis;
- /* 溢出用省略号*/
- -webkit-box-orient: vertical;
- /*伸缩盒子的子元素排列:从上到下*/
- }
-
- .item-box{
- width: 710rpx;
- margin-left: 20rpx;
- background: #FFFFFF;
- box-shadow: 0px 1px 3px 0px rgba(9,2,4,0.1);
- border-radius: 10px;
- padding-top: 20rpx;
- padding-left: 38rpx;
- padding-right: 10rpx;
- margin-top: 20rpx;
- }
-
- .item-title{
- position: relative;
- display: flex;
- justify-content: space-between;
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- align-items: center;
- }
-
- .item-line{
- display: flex;
- height: 48rpx;
- margin-top: 20rpx;
- }
-
- .subtitle{
- color: #E5880E;
- }
-
- .item-name{
- font-size: 30rpx;
- color: #333;
- }
-
- .item-content{
- color: #1497EF;
- font-size: 30rpx;
- }
-
- .btn-box{
- display: flex;
- }
-
- .line-zs{
- width: 2rpx;
- height: 30rpx;
- background: #36A7F3;
- }
-
- .edit-botton{
- width: 100rpx;
- height: 48rpx;
- line-height: 48rpx;
- color: #fff;
- font-size: 28rpx;
- margin-right: 20rpx;
- border-radius: 10rpx;
- background: #5A9EE9;
- text-align: center;
- }
-
- .del-botton{
- width: 100rpx;
- height: 48rpx;
- line-height: 48rpx;
- color: #fff;
- font-size: 28rpx;
- margin-right: 20rpx;
- border-radius: 10rpx;
- background: #F27C85;
- text-align: center;
- }
-
- .color-white{
- color: #fff;
- font-size: 40rpx;
- line-height: 60rpx;
- }
-
- .search-box{
- background: #36A7F3;
- display: flex;
- padding-left: 20rpx;
- padding-right: 20rpx;
- padding-bottom: 10rpx;
- }
-
- .input-box{
- margin-left: 20rpx;
- background: #fff;
- height: 60rpx;
- width: 420rpx;
- display: flex;
- align-items: center;
- border-radius: 30rpx;
- padding-left: 10rpx;
- margin-right: 20rpx;
- }
-
- .choose-box{
- background: #fff;
- width: 200rpx;
- border-radius: 30rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .cu-bar .search-form {
- background-color: white;
- }
- </style>
|