文件整理, 多余的文件删除, 文件路径指向调整

This commit is contained in:
范露尧
2023-07-10 11:50:55 +08:00
parent 57150fda11
commit fdb4c482d3
7 changed files with 35 additions and 661 deletions

View File

@@ -13,11 +13,11 @@
<script src="../../lib/xe-utils/dist/xe-utils.umd.min.js"></script>
<script src="../../lib/axios/axios.min.js"></script>-->
<link rel="stylesheet" href="../Contents/index.css">
<script src="../Contents/vue.min.js"></script>
<script src="../Contents/index.js"></script>
<script src="../Contents/axios.min.js"></script>
<script src="../Contents/qs.min.js"></script>
<link rel="stylesheet" href="../../Contents/index.css">
<script src="../../Contents/vue.min.js"></script>
<script src="../../Contents/index.js"></script>
<script src="../../Contents/axios.min.js"></script>
<script src="../../Contents/qs.min.js"></script>
</head>
<body>
@@ -25,7 +25,7 @@
<h3 style="text-align:center;">宁波既有建筑外墙脱落问卷调查结果</h3>
<el-form label-position="left" ref="form" :model="form" label-width="120px" style="margin-top:15px;">
<el-form-item label="社区/小区:" prop="name">
<el-select v-model="form.communityId" filterable clearable placeholder="请选择" @@change="selectCommunity">
<el-select v-model="form.communityId" filterable clearable placeholder="请选择" @change="selectCommunity">
<el-option v-for="item in communitys" :key="item.id" :label="item.name" :value="item.id">
</el-option>
</el-select>
@@ -34,17 +34,17 @@
<el-input v-model="form.submitCode" style="width:300px"></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" @@click.prevent="onSubmit('form')">查询</el-button>
<el-button @@click.prevent="reset('form')">重置</el-button>
<el-button type="primary" @click.prevent="onSubmit('form')">查询</el-button>
<el-button @click.prevent="reset('form')">重置</el-button>
</el-form-item>
</el-form>
<el-table :data="tableData" style="width: 100%" tooltip-effect="dark" @@selection-change="handleSelectionChange" row-key="id"
:expand-row-keys="expands" @@row-click="clickRowHandle">
<el-table :data="tableData" style="width: 100%" tooltip-effect="dark" @selection-change="handleSelectionChange" row-key="id"
:expand-row-keys="expands" @row-click="clickRowHandle">
<el-table-column type="expand">
<template slot-scope="props">
<el-table :data="tableDataBuilding" style="width: 90%;margin:0 auto;" tooltip-effect="dark" @@selection-change="handleSelectionChange" row-key="id"
:expand-row-keys="expandChilds" @@row-click="clickRowHandleBuilding">
<el-table :data="tableDataBuilding" style="width: 90%;margin:0 auto;" tooltip-effect="dark" @selection-change="handleSelectionChange" row-key="id"
:expand-row-keys="expandChilds" @row-click="clickRowHandleBuilding">
<el-table-column type="expand">
<template slot-scope="props">
<el-form label-position="left" class="demo-table-expand" :model="props.row">
@@ -104,7 +104,7 @@
<el-form-item>
8.7 问题照片:
<div class="blocks">
<div class="block" v-for="fit in props.row.outside_wall_building_photos" :key="fit" @@click="handlePreview(fit,props.row.outside_wall_building_photos)">
<div class="block" v-for="fit in props.row.outside_wall_building_photos" :key="fit" @click="handlePreview(fit,props.row.outside_wall_building_photos)">
<span class="title">{{ fit.toward }}</span>
<el-avatar shape="square" :size="100" fit="fill" :src="fit.preview"></el-avatar>
</div>
@@ -201,21 +201,21 @@
</el-table-column>
<el-table-column label="外墙照片">
<template slot-scope="props">
<el-button @@click.native.stop="lookphoto(props.row.outside_wall_photos)">点我查看</el-button>
<el-button @click.native.stop="lookphoto(props.row.outside_wall_photos)">点我查看</el-button>
</template>
</el-table-column>
</el-table>
<h3 style="text-align:center;">
<el-button @@click="toBuildPage">查看幢统计</el-button>
@*<el-button type="primary" @@click="export_excel" :loading="loading">导出Excel</el-button>*@
<el-button @click="toBuildPage">查看幢统计</el-button>
<!--<el-button type="primary" @click="export_excel" :loading="loading">导出Excel</el-button>-->
</h3>
<el-image ref="myImg" class="my-img" :src="dialogImageUrl" :preview-src-list="dialogImageUrls">
</el-image>
<el-dialog title="图片预览" :visible.sync="dialogTableVisible">
<div class="blocks">
<div class="block" v-for="fit in outside_wall_photos" :key="fit" @@click="handlePreview(fit,outside_wall_photos)">
<div class="block" v-for="fit in outside_wall_photos" :key="fit" @click="handlePreview(fit,outside_wall_photos)">
<span class="title">{{ fit.toward }}</span>
<el-avatar shape="square" :size="100" fit="fill" :src="fit.preview"></el-avatar>
</div>