123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <template>
- <view class="container">
- <uni-card class="addUser">
- <uni-list :border="false">
- <uni-list-item :showExtraIcon="true" :extra-icon="extraIcon" title="添加成员(代领)" clickable @click="onClick"></uni-list-item>
- </uni-list>
- </uni-card>
- <text class="notes">注:代领富裕街道家庭成员</text>
- <uni-list :border="true">
- <view :id="item && item.residentId" :name="item.reqStatus" class="delBox" @touchstart="touchStart" @touchend="touchEnd" v-for="(item, index) in list" :key="index" >
- <uni-list-chat
- :class="{ left: isId == item.residentId, is0: item.reqStatus == 0, is1: item.reqStatus == 1, is2: item.reqStatus == 2, }"
- class="item"
- :avatar="item.avatar || '/static/user1.png'"
- :title="item.name"
- :note="item.reqStatusText"
- badge-positon="left">
- <button type="primary" size="mini" @click="userbtn(item)">详情</button>
- </uni-list-chat>
- <!-- <uni-icons @click="userbtn(item)" color="#fff" class="del compose" type="compose" size="28"></uni-icons> -->
- <uni-icons v-if="item.reqStatus == 1" :class="{ left: isId !== item.residentId }" @click="delbtn(item)" color="#fff" class="del" type="trash-filled" size="28"></uni-icons>
- <uni-icons v-else :class="{ left: isId !== item.residentId }" @click="delbtn(item)" color="#fff" class="del cancel" type="undo-filled" size="28"></uni-icons>
- </view>
- </uni-list>
- </view>
- </template>
- <script>
- import requestFamily from '../../api/family.js';
- export default {
- data() {
- return {
- isId: '',
- startX: 0,
- extraIcon: {
- color: '#ff8319',
- size: '20',
- type: 'plusempty'
- },
- list: [],
- // applylist: [],
- natTaskId: '',
- membersStatus: [],
- }
- },
- mounted() {},
- async onShow() {
- this.isId = '';
- this.query();
- },
- methods: {
- async query() {
- this.list = [];
- const familyInfo = await requestFamily.getFamilyInfo();
- const res = await requestFamily.getApplyUser();
- res.data.forEach(e => {
- const data = familyInfo.data.find(k => e.residentId == k.residentId);
- if (!data) familyInfo.data.push(e);
- })
- familyInfo.data.forEach(e => {
- const data = res.data.find(j => j.residentId == e.residentId);
- let reqStatusText = '';
- if (data && data.reqStatus == 0) reqStatusText = '待审核';
- if (data && data.reqStatus == 2) reqStatusText = '已拒绝';
- let obj = {};
- if (data) {
- obj = { ...data, reqStatusText }
- }else {
- obj = { ...e, reqStatusText, reqStatus: 1 };
- }
- this.$set(this.list, this.list.length, obj);
- });
- },
- // 滑动开始
- touchStart(e) {
- if (e.touches.length == 1) {
- //设置触摸起始点水平方向位置
- this.startX=e.touches[0].clientX;
- }
- },
- // 滑动结束
- touchEnd(e) {
- const data = this.list.find(j => j.residentId == e.currentTarget.id);
- if (e.changedTouches.length == 1) {
- //手指移动结束后水平位置
- var endX = e.changedTouches[0].clientX;
- let diff = endX - this.startX;
- if(Math.abs(diff) > 20){
- if(diff < 0) {
- this.isId = e.currentTarget.id;
-
- }else{
- this.isId = '';
- }
- }
- }
- },
- // 删除
- async delbtn(e) {
- console.log(e, 'eee')
- let msg = '';
- if (e.reqStatus == 1) {
- // 提交删除申请
- const res = await requestFamily.familyInfo({ ...e, reqType: '2' });
- if (res.code == 200) {
- msg = '已提交审核';
- }
- } else {
- // 取消审核信息
- const res = await requestFamily.removeApply({ residentReqId: e.residentReqId });
- if (res.code == 200) {
- msg = '已取消申请信息';
- }
- }
- this.isId = '';
- uni.showToast({
- title: msg,
- duration: 2000,
- });
- this.query();
- },
- // 添加
- onClick() {
- uni.navigateTo({
- url: '/pages/user/familyInfo'
- })
- },
- // 修改
- userbtn(e) {
- if (!e.reqStatus || e.reqStatus == '1') {
- uni.navigateTo({
- url: `/pages/user/familyInfo?residentId=${e.residentId}`
- })
- return;
- }
- uni.navigateTo({
- url: `/pages/user/familyInfo?residentReqId=${e.residentReqId}`
- })
- }
- }
- }
- </script>
- <style>
- .container {
- width: 100%;
- }
- .addUser {
- display: block;
- /* width: 90%; */
- margin: 5px auto;
- }
- .chat-custom-text {
- font-size: 12px;
- color: #999;
- width: 100%;
- text-align: center;
- display: block;
- }
- .addUser .uni-list-item__container {
- flex: none;
- margin: 0 auto;
- }
- .addUser .uni-list-item__content-title {
- color: #ff8319;
- }
- .delBox {
- display: flex;
- width: 100%;
- overflow: hidden;
- }
- .item {
- width: 100%;
- }
- .del {
- display: block;
- width: 70px;
- background: red;
- }
- .cancel {
- background: #d6d8da;
- }
- .right {
- margin-right: -70px;
- }
- .uni-icons {
- display: block;
- width: 100%;
- text-align: center;
- line-height: 2.3em;
- }
- .left {
- margin-left: -70px;
- }
- .compose {
- background: #1aad19;
- }
- .notes {
- width: 90%;
- display: block;
- margin: 5px auto;
- color: #ff8319;
- font-size: 12px;
- }
- .is0 .uni-list-chat__content-note{
- color: #1aad19;
- }
- .is1 .uni-list-chat__content-note{
- color: #2979ff;
- }
- .is2 .uni-list-chat__content-note{
- color: red;
- }
- </style>
|