提交代码

dev_xds
姜玉琦 2024-01-10 15:03:07 +08:00
parent fc09fb5097
commit c94a1b5cd8
4 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
import request from '@/utils/request'
// 查询项目延时摄影列表
// 查询项目项目全景列表
export function listPrjphotography(query) {
return request({
url: '/video/prjphotography/list',
@ -9,7 +9,7 @@ export function listPrjphotography(query) {
})
}
// 查询项目延时摄影详细
// 查询项目项目全景详细
export function getPrjphotography(id) {
return request({
url: '/video/prjphotography/' + id,
@ -17,7 +17,7 @@ export function getPrjphotography(id) {
})
}
// 新增项目延时摄影
// 新增项目项目全景
export function addPrjphotography(data) {
return request({
url: '/video/prjphotography',
@ -26,7 +26,7 @@ export function addPrjphotography(data) {
})
}
// 修改项目延时摄影
// 修改项目项目全景
export function updatePrjphotography(data) {
return request({
url: '/video/prjphotography',
@ -35,7 +35,7 @@ export function updatePrjphotography(data) {
})
}
// 删除项目延时摄影
// 删除项目项目全景
export function delPrjphotography(id) {
return request({
url: '/video/prjphotography/' + id,

View File

@ -474,7 +474,7 @@
command="handlePrjPhotography"
icon="el-icon-camera"
v-hasPermi="['video:prjphotography:list']"
>延时摄影</el-dropdown-item
>项目全景</el-dropdown-item
>
<el-dropdown-item
command="handleCheckDetection"

View File

@ -89,7 +89,7 @@
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
@pagination="getList" />
<!-- 添加或修改项目延时摄影对话框 -->
<!-- 添加或修改项目项目全景对话框 -->
<el-dialog :title="title" :visible.sync="open" width="720px" custom-class="prj-photography-drawer-dlg"
append-to-body :close-on-click-modal="false" :close-on-press-escape="false">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
@ -138,7 +138,7 @@ export default {
showSearch: true,
//
total: 0,
//
//
prjphotographyList: [],
//
title: "",
@ -201,7 +201,7 @@ export default {
this.prj=prj;
this.getList();
},
/** 查询项目延时摄影列表 */
/** 查询项目项目全景列表 */
getList() {
this.loading = true;
this.queryParams.projectId=this.prj.id;
@ -259,7 +259,7 @@ export default {
handleAdd() {
this.reset();
this.open = true;
this.title = "项目延时摄影 - 新增";
this.title = "项目项目全景 - 新增";
},
/** 修改按钮操作 */
handleUpdate(row) {
@ -269,7 +269,7 @@ export default {
this.form = response.data;
this.form.imageUrls=(this.$tryToJson(this.form.imageUrl,[]));
this.open = true;
this.title = "项目延时摄影 - 修改";
this.title = "项目项目全景 - 修改";
});
},
/** 提交按钮 */
@ -308,7 +308,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除项目延时摄影编号为"' + ids + '"的数据项?').then(function () {
this.$modal.confirm('是否确认删除项目项目全景编号为"' + ids + '"的数据项?').then(function () {
return delPrjphotography(ids);
}).then(() => {
this.getList();

View File

@ -2,7 +2,7 @@
<div class="prj-photography-drawer" v-if="isOpen">
<el-drawer v-if="isOpen" :visible.sync="isOpen" direction="rtl" size="70%" style="padding-left: 20px">
<template slot="title">
<div>{{ title + " 【延时摄影】" }}</div>
<div>{{ title + " 【项目全景】" }}</div>
</template>
<div>
<mainIndex ref="index"></mainIndex>