diff --git a/ruoyi-ui/src/api/video/prjphotography.js b/ruoyi-ui/src/api/video/prjphotography.js
index b010b72c..e2118871 100644
--- a/ruoyi-ui/src/api/video/prjphotography.js
+++ b/ruoyi-ui/src/api/video/prjphotography.js
@@ -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,
diff --git a/ruoyi-ui/src/views/project/surProject/index.vue b/ruoyi-ui/src/views/project/surProject/index.vue
index bcf53f10..0e43fefa 100644
--- a/ruoyi-ui/src/views/project/surProject/index.vue
+++ b/ruoyi-ui/src/views/project/surProject/index.vue
@@ -474,7 +474,7 @@
command="handlePrjPhotography"
icon="el-icon-camera"
v-hasPermi="['video:prjphotography:list']"
- >延时摄影项目全景
-
+
@@ -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();
diff --git a/ruoyi-ui/src/views/video/prjphotography/prjPhotographyDrawer.vue b/ruoyi-ui/src/views/video/prjphotography/prjPhotographyDrawer.vue
index 41b70b4b..1bc9f042 100644
--- a/ruoyi-ui/src/views/video/prjphotography/prjPhotographyDrawer.vue
+++ b/ruoyi-ui/src/views/video/prjphotography/prjPhotographyDrawer.vue
@@ -2,7 +2,7 @@
- {{ title + " 【延时摄影】" }}
+ {{ title + " 【项目全景】" }}