123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <template>
- <view class="container">
- <view class="top">
- <view class="searchBar">
- <input class="inputArea" @input="keywordsHandle" type="text" v-model="keywords" placeholder="搜索当事人" placeholder-class="placeholder" />
- <view class="searchActiver" @click="searchHandle">
- <image class="searchIcon" src="../../static/search.png" mode=""></image>
- </view>
- </view>
- <view class="tabWrap">
- <view @click="tabClick(0)" :class="[currentTabIndex==0?'tab on':'tab']">全院</view>
- <view @click="tabClick(1)" :class="[currentTabIndex==1?'tab on':'tab']">当前病区</view>
- </view>
- </view>
- <view class="content">
- <index-list :padding='padding' v-on:listClick="listClickHandle" :checkedResponsibleList='checkedResponsibleList' :options="list"></index-list>
- </view>
- <view class="bottom">
- <view class="selectAll" @click="selectAllHandle">
- <image v-if="selectAll" class="icon" src="../../static/selectAll.png" mode=""></image>
- <image v-if="!selectAll" class="icon" src="../../static/selectAllnoclor.png" mode=""></image>
- <text :class="[selectAll?'text on':'text']">{{selectAll?'取消':'全选'}}</text>
- </view>
- <view class="cancelBtn" @click="cancelCheck">取消</view>
- <view class="comfirm" @click="sureCheck">确定</view>
- </view>
- </view>
- </template>
- <script>
- import indexList from '../../components/index-list/index-list.vue';
- export default {
- data() {
- return {
- currentTabIndex:1,
- checkedResponsibleListTemp:[],
- checkedResponsibleListTemp_all:[],
- checkedResponsibleListTemp_dept:[],
- checkedResponsibleList:[],//已选择的当事人列表
- list:[],
- checkId:'',
- padding:0,
- deptId:'',
- keywords:'',
- deptIdTemp:'',
- selectAll:false,
- isFromCheckMainPoints:false,
- };
- },
- onLoad({deptId,isFromCheckMainPoints,checkId,isZichaDucha}) {
- this.deptIdTemp = deptId;
- this.isZichaDucha = isZichaDucha?JSON.parse(isZichaDucha):false;
- this.isFromCheckMainPoints = isFromCheckMainPoints;
- if(checkId)this.checkId = checkId
- this.tabClick(this.currentTabIndex);
- },
- onShow() {
- const {responsibleList} = this.$store.state;
- // console.log({responsibleList});
- this.checkedResponsibleList = responsibleList.checkedResponsibleList;
- },
- computed:{
- },
- mounted(){
-
- this.getResponsibleList();
- //设置当事人页面滚动距离顶部距离
- uni
- .createSelectorQuery()
- .in(this)
- .select('.top')
- .boundingClientRect()
- .exec(res => {
- if (res[0]) {
- this.padding = res[0].height;
- // resolve(res[0].top);
- } else {
- that.$nextTick(() => {
- ++count <= 8 ? getHeight() : this.padding = 0;
- });
- }
- });
- },
- onUnload(){
- this.checkedResponsibleList=[];
- },
- methods:{
- bindClick(){
-
- },
- selectAllHandle(){
- if(!this.selectAll){
- this.selectAll = true;
- const getResponsibleListIds = (arr,index)=>{
- if(index == arr.length-1){
- return arr[index].data
- }
- return arr[index].data.concat(getResponsibleListIds(arr,index+1))
- }
- this.checkedResponsibleList = getResponsibleListIds(this.list,0);
- }else {
- this.selectAll = false;
- this.checkedResponsibleList = [];
- }
-
- // console.log('selectAllHandle',this.checkedResponsibleList);
- },
- keywordsHandle(e){
- this.keywords = e.target.value;
- this.getResponsibleList();
- },
- searchHandle(){
- this.getResponsibleList();
- },
- //获取当时人列表
- getResponsibleList(){
- this.$store.dispatch({
- type: "responsibleList/commActions",
- payload: {
- key: "getResponsibleList",
- data: {
- deptId:this.deptId,
- keywords:this.keywords
- },
- }
- }).then((data)=>{
- this.list = data;
- })
- },
- //当事人列表点击handle
- listClickHandle(checkedList){
- if(this.currentTabIndex == 0){
- //全院
- this.checkedResponsibleListTemp_all = checkedList;
- }
-
- if(this.currentTabIndex == 1){
- //当前病区
- this.checkedResponsibleListTemp_dept = checkedList;
- }
-
- // console.log(this.currentTabIndex,this.checkedResponsibleListTemp_all,this.checkedResponsibleListTemp_dept)
-
- },
- sureCheck(){
-
- const responsibleUserIds = this.currentTabIndex == 0?this.checkedResponsibleListTemp_all.map(item=>item.id):this.checkedResponsibleListTemp_dept.map(item=>item.id);
- const responsibleUserNames = this.currentTabIndex == 0?this.checkedResponsibleListTemp_all.map(item=>item.main):this.checkedResponsibleListTemp_dept.map(item=>item.main);
-
- if(this.isFromCheckMainPoints){
- //批量保存当事人
- const {checkMainPoints:{detailList}} = this.$store.state;
- const detailListFlat = (arr,index)=>{
- if(index == arr.length-1){
- return arr[index].responseList
- }
- return arr[index].responseList.concat(detailListFlat(arr,index+1))
- }
- const tempCheckIds = detailListFlat(detailList,0);
- const checkIds = tempCheckIds.map(item=>item.id);
-
-
-
-
- this.$store.dispatch({
- type: "responsibleList/commActions",
- payload: {
- key: "bindCheckDetailResponsibleUser",
- data: {
- responsibleUserId:responsibleUserIds.join(','),
- responsibleUserName:responsibleUserNames.join(','),
- checkIds:checkIds,
- planType:this.isZichaDucha?1:0,
- },
- }
- }).then((data)=>{
- uni.showModal({
- title: '提示',
- content: '批量分配当事人成功!',
- showCancel:false,
- success:(res)=>{
- if (res.confirm) {
- //更新查核要点页数据
- this.$store.commit('checkMainPoints/comChangeState',{key:'ifUpdate',data:true});
- uni.navigateBack({
- delta: 1
- });
- }
- }
- });
- })
- }else {
-
- if(!this.isZichaDucha){
- //非自查督查时提交数据
- this.$store.dispatch({
- type: "responsibleList/commActions",
- payload: {
- key: "bindCheckDetailResponsibleUser",
- data: {
- responsibleUserId:responsibleUserIds.join(','),
- responsibleUserName:responsibleUserNames.join(','),
- checkIds:[parseInt(this.checkId)],
- },
- }
- });
- }
-
- this.$store.commit('responsibleList/updateCheckedResponsibleList',this.currentTabIndex == 0?this.checkedResponsibleListTemp_all:this.checkedResponsibleListTemp_dept);
- uni.navigateBack({
- delta: 1
- });
- }
-
-
- },
- cancelCheck(){
- uni.navigateBack({
- delta: 1
- });
- },
- tabClick(index){
- if(index==1){
- this.deptId = this.deptIdTemp;
- }else {
- this.deptId ='';
- }
- // this.checkedResponsibleListTemp = [],
- // this.checkedResponsibleList = [],
- this.getResponsibleList();
- this.currentTabIndex = index;
- }
- }
- }
- </script>
- <style lang="less">
- .container {
- display: flex;
- height: 100%;
- flex-direction: column;
- .top { position: relative;
- z-index: 10;
- height:170rpx;
- padding: 0 25rpx;
- padding-top: 18.75rpx;
- background-color: #FFFFFF;
- box-sizing: border-box;
- box-shadow: 0px 3.75rpx 12.5rpx 0px rgba(0, 13, 51, 0.1);
- .searchBar {
- display: flex;
- flex-direction: row;
- justify-content: space-evenly;
- align-items: center;
- height: 55rpx;
- background: #F0F2F7;
- border-radius: 5rpx;
- padding-left: 25rpx;
- .inputArea {
- flex-grow:0.9;
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- }
- .placeholder {
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #A1A7B3;
- }
- .searchActiver {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-grow: 0.1;
- height:100%;
- .searchIcon {
- width: 21.25rpx;
- height: 21.25rpx;
- }
- }
- }
- .tabWrap {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- margin-top: 25rpx;
- .tab {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 325rpx;
- height: 50rpx;
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #292C33;
- background: #EBEFF7;
- border-radius: 25rpx;
-
- &.on {
- color: #FFFFFF;
- background: #3377FF;
- }
- }
- }
- }
- .content {
- flex: 1;
- overflow: hidden;
- }
- .bottom {
- display: flex;
- flex-direction: row;
- height:75rpx;
- border-top: 0.62rpx solid #DADEE6;
- background-color: #FFFFFF;
- .selectAll {
- display: flex;
- width: 20%;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- .icon {
- width: 25rpx;
- height: 24.37rpx;
- margin-right: 15rpx;
- }
- .text {
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #8F9BB3;
- &.on {
- color:#3377FF;
- }
- }
- }
- .cancelBtn {
- display: flex;
- width: 40%;
- height: 100%;
- justify-content: center;
- align-items: center;
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #3377FF;
- border-left: 0.62rpx solid #DADEE6;
- }
- .comfirm {
- display: flex;
- width: 40%;
- height: 100%;
- font-size: 22.5rpx;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #FFFFFF;
- justify-content: center;
- align-items: center;
- background: #3377FF;
- }
- }
- }
- </style>
|