|
|
@ -1,45 +1,46 @@ |
|
|
|
<template> |
|
|
|
<div class="slider-right"> |
|
|
|
<!-- <div class="top-title">{{ $router.currentRoute.meta.title }}</div> --> |
|
|
|
<TopBackTitle></TopBackTitle> |
|
|
|
<div class="table-box"> |
|
|
|
<div class="form-row-title">巡查路线</div> |
|
|
|
<div class="patrol-box"> |
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px" label-position="right"> |
|
|
|
<el-form-item label="巡查人:" prop="name"> |
|
|
|
{{ form.name }} |
|
|
|
<el-form-item label="巡查人:" prop="createName"> |
|
|
|
{{ form.createName }} |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="巡查项目名称:" prop="projectName"> |
|
|
|
{{ form.projectName }} |
|
|
|
<el-form-item label="巡查项目名称:" prop="name"> |
|
|
|
{{ form.name }} |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="巡查堤防名称:" prop="dikeName"> |
|
|
|
{{ form.dikeName }} |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="巡查类别:" prop="inspectionCategory"> |
|
|
|
{{ form.inspectionCategory }} |
|
|
|
<el-form-item label="巡查类别:" prop="category"> |
|
|
|
{{ getDictLabelName(form.category, "maintenanceCategory") }} |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="巡查时间:" prop="time"> |
|
|
|
<el-date-picker |
|
|
|
size="small" |
|
|
|
class="ml-10" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
v-model="form.time" |
|
|
|
type="daterange" |
|
|
|
value-format="yyyy-MM-dd" |
|
|
|
value-format="yyyy-MM-dd HH:mm:ss" |
|
|
|
range-separator="至" |
|
|
|
start-placeholder="开始日期" |
|
|
|
end-placeholder="结束日期" |
|
|
|
> |
|
|
|
</el-date-picker> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="巡查范围:" prop="describe"> |
|
|
|
<el-form-item label="巡查范围:" prop="scope"> |
|
|
|
<el-input |
|
|
|
type="textarea" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
:rows="4" |
|
|
|
placeholder="请输入内容" |
|
|
|
maxlength="200" |
|
|
|
show-word-limit |
|
|
|
resize="none" |
|
|
|
v-model="form.describe"> |
|
|
|
v-model="form.scope"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
@ -60,47 +61,63 @@ |
|
|
|
style="margin-bottom: 16px;" |
|
|
|
border |
|
|
|
> |
|
|
|
<el-table-column prop="parts" align="center" label="巡查部位" /> |
|
|
|
<el-table-column prop="name" align="center" label="巡查部位" /> |
|
|
|
<el-table-column prop="content" align="center" label="检查内容" /> |
|
|
|
</el-table> |
|
|
|
<div class="form-row-title">缺陷问题列表</div> |
|
|
|
<div class="flex-1 flex justify-end search-item"> |
|
|
|
<div class="flex-1 flex justify-end search-item" style="margin-bottom: 16px;"> |
|
|
|
<el-button |
|
|
|
size="small" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
class="flex-shrink-0 myml-12" |
|
|
|
type="success" |
|
|
|
@click="addProblems" |
|
|
|
>新增</el-button |
|
|
|
> |
|
|
|
<el-button |
|
|
|
type="danger" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
class="flex-shrink-0" |
|
|
|
size="small" |
|
|
|
@click="delProblems" |
|
|
|
size="small" |
|
|
|
>删除</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
|
<el-table |
|
|
|
:height="tableHeight" |
|
|
|
:data="problemsData" |
|
|
|
@selection-change="handleSelectionChange" |
|
|
|
border |
|
|
|
> |
|
|
|
<el-table-column type="selection" width="55"></el-table-column> |
|
|
|
<el-table-column prop="parts" align="center" label="巡查部位" /> |
|
|
|
<!-- <el-table-column prop="content" label="检查内容">--> |
|
|
|
<!-- <template slot-scope="scope">--> |
|
|
|
<!-- <el-input--> |
|
|
|
<!-- :disabled="!canEdit"--> |
|
|
|
<!-- v-model="scope.row.content"--> |
|
|
|
<!-- placeholder="请输入"--> |
|
|
|
<!-- ></el-input>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </el-table-column>--> |
|
|
|
<el-table-column prop="parts" label="巡查部位"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select |
|
|
|
clearable |
|
|
|
size="small" |
|
|
|
class="w-202 ml-10" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
v-model="scope.row.parts" |
|
|
|
filterable |
|
|
|
placeholder="请选择" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="item in tableData" |
|
|
|
:key="item.id" |
|
|
|
:label="item.name" |
|
|
|
:value="item.parts" |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="problemLevel" label="问题等级"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select |
|
|
|
clearable |
|
|
|
size="small" |
|
|
|
class="w-202 ml-10" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
v-model="scope.row.problemLevel" |
|
|
|
filterable |
|
|
|
placeholder="请选择" |
|
|
@ -118,6 +135,7 @@ |
|
|
|
<el-table-column prop="position" label="具体位置"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
v-model="scope.row.position" |
|
|
|
placeholder="请输入" |
|
|
|
></el-input> |
|
|
@ -126,13 +144,38 @@ |
|
|
|
<el-table-column prop="content" label="具体描述"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
v-model="scope.row.content" |
|
|
|
placeholder="请输入" |
|
|
|
></el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="inspectionContent" align="center" label="缺陷照片" /> |
|
|
|
<el-table-column prop="inspectionContent" align="center" label="维养状态" /> |
|
|
|
<el-table-column align="center" label="缺陷照片"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="imgBox"> |
|
|
|
<div |
|
|
|
class="imgList" |
|
|
|
v-for="item in scope.row.problemImages" |
|
|
|
> |
|
|
|
<el-image |
|
|
|
style="width: 40px; height: 40px;" |
|
|
|
:src="item" |
|
|
|
:preview-src-list="scope.row.problemImages"> |
|
|
|
</el-image> |
|
|
|
<div class="delImg" v-if="$route.query.mode !== 'check'" @click="delImage(item, scope.row.problemImages)"> |
|
|
|
× |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="status" align="center" label="维养状态"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ |
|
|
|
getDictLabelName(scope.row.status, "maintenanceStatus") |
|
|
|
}}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="opera" |
|
|
|
align="center" |
|
|
@ -141,44 +184,63 @@ |
|
|
|
width="168" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button |
|
|
|
style="margin-right: 16px" |
|
|
|
type="text" |
|
|
|
size="small" |
|
|
|
@click="handleCheckDetails(scope.row, false)" |
|
|
|
>上传图片</el-button |
|
|
|
> |
|
|
|
|
|
|
|
<el-popconfirm |
|
|
|
confirm-button-text="确定" |
|
|
|
cancel-button-text="取消" |
|
|
|
icon="el-icon-info" |
|
|
|
icon-color="red" |
|
|
|
title="确定删除吗?" |
|
|
|
@confirm="deleteTableItem(scope.row)" |
|
|
|
> |
|
|
|
<el-button |
|
|
|
style="color: red" |
|
|
|
type="text" |
|
|
|
size="small" |
|
|
|
slot="reference" |
|
|
|
v-hasPermi="['df:run:checking:item:delete']" |
|
|
|
>删除</el-button |
|
|
|
<div style="display:flex;"> |
|
|
|
<el-upload |
|
|
|
class="" |
|
|
|
action="#" |
|
|
|
:http-request="(e) => {handleUploadProject(e, scope.row)}" |
|
|
|
:before-upload="(e) => {beforeUploadProject(e, scope.row)}" |
|
|
|
:show-file-list="false" |
|
|
|
accept=".png,.jpg,.jpeg" |
|
|
|
> |
|
|
|
</el-popconfirm> |
|
|
|
<el-button :disabled="$route.query.mode === 'check'" size="small" style="margin-right: 10px;" type="text">上传图片</el-button> |
|
|
|
</el-upload> |
|
|
|
<el-popconfirm |
|
|
|
confirm-button-text="确定" |
|
|
|
cancel-button-text="取消" |
|
|
|
icon="el-icon-info" |
|
|
|
icon-color="red" |
|
|
|
title="确定删除吗?" |
|
|
|
@confirm="deleteTableItem(scope.row)" |
|
|
|
> |
|
|
|
<el-button |
|
|
|
style="color: red" |
|
|
|
type="text" |
|
|
|
size="small" |
|
|
|
:disabled="$route.query.mode === 'check'" |
|
|
|
slot="reference" |
|
|
|
v-hasPermi="['df:run:checking:item:delete']" |
|
|
|
>删除</el-button |
|
|
|
> |
|
|
|
</el-popconfirm> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<div class="bottom-btns" v-if="$route.query.mode !== 'check'"> |
|
|
|
<el-button type="primary" @click="handleSave(true)" |
|
|
|
>保存并提交</el-button |
|
|
|
> |
|
|
|
<el-button type="primary" @click="handleSave(false)" |
|
|
|
>保存</el-button |
|
|
|
> |
|
|
|
<el-button @click="$router.go(-1)">返回</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
import { intersection } from "lodash"; |
|
|
|
import TopBackTitle from "@/components/TopBackTitle/index.vue"; |
|
|
|
import {calcTableHeight} from "@/mixins/calcTableHeight"; |
|
|
|
import SyMixMap from "@/views/components/SyMixMap.vue"; |
|
|
|
import {getCheckingDictTree, getRecordDetails, getRecordTraceList, getV2PatrolChecking} from "@/api/dike"; |
|
|
|
import {gettV2Record} from "@/api/dike/patrolMaintenance"; |
|
|
|
import { |
|
|
|
getRecordDetails, |
|
|
|
getRecordTraceList, |
|
|
|
getV2PatrolChecking |
|
|
|
} from "@/api/dike"; |
|
|
|
import {gettV2Record, postV2Record} from "@/api/dike/patrolMaintenance"; |
|
|
|
import { uploadFileData } from "@/api/system/upload"; |
|
|
|
import {getDictMapData} from "@/api/system/dict/data"; |
|
|
|
|
|
|
|
export default { |
|
|
|
components: { |
|
|
@ -191,30 +253,30 @@ export default { |
|
|
|
entries: {}, |
|
|
|
maintenanceStatus: [], |
|
|
|
maintenanceLevel: [], |
|
|
|
maintenanceCategory: [], |
|
|
|
traceList: [], |
|
|
|
problemsData: [{ |
|
|
|
nspectionLocation: '堤坡与戗台', |
|
|
|
inspectionContent: '是否坚实平整', |
|
|
|
}], |
|
|
|
tableData: [{ |
|
|
|
nspectionLocation: '堤坡与戗台', |
|
|
|
inspectionContent: '是否坚实平整', |
|
|
|
}], |
|
|
|
problemsCheckData: [], |
|
|
|
problemsData: [], |
|
|
|
tableData: [], |
|
|
|
form: { |
|
|
|
name: '张三', |
|
|
|
projectName: '项目名称内容', |
|
|
|
dikeName: '堤防名称内容', |
|
|
|
inspectionCategory: '工程巡查', |
|
|
|
createName: '', |
|
|
|
name: '', |
|
|
|
dikeName: '', |
|
|
|
category: '', |
|
|
|
createUid: '', |
|
|
|
dikeCode: '', |
|
|
|
dikeType: '', |
|
|
|
type: '', |
|
|
|
time: [], |
|
|
|
describe: '', |
|
|
|
scope: '', |
|
|
|
}, |
|
|
|
rules: { |
|
|
|
createName: [{required: true}], |
|
|
|
name: [{required: true}], |
|
|
|
projectName: [{required: true}], |
|
|
|
dikeName: [{required: true}], |
|
|
|
inspectionCategory: [{required: true}], |
|
|
|
category: [{required: true}], |
|
|
|
time: [{required: true}], |
|
|
|
describe: [{required: true}], |
|
|
|
scope: [{required: true}], |
|
|
|
} |
|
|
|
}; |
|
|
|
}, |
|
|
@ -222,6 +284,9 @@ export default { |
|
|
|
this.getDicts("patrol_maintenance_status").then((response) => { |
|
|
|
this.maintenanceStatus = response.data; |
|
|
|
}); |
|
|
|
this.getDicts("patrol_maintenance_category").then((response) => { |
|
|
|
this.maintenanceCategory = response.data; |
|
|
|
}); |
|
|
|
this.getDicts("patrol_maintenance_level").then((response) => { |
|
|
|
this.maintenanceLevel = response.data; |
|
|
|
}); |
|
|
@ -235,16 +300,38 @@ export default { |
|
|
|
this.getMapData() |
|
|
|
}, |
|
|
|
async getDetail() { |
|
|
|
console.log(this.$route.query.id) |
|
|
|
const details = await gettV2Record(this.$route.query.id); |
|
|
|
const checking = await getV2PatrolChecking(22); |
|
|
|
console.log(checking) |
|
|
|
this.tableData = checking.data.items; |
|
|
|
const dictData = await getCheckingDictTree("df_xs_c_classfy"); |
|
|
|
let _xcTreeData = this.transformArr(dictData?.data); |
|
|
|
this.matchXcTreeData(_xcTreeData, this.tableData); |
|
|
|
console.log(_xcTreeData) |
|
|
|
console.log(this.tableData) |
|
|
|
if (this.$route.query.id) { |
|
|
|
const details = await gettV2Record(this.$route.query.id); |
|
|
|
this.form.time[0] = details.data.startDate |
|
|
|
this.form.time[1] = details.data.endDate |
|
|
|
this.form.scope = details.data.scope |
|
|
|
this.problemsData = details.data.problems |
|
|
|
this.form.time = [...this.form.time] |
|
|
|
} |
|
|
|
const checking = await getV2PatrolChecking(this.$route.query.checkingId); |
|
|
|
this.form.createName = checking.data.createName |
|
|
|
this.form.name = checking.data.name |
|
|
|
this.form.dikeName = checking.data.dikeName |
|
|
|
this.form.category = checking.data.category |
|
|
|
this.form.createUid = checking.data.createUid |
|
|
|
this.form.dikeCode = checking.data.dikeCode |
|
|
|
this.form.dikeType = checking.data.dikeType |
|
|
|
this.form.type = checking.data.type |
|
|
|
const items = checking.data.items |
|
|
|
getDictMapData("df_xs_c_classfy").then((res) => { |
|
|
|
items.forEach(item => { |
|
|
|
let parts = '' |
|
|
|
item.parts.forEach((part) => { |
|
|
|
if (parts) { |
|
|
|
parts = parts + ':' + part |
|
|
|
} else { |
|
|
|
parts = part |
|
|
|
} |
|
|
|
}) |
|
|
|
item.name = res.data[parts] |
|
|
|
}) |
|
|
|
this.tableData = items |
|
|
|
}); |
|
|
|
}, |
|
|
|
async getMapData() { |
|
|
|
// 获取地图数据 |
|
|
@ -269,61 +356,104 @@ export default { |
|
|
|
?.reverse() || []; |
|
|
|
}); |
|
|
|
}, |
|
|
|
// 树转换 |
|
|
|
transformArr(treeList) { |
|
|
|
// 递归设置路径 |
|
|
|
function deepCalc(item, part = []) { |
|
|
|
item.parts = [...part, item.key]; |
|
|
|
if (item.children?.length) { |
|
|
|
item.children.forEach((v) => { |
|
|
|
if (!v.children || v.children.length === 0) { |
|
|
|
v.parts = [...item.parts, v.key]; |
|
|
|
v.content = v.remark || ""; |
|
|
|
delete v.children; |
|
|
|
} else { |
|
|
|
deepCalc(v, item.parts); |
|
|
|
} |
|
|
|
}); |
|
|
|
} else { |
|
|
|
delete item.children; |
|
|
|
} |
|
|
|
// 图片上传后 |
|
|
|
handleUploadProject(e, row) { |
|
|
|
const { file } = e; |
|
|
|
let fData = new FormData(); |
|
|
|
fData.append("file", file); |
|
|
|
uploadFileData(fData) |
|
|
|
.then((res) => { |
|
|
|
row.problemImages.push(res.url); |
|
|
|
}) |
|
|
|
.catch((err) => { |
|
|
|
console.log("err >>>>> ", err); |
|
|
|
}); |
|
|
|
}, |
|
|
|
// 图片上传前 |
|
|
|
beforeUploadProject(e, row) { |
|
|
|
const { name, size } = e; |
|
|
|
if (!/\.(jpg|png|jpeg)$/.test(name)) { |
|
|
|
this.$message.warning("文件格式不正确"); |
|
|
|
return false; |
|
|
|
} |
|
|
|
treeList.forEach((item) => { |
|
|
|
deepCalc(item); |
|
|
|
}); |
|
|
|
return treeList; |
|
|
|
if (row.problemImages?.length >= 3) { |
|
|
|
this.$message({ |
|
|
|
message: "最多上传3份", |
|
|
|
type: "warning", |
|
|
|
}); |
|
|
|
return false; |
|
|
|
} |
|
|
|
return true; |
|
|
|
}, |
|
|
|
// 匹配维修养护内容 |
|
|
|
matchXcTreeData(treeData, dataList) { |
|
|
|
treeData.forEach((v) => { |
|
|
|
if (!v.children?.length) { |
|
|
|
for (const item of dataList) { |
|
|
|
v.id = item.id; |
|
|
|
if (intersection(v.parts, item.parts).length === v.parts.length) { |
|
|
|
// 证明匹配成功 |
|
|
|
v.content = item.content || ""; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
this.matchXcTreeData(v.children, dataList); |
|
|
|
} |
|
|
|
}); |
|
|
|
delImage(img, problemImages) { |
|
|
|
const index = problemImages.indexOf(img) |
|
|
|
problemImages.splice(index, 1) |
|
|
|
problemImages |
|
|
|
}, |
|
|
|
addProblems() { |
|
|
|
this.problemsData.push({ |
|
|
|
problemLevel: '1', |
|
|
|
partsId: this.tableData[0].parts, |
|
|
|
poistion: '', |
|
|
|
content: '', |
|
|
|
problemImages: [], |
|
|
|
status: '1', |
|
|
|
status: '4', |
|
|
|
}) |
|
|
|
}, |
|
|
|
getDictLabelName(type, dictListName) { |
|
|
|
if (!this[dictListName]) return ""; |
|
|
|
return ( |
|
|
|
this[dictListName].find((item) => item.dictValue === type)?.dictLabel || |
|
|
|
"" |
|
|
|
); |
|
|
|
}, |
|
|
|
handleSelectionChange(e) { |
|
|
|
this.problemsCheckData = e || []; |
|
|
|
}, |
|
|
|
delProblems() { |
|
|
|
|
|
|
|
this.$confirm("是否删除选中的问题?", "提示", { |
|
|
|
confirmButtonText: "确定", |
|
|
|
cancelButtonText: "取消", |
|
|
|
type: "warning", |
|
|
|
}) |
|
|
|
.then(() => { |
|
|
|
this.problemsCheckData.forEach((Check) => { |
|
|
|
const index = this.problemsData.indexOf(Check) |
|
|
|
this.problemsData.splice(index, 1) |
|
|
|
}) |
|
|
|
}) |
|
|
|
.catch(() => { |
|
|
|
console.log("取消删除"); |
|
|
|
}); |
|
|
|
}, |
|
|
|
deleteTableItem() { |
|
|
|
|
|
|
|
deleteTableItem(row) { |
|
|
|
const index = this.problemsData.indexOf(row) |
|
|
|
this.problemsData.splice(index, 1) |
|
|
|
}, |
|
|
|
handleSave(commit) { |
|
|
|
const data = { |
|
|
|
category: this.form.category, |
|
|
|
checkingId: this.$route.query.checkingId, |
|
|
|
checkingName: this.form.name, |
|
|
|
createName: this.form.createName, |
|
|
|
createUid: this.form.createUid, |
|
|
|
dikeName: this.form.dikeName, |
|
|
|
dikeCode: this.form.dikeCode, |
|
|
|
dikeType: this.form.dikeType, |
|
|
|
scope: this.form.scope, |
|
|
|
problems: this.problemsData, |
|
|
|
startDate: this.form.time && this.form.time.length > 1 ? this.form.time[0] : '', |
|
|
|
endDate: this.form.time && this.form.time.length > 1 ? this.form.time[1] : '', |
|
|
|
type: this.form.type, |
|
|
|
} |
|
|
|
if (this.$route.query.id) { |
|
|
|
data.id = this.$route.query.id |
|
|
|
} |
|
|
|
console.log(data); |
|
|
|
postV2Record(data,commit).then(res => { |
|
|
|
this.$message.success('保存成功') |
|
|
|
this.$router.go(-1) |
|
|
|
}) |
|
|
|
} |
|
|
|
}, |
|
|
|
}; |
|
|
@ -334,6 +464,7 @@ export default { |
|
|
|
height: calc(100% - 50px - 24px); |
|
|
|
margin-top: 24px; |
|
|
|
padding: 16px; |
|
|
|
padding-bottom: 80px; |
|
|
|
background-color: white; |
|
|
|
overflow: auto; |
|
|
|
} |
|
|
@ -357,4 +488,36 @@ export default { |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
.imgBox { |
|
|
|
display: flex; |
|
|
|
padding: 10px; |
|
|
|
.imgList { |
|
|
|
position: relative; |
|
|
|
margin-right: 10px; |
|
|
|
&:hover { |
|
|
|
.delImg { |
|
|
|
display: flex; |
|
|
|
} |
|
|
|
} |
|
|
|
.el-image { |
|
|
|
border-radius: 4px; |
|
|
|
} |
|
|
|
.delImg { |
|
|
|
display: none; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
right: 0; |
|
|
|
justify-content: center; |
|
|
|
align-items: center; |
|
|
|
width: 14px; |
|
|
|
height: 14px; |
|
|
|
color: #ffffff; |
|
|
|
cursor: pointer; |
|
|
|
background: rgba(0, 0, 0, 0.6); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.el-upload-list { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
</style> |
|
|
|