123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443 |
- <template>
- <div >
- <el-dialog
- v-model="dialogVisiblenode"
- width="700"
- class="log_class bgcolor tianjia asideg asidegbg leftbgimg"
- >
- <template #header="{titleId, titleClass }">
- <div class="my-header ">
- <el-image :src="icon" fit="contain" ></el-image>
- <h4 :id="titleId" :class="titleClass"> 选择巷道</h4>
- </div>
- </template>
- <div class="demo-input-suffix firsttitle leftbgimg2 my_content1">
- <div class="guand_1">
- <el-form-item label="节点选择" :label-width="formLabelWidth5">
- <el-input v-model="searchtaggd"
- class="w-50 m-2"
- placeholder="巷道"
- />
- </el-form-item>
- <div class="asdis_btn">
- <div class="flex_a"><div class="btns" @click="searchgd"><span class="spantext">搜索</span></div></div>
- </div>
- </div>
- <el-table
- :row-class-name="tableRowClassName"
- :max-height="tableHeight"
- ref="multipleTableRef"
- :data="tableData2"
- style="width: 100%"
- @select="projectsSelectionSelect"
- :header-cell-style="{'background':'rgba(13, 22, 57, 0.96) '}"
- >
- <el-table-column type="selection" width="55" />
- <el-table-column property="snId" label="开始节点"/>
- <el-table-column property="enId" label="结束节点"/>
- <el-table-column property="id" label="编号" width="70"/>
- <el-table-column property="name" label="名称" width="70"/>
- <el-table-column property="sectionType" label="截面类型" width="120"/>
- <el-table-column property="roughCoe" label="粗糙系数"/>
- <el-table-column property="sectionPara1" label="截面参数1" width="90"/>
- <el-table-column property="sectionPara2" label="截面参数2" width="90" />
- <el-table-column property="sectionPara3" label="截面参数3" width="90"/>
- <el-table-column property="sectionPara4" label="截面参数4" width="90"/>
- <el-table-column property="sectionPara5" label="截面参数5" width="90"/>
-
- </el-table>
- <div class="demo-pagination-block" style="margin-top: 20px;">
- <el-pagination
- v-model:current-page="currentPage4"
- v-model:page-size="pageSize4"
- small
- background
- layout="prev, total,pager, next, jumpe,"
- :total="parseInt(total)"
- class="mt-4"
- @current-change="handleCurrentChange"
- />
- </div>
- <div class="dialog-footer footer_div l_btn">
- <div class="footerbtn flex1"><div class="borderimg"><el-button @click="dialogVisiblenode = false">取消</el-button></div></div>
- <div class="footerbtn flex1"><div class="borderimg"><el-button @click="queding();dialogVisiblenode = false">
- 确定
- </el-button></div></div>
- </div>
- </div>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { ref, onMounted, reactive, } from "vue";
- import {RouterView,RouterLink } from "vue-router"
- import { request, uploadFile } from "@/utils/request";
- import { ElMessage, ElButton, ElDialog, ElSelect } from 'element-plus'
- import icon from "@/assets/img/icon.png";
- const props= defineProps({ });
- let emit = defineEmits(['pipelineapi'])
- let sdialog=ref({
- dianadddialog:false,
- })
- let formLabelWidth5=ref(99)
- let tableHeight=ref(500);
- let tableData2 =ref([]);
- const multipleTableRef = ref()
- const multipleSelection = ref([])
- let dialogVisiblenode=ref(false);
- let total = ref(1);
- let searchtaggd = ref("");
- let searchtag=ref("");
- const currentPage4 = ref(1);
- const pageSize4 = ref(5)
- onMounted(()=>{
- })
- // 巷道方法
- // 选择巷道
- const fireclick = () => {
- pipelinedata('');
- }
- const tableRowClassName = ({ row, rowIndex }) => {
- if (rowIndex % 2 != 0) {
- return 'evenRow';
- }
- return 'oddRow';
- }
- // 管道搜索
- function searchgd() {
-
- searchtag.value=searchtaggd.value;
-
- pipelinedata( searchtaggd.value);
- }
- // 管道分页查询
- const handleCurrentChange = (val) => {
- pipelinedata()
- }
- //管道数据查询
- const pipelinedata = (searchtag) => {
- const params = {
- transCode: 'D00001',
- count: pageSize4.value,
- page: currentPage4.value,
- searchtag: searchtag,
- }
- request(params)
- .then((res) => {
- tableData2.value = res.rows;
- total.value = res.total;
- })
- .catch((err) => {
- ElMessage.error(err.returnMsg)
- })
- }
- //选中项
- const projectsSelectionSelect=(selection, row)=>{
- if(selection.length>1){
- multipleTableRef.value.clearSelection();
- multipleTableRef.value.toggleRowSelection(row,true);
- multipleSelection.value=selection[1];
- return;
- }
- if(selection.length==1){
- multipleSelection.value=selection;
-
- }else if(selection.length==0){
-
- }
- }
- const selectfun=()=>{
- emit('pipelineapi', '');
- currentPage4.value=1;
- if(multipleSelection.value.length!=0){
- // firepid.value=multipleSelection.value[0].id;
- emit('pipelineapi',multipleSelection.value[0]);
- // console.log(multipleSelection.value[0])
- }else{
-
- }
-
- }
- // 确定
- const queding=()=>{
- selectfun();
- }
- defineExpose({dialogVisiblenode,pipelinedata,searchtaggd});
- </script>
- <style lang="scss" scoped>
- .vtk{
- position: absolute;
- z-index: 150;
- top:70px;
- }
- .jc_padding .el-table tr {
- height: 30px !important;
- background: rgba(104, 173, 255, 0.3);
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 0px 0px 0px 0px;
- border: 1px solid;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- }
- .flex_a {
- flex: 1;
- padding: 0 19px;
- }
- .btns {
- width: 72px;
- height: 30px;
- background-image: url(../../assets/img/Rectangle399.png);
- background-repeat: no-repeat;
- line-height: 30px;
- overflow: hidden;
- margin: 10px 0;
- .spantext {
- font-weight: bold;
- font-size: 12px;
- color: #FFFFFF;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .header_z {
- box-shadow: none !important;
- padding: 10px 20px !important;
- }
- .header_l {
- line-height: 10px;
- text-align: left;
- padding: 0 20px;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 0px 0px 0px 0px;
- .el-image {
- padding: 10px 10px 0 0;
- }
- h4 {
- font-weight: bold;
- font-size: 12px;
- color: #68ADFF;
- line-height: 14px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .jc_padding {
- padding: 18px 10px;
- }
- .line {
- border-bottom: 1px solid rgba(255, 255, 255, 0.20);
- box-sizing: border-box;
- }
- .L_aside {
- .iconimg {
- width: 37px;
- height: 36px;
- margin: 0 7px 0 24px;
- }
- }
- .ddd {
- margin-top: 20px;
- .ddd_div {
- padding: 20px 0;
- position: relative;
- }
- .class_btn {
- position: absolute;
- right: 0;
- top: 21px;
- }
- .header_l {
- line-height: 10px;
- text-align: left;
- padding: 0 20px;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 0px 0px 0px 0px;
- .el-image {
- padding: 10px 10px 0 0;
- }
- h4 {
- font-weight: bold;
- font-size: 12px;
- color: #68ADFF;
- line-height: 14px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- }
- .el-dialog__title {
- display: inline-block;
- }
- .bgcolor {
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 0px 0px 0px 0px;
- border: 1px solid;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- }
- .log_class {
- .my-header {
- line-height: 10px;
- height: 40px;
- text-align: left;
- padding: 0 20px;
- border-bottom: 1px solid;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 0px 0px 0px 0px;
- .el-image {
- padding: 10px 10px 0 0;
- }
- h4 {
- font-weight: bold;
- font-size: 12px;
- color: #68ADFF;
- line-height: 14px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .my_content {
- width: 100%;
- height: 90px;
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 0px 0px 0px 0px;
- position: relative;
- .radio-group {
- display: flex;
- justify-content: center;
- .el-radio {
- flex: 1;
- justify-content: center;
- font-weight: bold;
- font-size: 12px;
- color: #FFFFFF;
- line-height: 14px;
- }
- }
- }
- .el-dialog__footer {
- position: absolute;
- bottom: 17px;
- display: flex;
- .footerbtn {
- flex: 1;
- text-align: center;
- }
- }
- }
- .my_content1 {
- .el-table .cell {
- font-weight: 400;
- font-size: 12px;
- color: #FFFFFF !important;
- line-height: 14px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- }
- }
- .l_btn .borderimg {
- width: 70px;
- height: 30px;
- font-size: 12px;
- background: rgba(104, 173, 255, 0.3);
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- /* border: 1px solid rgba(31, 107, 255, 1); */
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- font-weight: bold;
- border-radius: 4px;
- display: flex;
- display: inline-block;
- box-sizing: border-box;
- }
- .borderimg {
- width: 109px;
- height: 30px;
- background: rgba(104, 173, 255, 0.3);
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- /* border: 1px solid rgba(31, 107, 255, 1); */
- -o-border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- border-radius: 4px;
- display: flex;
- display: inline-block;
- box-sizing: border-box
- }
- .el-table,
- .el-table thead th {
- background-color: rgba(13, 22, 57, 0.96) !important;
- }
- .L_aside {
- height: calc(100vh - 70px);
- position: absolute;
- top: 70px;
- overflow: hidden;
- }
- .el-form-item__label {
- color: #FFFFFF !important;
- }
- .jiancedian {
- width: 380px;
- position: absolute;
- right: 0;
- top: 70px;
- box-shadow: inset 0px 0px 17px 5px rgba(12, 97, 197, 0.2);
- border-radius: 4px 4px 4px 4px;
- border: 1px solid;
- border-image: linear-gradient(180deg, rgba(31, 107, 255, 1), rgba(31, 107, 255, 0.48)) 1 1;
- }
- </style>
- <style>
- .log_class{
- background-color: rgba(13, 22, 57, 0.96) !important;
- }
- </style>
|