|
@@ -11,7 +11,7 @@
|
|
|
<el-checkbox v-if="uiVersion === 1" v-model="item.checked" @change="handleCheckboxChanged(item)"><svg-icon icon-class="sickroom" style="color: #9aaabf;margin-right: 5px" /><span>{{ item.name }}</span></el-checkbox>
|
|
|
<span v-if="uiVersion !== 1"><svg-icon icon-class="sickroom" style="color: #9aaabf;margin-right: 5px" /><span>{{ item.name }}</span></span>
|
|
|
<el-checkbox v-model="item.allCkeck" style="float: right" :indeterminate="item.indeterminate" @change="(checked)=>{handleCheckAll(checked,item)}">
|
|
|
- {{ this.$t('action.choiceAll') }}</el-checkbox>
|
|
|
+ {{ choiceAll }}</el-checkbox>
|
|
|
</div>
|
|
|
<div v-for="(bed,_index) in item.children" :key="_index" class="text item">
|
|
|
<el-checkbox v-if="roleName !== '护士组长'" v-model="bed.checked" @change="handleCheckboxChanged(item)"><svg-icon icon-class="bed" style="color: #9aaabf;margin-right: 5px" />
|
|
@@ -33,7 +33,7 @@
|
|
|
<div v-if="roleName !== '护士组长'" style="margin: 10px;">
|
|
|
<el-checkbox v-if="uiVersion === 1" v-model="rooms[0].checked" @change="handleCheckboxChanged(rooms[0])"><svg-icon icon-class="sickroom" style="color: #9aaabf;margin-right: 5px" /><span>{{ rooms[0].name }}</span></el-checkbox>
|
|
|
<span v-if="uiVersion !== 1"><svg-icon icon-class="sickroom" style="color: #9aaabf;margin-right: 5px" /><span>{{ rooms[0].name }}</span></span>
|
|
|
- <el-checkbox v-model="rooms[0].allCkeck" style="margin-left: 30px;" :indeterminate="rooms[0].indeterminate" @change="(checked)=>{handleCheckAll(checked,rooms[0])}">{{ this.$t('action.choiceAll') }}</el-checkbox>
|
|
|
+ <el-checkbox v-model="rooms[0].allCkeck" style="margin-left: 30px;" :indeterminate="rooms[0].indeterminate" @change="(checked)=>{handleCheckAll(checked,rooms[0])}">{{ choiceAll }}</el-checkbox>
|
|
|
</div>
|
|
|
<el-row>
|
|
|
<el-col v-for="(bed,_index) in rooms[0].children" :key="_index" :xs="8" :sm="8" :md="6" :lg="6" :xl="6">
|
|
@@ -106,7 +106,8 @@ export default {
|
|
|
checkList: [],
|
|
|
checkDate: [],
|
|
|
uiVersion: null,
|
|
|
- watchDeviceFrame: this.$t('watch.keywords'),
|
|
|
+ watchDeviceFrame: this.$t('watch.watchDeviceFrame'),
|
|
|
+ choiceAll: this.$t('action.choiceAll'),
|
|
|
}
|
|
|
},
|
|
|
watch: {
|