diff --git a/components/tki-tree/tki-tree.vue b/components/tki-tree/tki-tree.vue
index b3905f29..9b1742e5 100644
--- a/components/tki-tree/tki-tree.vue
+++ b/components/tki-tree/tki-tree.vue
@@ -3,9 +3,9 @@
- 取消
+ {{ cancelText }}
{{title}}
- 确定
+ {{ confirmText }}
@@ -78,6 +78,14 @@
type: String,
default: '' // #07bb07
},
+ cancelText: {
+ type: String,
+ default: '取消'
+ },
+ confirmText: {
+ type: String,
+ default: '确定'
+ },
cancelColor: { // 取消按钮颜色
type: String,
default: '' // #757575
diff --git a/main.js b/main.js
index e638e873..76f8d808 100644
--- a/main.js
+++ b/main.js
@@ -37,6 +37,7 @@ Vue.prototype.COMPANY = "agjt" // 鞍钢集团环境
if (process.env.NODE_ENV === 'development') {
// 开发环境
console.log('开发环境')
+ // Vue.prototype.url_config = 'http://121.37.106.37:9809/' // 121测试环境
// Vue.prototype.url_config = 'http://47.93.215.234:9809/' // 鞍钢正式地址(弃用)
// Vue.prototype.url_config = 'http://42.180.188.17:9809/' // 鞍钢正式地址
// Vue.prototype.url_config = 'http://42.180.188.17:11211/' // 鞍钢测试地址
@@ -46,6 +47,7 @@ if (process.env.NODE_ENV === 'development') {
// Vue.prototype.url_config = 'http://192.168.34.221:9111/' //郭圣雄本地
// Vue.prototype.url_config = 'http://182.90.224.237:51234/' //郭圣雄本地
Vue.prototype.url_config = 'http://192.168.34.155:19111/' //彭洁本地
+ // Vue.prototype.url_config = 'http://183.249.224.118:9000/'// 嘉兴项目
// Vue.prototype.work_url = 'http://47.93.215.234:19997' // 工作流线上地址(弃用)
// Vue.prototype.work_url = 'http://42.180.188.17:19997' // 工作流线上地址
// Vue.prototype.work_url = 'http://42.180.188.17:19097' // 工作流测试地址
diff --git a/manifest.json b/manifest.json
index 51b234b5..092338c9 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,8 +2,8 @@
"name" : "智慧安全", //中建四局
"appid" : "__UNI__4AA4101",
"description" : "",
- "versionName" : "1.0.3",
- "versionCode" : 103,
+ "versionName" : "1.3.6",
+ "versionCode" : 136,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
diff --git a/pages.json b/pages.json
index 36dbfb82..f1781e15 100644
--- a/pages.json
+++ b/pages.json
@@ -2778,6 +2778,27 @@
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
+ },
+ {
+ "path" : "pages/projectEnd/exerciseInfo/index",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/projectEnd/exerciseInfo/details",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/projectEnd/exerciseInfo/map",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
}
],
// "subPackages":[{
diff --git a/pages/projectEnd/exerciseInfo/details.vue b/pages/projectEnd/exerciseInfo/details.vue
new file mode 100644
index 00000000..93e822f2
--- /dev/null
+++ b/pages/projectEnd/exerciseInfo/details.vue
@@ -0,0 +1,272 @@
+
+
+
+
+
+
+ 预案名称
+ {{ scenariosName }}
+
+
+ 应急联系机构
+ {{ basicInfo.groupName }}
+
+
+ 联系人
+
+ {{ basicInfo.workerName }}
+
+
+ 联系方式
+ {{ basicInfo.workerPhone }}
+
+
+ 地址
+ {{ basicInfo.address }}
+
+
+
+ 是否签订合作协议
+ {{ basicInfo.isContract == 1 ? '是' : '否' }}
+
+
+
+
+
+
+ {{ item.name }}
+ {{ $formatDates(item.uid) }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/projectEnd/exerciseInfo/index.vue b/pages/projectEnd/exerciseInfo/index.vue
new file mode 100644
index 00000000..fd623446
--- /dev/null
+++ b/pages/projectEnd/exerciseInfo/index.vue
@@ -0,0 +1,452 @@
+
+
+
+
+
+
+ {{ item.scenariosName }}
+
+ 预案类型:{{ item.typeName }}
+ 编制时间: {{ item.createTime }}
+ 组织名称: {{ item.groupName }}
+
+
+
+ 暂无数据
+
+ searchItem(val)"
+ idKey="id"
+ :range="typeList"
+ rangeKey="name"
+ confirmColor="#4e8af7"
+ :selectParent="true"
+ />
+
+
+
+
+
+
+
diff --git a/pages/projectEnd/exerciseInfo/map.vue b/pages/projectEnd/exerciseInfo/map.vue
new file mode 100644
index 00000000..c0a09515
--- /dev/null
+++ b/pages/projectEnd/exerciseInfo/map.vue
@@ -0,0 +1,345 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/projectEnd/projectIndex/projectIndex.vue b/pages/projectEnd/projectIndex/projectIndex.vue
index fca35fb5..07efb28a 100644
--- a/pages/projectEnd/projectIndex/projectIndex.vue
+++ b/pages/projectEnd/projectIndex/projectIndex.vue
@@ -753,6 +753,11 @@
url: '../../projectEnd/emergencyDisposal/index'
})
break
+ case 'exerciseInfo':
+ uni.navigateTo({
+ url: '../../projectEnd/exerciseInfo/index'
+ })
+ break
case 'contractors':
uni.navigateTo({
url: '../../contractors/index'