护理站页面冲突处理
This commit is contained in:
parent
18ef1a9188
commit
1773d15060
@ -201,7 +201,6 @@
|
||||
label="护理站名称"
|
||||
align="center"
|
||||
prop="nurseStationName"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
<el-table-column label="护理站类型" align="center" prop="nurseTypeName">
|
||||
<template slot-scope="scope">
|
||||
@ -215,7 +214,7 @@
|
||||
<span>{{ scope.row.sysAreaVOList[0].cityName }}-</span>
|
||||
<span>{{ scope.row.sysAreaVOList[0].streetName }}</span> -->
|
||||
</el-table-column>
|
||||
<el-table-column label="护理站地址" align="center" prop="address" :show-overflow-tooltip="true"/>
|
||||
<el-table-column label="护理站地址" align="center" prop="address" />
|
||||
<!-- <el-table-column
|
||||
label="护理站简介"
|
||||
align="center"
|
||||
@ -478,7 +477,7 @@
|
||||
placeholder="排序不可输入小数点"
|
||||
type="number"
|
||||
min="0"
|
||||
oninput="if(value.indexOf('.')>0){value=value.slice(0,value.indexOf('.')+0)} if(value.length>8){value=value.slice(0,8)}"
|
||||
oninput="if(value.indexOf('.')>0){value=value.slice(0,value.indexOf('.')+0)} if(value.length>10){value=value.slice(0,10)}"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="护理站总概述" prop="nurseStationDescription">
|
||||
@ -602,7 +601,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
import {
|
||||
listStation,
|
||||
getStation,
|
||||
delStation,
|
||||
@ -614,13 +613,13 @@ import {
|
||||
getInfoLists,
|
||||
nurseStationlabel,
|
||||
getLabelList,
|
||||
} from "@/api/system/station";
|
||||
import { getInfoList } from "@/api/system/nurseItem";
|
||||
import stationAcatar from "../stationAvatar/index.vue";
|
||||
import { getListByUser } from "@/api/system/userlist.js";
|
||||
import { getToken } from "@/utils/auth";
|
||||
import editor from "@/components/Editor";
|
||||
export default {
|
||||
} from "@/api/system/station";
|
||||
import { getInfoList } from "@/api/system/nurseItem";
|
||||
import stationAcatar from "../stationAvatar/index.vue";
|
||||
import { getListByUser } from "@/api/system/userlist.js";
|
||||
import { getToken } from "@/utils/auth";
|
||||
import editor from "@/components/Editor";
|
||||
export default {
|
||||
components: { stationAcatar, editor },
|
||||
name: "Station",
|
||||
data() {
|
||||
@ -819,8 +818,6 @@ export default {
|
||||
console.log(imgUrl);
|
||||
this.form.stationIntroducePcitureUrl = imgUrl;
|
||||
},
|
||||
|
||||
|
||||
delnurseStationLabelList(item) {
|
||||
console.log(item);
|
||||
if (item.ids && !item.id) {
|
||||
@ -842,7 +839,6 @@ export default {
|
||||
}
|
||||
console.log(this.form.nurseStationLabelList);
|
||||
},
|
||||
|
||||
addnurseStationLabelList() {
|
||||
if (this.looknurseStationLabel.length == 5) {
|
||||
this.$message.error("最多只能5条");
|
||||
@ -1070,7 +1066,7 @@ export default {
|
||||
console.log(typeof this.value);
|
||||
}
|
||||
}
|
||||
});
|
||||
);
|
||||
})
|
||||
.then(() => {
|
||||
this.looknurseStationLabel = [];
|
||||
@ -1232,17 +1228,5 @@ export default {
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
::v-deep .el-table_1_column_6 is-center is-leaf el-table__cell {
|
||||
text-overflow: -o-ellipsis-lastline;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 4;
|
||||
line-clamp: 4;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user