| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- <template>
- <view class="container">
- <!-- 头部搜索栏区域 -->
- <view class="search">
- <uni-search-bar placeholder="请输入搜索内容" cancelButton="none" v-model="searchValue" @input="input"
- @clear="clear" @blur="blur">
- </uni-search-bar>
- </view>
- <!-- 新增考勤组区域 -->
- <view class="add">
- <view class="icon" @click="handleAdd">
- <img src="../../static/add.png">
- </view>
- <view class="title" @click="handleAdd">
- 新增考勤组
- </view>
- </view>
- <!--考勤组列表区域 -->
- <view class="group">
- <uni-swipe-action>
- <!-- 每一个考勤组区域 -->
- <uni-swipe-action-item :auto-close="true" :right-options="options" @click="onClick(item.id)"
- v-for="item in list" :key="item.id">
- <view class="group_item">
- <uni-collapse :ref="item.id+'collapse'">
- <uni-collapse-item :title="item.title" open>
- <view class="content">
- <view class="num">
- 随机人数:{{item.num}}人
- </view>
- <!-- 树状结构区域 -->
- <view class="tree">
- <dropDown :node="item.textArr" @nodechange="nodechange(item.id+'collapse')">
- </dropDown>
- </view>
- </view>
- </uni-collapse-item>
- </uni-collapse>
- </view>
- </uni-swipe-action-item>
- </uni-swipe-action>
- </view>
- <!-- 新增考勤组弹窗区域 -->
- <uni-popup ref="popup" :is-mask-click="false">
- <view class="popup_box">
- <view class="header">
- 新增考勤组
- </view>
- <view class="body">
- <view class="name">
- <input type="text" placeholder="请输入考勤组名称">
- </view>
- <view class="scope">
- <view class="notes">
- 请选择考勤组范围
- </view>
- <view class="icon">
- <img src="./imgs/bottom.png">
- </view>
- </view>
- <view class="num">
- <view class="count">
- <view class="icon">
- <img src="./imgs/people.png">
- </view>
- <view class="info">
- 680人
- </view>
- </view>
- <view class="input">
- <input type="text" placeholder="请输入打卡人数">
- </view>
- </view>
- </view>
- <view class="foot">
- <view class="left" @click="handleCancel">
- 取消
- </view>
- <view class="right" @click="handleSave">
- 保存
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- searchValue: "",
- options: [{
- text: '删除',
- style: {
- backgroundColor: '#D43030'
- }
- }],
- list: [{
- id: 1,
- title: "全体学生",
- num: 56,
- textArr: [{
- "name": "墨轩湖校区",
- "id": "1",
- "open": false,
- "children": [{
- "name": "学生",
- "id": "1-1",
- "open": false,
- "children": [{
- "name": "计算机专业",
- "id": "1-1-1",
- "open": false,
- "children": [{
- "name": "陈志斌",
- "id": "1-1-1-1",
- "open": false,
- "children": [],
- },
- {
- "name": "华志杰",
- "id": "1-1-1-2",
- "open": false,
- "children": [],
- },
- {
- "name": "刘子麟",
- "id": "1-1-1-3",
- "open": false,
- "children": [],
- },
- ],
- },
- {
- "name": "文法分院",
- "id": "1-1-2",
- "open": false,
- "children": [],
- },
- ]
- },
- {
- "name": "老师",
- "id": "1-2",
- "open": false,
- "children": [{
- "name": "辅导员",
- "id": "1-2-1",
- "open": false,
- "children": [],
- }]
- }
- ]
- }, ],
- },
- {
- id: 2,
- title: "后勤人员",
- num: 36,
- textArr: [{
- "name": "黄家湖校区",
- "id": "1",
- "open": false,
- "children": [{
- "name": "商户",
- "id": "1-1",
- "open": false,
- "children": [{
- "name": "食堂",
- "id": "1-1-1",
- "open": false,
- "children": [{
- "name": "饭",
- "id": "1-1-1-1",
- "open": false,
- "children": [],
- },
- {
- "name": "水",
- "id": "1-1-1-2",
- "open": false,
- "children": [],
- },
- {
- "name": "零食",
- "id": "1-1-1-3",
- "open": false,
- "children": [],
- },
- ],
- },
- {
- "name": "商业街",
- "id": "1-1-2",
- "open": false,
- "children": [],
- },
- ]
- },
- {
- "name": "清洁工",
- "id": "1-2",
- "open": false,
- "children": [{
- "name": "园丁",
- "id": "1-2-1",
- "open": false,
- "children": [],
- }]
- }
- ]
- }, ],
- },
- ]
- };
- },
- onLoad() {
- // this.$refs.popup.open()
- },
- methods: {
- // 点击弹窗保存按钮回调
- handleSave() {
- this.$refs.popup.close()
- },
- // 点击弹窗取消按钮回调
- handleCancel() {
- this.$refs.popup.close()
- },
- // 点击新增考勤组按钮回调
- handleAdd() {
- console.log(123);
- this.$refs.popup.open()
- },
- // 点击树状节点回调
- nodechange(ref) {
- this.$nextTick(() => {
- setTimeout(() => {
- this.$refs[ref][0].resize()
- }, 200)
- })
- },
- // 点击右侧删除按钮回调
- onClick(id) {
- console.log(id);
- uni.showModal({
- title: '提示',
- content: '确定删除该考勤组吗?',
- success: function(res) {
- if (res.confirm) {
- console.log('用户点击确定');
- uni.showToast({
- title: "删除成功",
- icon: 'success'
- })
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- },
- // 搜索框失焦回调
- blur(res) {
- uni.showToast({
- title: '搜索:' + res.value,
- icon: 'none'
- })
- },
- // 搜索框输入时的回调
- input(res) {
- console.log('----input:', res)
- },
- // 清除搜索框内容时的回调
- clear(res) {
- uni.showToast({
- title: 'clear事件,清除值为:' + res.value,
- icon: 'none'
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- padding-top: 20rpx;
- .search {
- box-sizing: border-box;
- padding: 0 30rpx;
- width: 750rpx;
- height: 90rpx;
- border-radius: 170rpx;
- background-color: #fff;
- }
- .add {
- margin-top: 20rpx;
- display: flex;
- align-items: center;
- width: 750rpx;
- height: 110rpx;
- background-color: #fff;
- .icon {
- margin: 0 20rpx 0 30rpx;
- width: 36rpx;
- height: 36rpx;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .title {
- font-size: 30rpx;
- color: #0082FC;
- }
- }
- .group {
- margin-top: 20rpx;
- background-color: #F2F2F2;
- .group_item {
- margin-bottom: 20rpx;
- width: 750rpx;
- background-color: #fff;
- .content {
- padding-bottom: 50rpx;
- .num {
- margin-left: 30rpx;
- height: 50rpx;
- font-size: 24rpx;
- color: #808080;
- }
- .tree {}
- }
- }
- }
- .popup_box {
- width: 630rpx;
- height: 610rpx;
- border-radius: 33rpx;
- background-color: #fff;
- .header {
- width: 630rpx;
- height: 97rpx;
- line-height: 97rpx;
- text-align: center;
- font-size: 32rpx;
- font-weight: 500;
- border-bottom: 1rpx solid #E6E6E6;
- }
- .body {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 630rpx;
- height: 414rpx;
- border-bottom: 1rpx solid #E6E6E6;
- .name {
- margin-top: 42rpx;
- width: 570rpx;
- height: 80rpx;
- border-radius: 10rpx;
- border: 1rpx solid #ccc;
- input {
- padding: 0 24rpx;
- width: 90%;
- height: 100%;
- font-size: 28rpx;
- color: #B3B3B3;
- }
- }
- .scope {
- display: flex;
- align-items: center;
- margin-top: 32rpx;
- width: 570rpx;
- height: 80rpx;
- border-radius: 10rpx;
- border: 1rpx solid #ccc;
- .notes {
- padding-left: 24rpx;
- flex: 5;
- font-size: 28rpx;
- color: #808080;
- }
- .icon {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- img {
- width: 25rpx;
- height: 20rpx;
- }
- }
- }
- .num {
- display: flex;
- align-items: center;
- margin-top: 32rpx;
- width: 570rpx;
- height: 80rpx;
- border-radius: 10rpx;
- border: 1rpx solid #ccc;
- .count {
- flex: 2;
- display: flex;
- align-items: center;
- height: 50rpx;
- border-right: 1rpx solid #A6A6A6;
- .icon {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- img {
- width: 30rpx;
- height: 30rpx;
- }
- }
- .info {
- flex: 2;
- font-size: 28rpx;
- }
- }
- .input {
- flex: 4;
- input {
- padding: 0 45rpx;
- width: 80%;
- height: 100%;
- font-size: 28rpx;
- }
- }
- }
- }
- .foot {
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- width: 630rpx;
- height: 99rpx;
- font-size: 28rpx;
- .left {
- flex: 1;
- text-align: center;
- border-right: 1rpx solid #CCC;
- }
- .right {
- flex: 1;
- text-align: center;
- color: #2A82E4;
- }
- }
- }
- }
- // 解决输入框不居中问题
- ::v-deep .uni-searchbar {
- padding: 10rpx;
- }
- // 解决左滑区域突出问题
- ::v-deep .uni-swipe_button-group {
- margin-bottom: 20rpx;
- }
- // 清除树状组件下边框
- ::v-deep .uni-collapse-item__wrap-content.uni-collapse-item--border {
- border-bottom: none;
- }
- </style>
|