123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <template>
- <view class="mine">
- <scroll-view scroll-y class="body">
- <view class="bottom">
- <checkbox-group @change="checkboxChange" :value="optionData">
- <label class="litem-list" v-for="item in deptData" :key="item.value">
- <view>{{item.text}}</view>
- <checkbox :value="item.value" color="#49b856" :checked="item.checked" />
- </label>
- </checkbox-group>
- </view>
- </scroll-view>
- <view class="foot_common_btns">
- <button @click="goBackOrToList" type="default" class="cancelButton btn">返回</button>
- <button @click="submit" type="default" class="primaryButton btn">确认</button>
- </view>
- </view>
- </template>
- <script setup>
- import { ref, reactive } from 'vue'
- import { onLoad, onTabItemTap } from '@dcloudio/uni-app'
- import { api_incident_count, api_department, api_branch} from "@/http/api.js"
- import { defaultColor } from '@/static/js/theme.js'
- import { useSetTitle } from '@/share/useSetTitle.js'
- import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
- import { useLoginUserStore } from '@/stores/loginUser'
- import { useIncidentNumStore } from '@/stores/incidentNum'
- import { repositoryListSearchStore } from '@/stores/repositorySearch'
- import { useSetTabbar } from '@/share/useSetTabbar.js'
- import { useGoBack } from '@/share/useGoBack.js'
-
- useSetTitle();
- const loginUserStore = useLoginUserStore();
- const incidentNumStore = useIncidentNumStore();
- const { makePhoneCall } = useMakePhoneCall();
- const repositorySearchStore = repositoryListSearchStore();
- const { setTabbar } = useSetTabbar();
- const { goBack } = useGoBack();
-
- const deptData = ref([])
-
- const dataForm = reactive({
- dept: '',
- branch:''
- })
-
- const deptSelectData = ref(null)
- const deptSelectName = ref(null)
- const checkBox = ref([])
- const optionData = ref(null)
- const deptId = ref(null)
- // 是否提交
- const isSubmit = ref(false)
-
- // 上一步或者返回列表
- function goBackOrToList(){
- goBack();
- }
-
- function checkboxChange (e) {
- var items = deptData.value;
- let values = e.detail.value;
- deptSelectName.value = []
- for (var i = 0, lenI = items.length; i < lenI; ++i) {
- const item = items[i]
- if(values.includes(item.value)){
- deptSelectName.value.push(item)
- }
- }
- }
-
- // 获取科室列表
- function getRepairTypes(){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- let postData = {
- department: {
- hospital: Number(deptId.value),
- },
- idx:0,
- sum:9999
- }
- api_department(postData).then(res => {
- uni.hideLoading();
- res = res.list || [];
- deptData.value = res.map(v => ({
- text: v.dept,
- value: v.id+'',
- checked: false
- }));
- for(let i of deptData.value){
- for(let t of optionData.value){
- if(i.value == Number(t)){
- i.checked = true
- }
- }
- }
- if(optionData.value){
- checkBox.value = optionData.value
- }
- })
- }
-
- function submit(){
- let isId = null
- for(let x of deptSelectName.value){
- isId = deptData.value.find(i=>i.value == x.value)
- }
- if(!isId){
- deptSelectName.value = []
- uni.showToast({
- icon: 'none',
- title: '请先选择科室'
- });
- return
- }
- if(!deptSelectName.value){
- uni.showToast({
- icon: 'none',
- title: '请先选择科室'
- });
- return
- }
- let id = []
- let name = []
- for(let i of deptSelectName.value){
- id.push(i.value)
- name.push(i.text)
- }
- let data = {
- data:id,
- name:name
- }
- uni.reLaunch({
- url: '/pages/repair/config?data='+JSON.stringify(data)
- })
- }
-
- // 初始化
- // function onLoadFn(){
- // getRepairTypes()
- // }
-
- onLoad((option) => {
- console.log(123,option)
- let name = option.commonDeptName.split('/')
- if(option.data!='none'){
- let data = JSON.parse(option.data).split(',')
- optionData.value = data
- deptSelectName.value = []
- for(let i in optionData.value){
- deptSelectName.value.push({
- value:optionData.value[i],
- text:name[i]
- })
- }
- }
- deptId.value = option.deptId
- getRepairTypes();
- })
-
- // onTabItemTap(e => {
- // onLoadFn();
- // })
- </script>
- <style scoped>
- >>> .uni-data-tree-input{
- width: 100% !important;
- }
- >>> .input-value-border{
- border: none !important;
- }
- >>> .input-value{
- padding:0 !important;
- flex-direction: row-reverse !important;
- }
- >>> .selected-list{
- flex-direction: row-reverse !important;
- }
- >>> .arrow-area{
- display: none !important;
- }
- </style>
- <style lang="scss" scoped>
- .uni-checkbox-input:hover{
- border-color:#49b856;
- }
- .mine{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- background: #fff;
- .phone-filled{
- margin-right: 5rpx;
- }
- .newicon-xinjian2,
- .newicon-zhishiku{
- margin-right: 10rpx;
- }
- .body{
- height: 88vh;
- // padding: 0 30rpx;
- box-sizing: border-box;
- border-radius: 8rpx;
- .top{
- padding: 30rpx;
- background-color: #fff;
- .top_name{
- font-size: 28rpx;
- font-weight: bold;
- }
- .top_count{
- margin-top: 45rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .top_count_item{
- text-align: center;
- .name{
- color: #949494;
- font-size: 22rpx;
- }
- .value{
- font-size: 50rpx;
- font-weight: bold;
- margin-top: 15rpx;
- }
- }
- }
- }
-
- .bottom{
- background-color: #fff;
- margin-top: 15rpx;
- .litem-list{
- display: flex;
- justify-content: space-between;
- height: 70rpx;
- align-items: center;
- border-bottom: 1px solid #f5f5f5;
- padding: 0 20rpx;
- font-size: 28rpx;
- }
- .bottom_name{
- font-size: 26rpx;
- color: $uni-primary;
- padding: 21rpx 24rpx;
- }
- .bottom_list{
- .bottom_list_item{
- border-top: 1rpx solid #DEDEDE;
- padding: 30rpx 30rpx 30rpx 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
- position: relative;
- .value{
- max-width: 380rpx;
- color: #333;
- display: flex;
- align-items: center;
- text-align: justify;
- margin-right: 30rpx;
- }
- .no-mar{
- margin-right:0 !important;
- }
- .icon{
- position: absolute;
- right: 20rpx;
- }
- }
- }
- }
- }
- }
- </style>
|