123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <view class="condition">
- <view class="title">请选择追踪条件(可多选)</view>
- <view class="select-btn">
- <text>选择门诊或急诊</text>
- <view>
- <button :class="{active: condition.depType === 1}"
- @click="selectBtnHandle(1)">门诊</button>
- <button :class="{active: condition.depType === 2}"
- @click="selectBtnHandle(2)">急诊</button>
- </view>
- </view>
- <tm-trees :options="condition.options"
- :defaultOpen="condition.defaultOpen"
- :defaultChecked="condition.conditionIds"
- v-on:checked-keys="checkedHandle"></tm-trees>
- </view>
- </template>
- <script>
- import { mapState } from "vuex";
- import {conditionOptions,editCondition} from "./utils.js";
-
- export default {
- computed: {
- ...mapState({
- condition: state => state.creatingSituations.condition,
- needReload: state => state.creatingSituations.needReload,
- theme: state => state.creatingSituations.theme,
- editConfig: state => state.creatingSituations.editConfig
- })
- },
- created: function(){
- // 编辑的时候不用获取数据
- if(this.editConfig && this.editConfig.theme.id === this.theme.id) {
- this.$store.commit({
- type: 'creatingSituations/comChangeState',
- key: 'condition',
- data: this.editConfig.condition
- });
- } else if(this.needReload) {
- this.getOptions(this.condition.depType);
- }
- },
- methods: {
- checkedHandle: function(keys) {
- this.myCommit('conditionIds', keys);
- },
- selectBtnHandle: function(depType) {
- this.myCommit('depType', depType);
- this.getOptions(depType);
- },
- /**
- * 获取树形节点数据
- */
- getOptions: function(depType) {
- this.checkedHandle([]); // 切换后清空选中
- const {id} = this.theme;
- if(id || id === 0) {
- this.$store.dispatch({
- type: 'creatingSituations/commActions',
- key: 'conditions',
- data: { depType, type: id }
- }).then((data)=> {
- if(data) {
- if(data.length > 0) {
- this.myCommit('defaultOpen', [data[0].id]);
- }
- this.myCommit('options', conditionOptions(data));
- }
- });
- } else {
- uni.showModal({
- title: '温馨提示',
- content: '请先选择主题!',
- showCancel: false
- });
- }
- },
- /**
- * 更新condition数据
- * @param {Object} key 要更新的属性
- * @param {Object} value 值
- */
- myCommit: function(key, value) {
- let data = {...this.condition};
- data[key] = value;
- this.$store.commit({
- type: 'creatingSituations/comChangeState',
- key: 'condition',
- data
- });
- }
- }
- }
- </script>
- <style lang="less">
- .select-btn {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 15rpx;
- padding: 0 25rpx;
- width: 100%;
- height: 87.5rpx;
- font-size: 22.5rpx;
- line-height: 33.75rpx;
- color: #525866;
- background-color: #fff;
-
- view {
- display: flex;
- flex-direction: row;
-
- button {
- border: 0;
- border-radius: 25rpx;
- padding: 0 46.25rpx;
- height: 50rpx;
- line-height: 50rpx;
- color: #292C33;
- background-color: #EBEFF7;
-
- &:first-child {
- margin-right: 20rpx;
- }
- &::after {
- border: 0;
- }
- &.active {
- color: #fff;
- background-color: #3377FF;
- }
- }
- }
- }
- </style>
|