maxiaoxiao 2 weeks ago
parent
commit
f67dbdecc5
3 changed files with 126 additions and 4 deletions
  1. 3 4
      main.js
  2. 13 0
      pages.json
  3. 110 0
      pages/index/common/tjDialog.vue

+ 3 - 4
main.js

@@ -5,10 +5,9 @@ import plugins from './plugins' // plugins
 import './permission' // permission
 Vue.use(plugins)
 
-import Vant from 'vant';
+// import Vant from 'vant';
 // import 'vant/lib/index.css';
-Vue.use(Vant)
-
+// Vue.use(Vant)
 
 
 Vue.config.productionTip = false
@@ -20,4 +19,4 @@ const app = new Vue({
   ...App
 })
 
-app.$mount()
+app.$mount()

+ 13 - 0
pages.json

@@ -81,6 +81,19 @@
 			"style": {
 				"navigationBarTitleText": "确认/退回图斑外业任务"
 			}
+		},
+		{
+			"path": "pages/index/common/tjDialog",
+			"style": {
+				"navigationBarTitleText": "提交"
+			}
+		},
+		{
+			"path" : "pages/common/tabbar/tabbar",
+			"style" : 
+			{
+				"navigationBarTitleText" : ""
+			}
 		}
 	],
 	"tabBar": {

+ 110 - 0
pages/index/common/tjDialog.vue

@@ -0,0 +1,110 @@
+<template>
+	<view class="container">
+		<view class="example">
+			<uni-forms ref="form" :model="firm" labelWidth="80px">
+				<uni-forms-item label="图斑编号:" name="dkbh">
+					{{ tjform.dkbh }}
+				</uni-forms-item>
+				<div class="tit">
+					确定对该图斑数据进行提交吗?提交后无法进行修改。
+				</div>
+				<div v-for="(note, nkey) in JSON.parse(tjform.notes)" :key="nkey">
+					{{ note.stepValue }}:{{ note.notes }}
+				</div>
+				<div>提交数据包括图斑核查数据、审核数据、合法性判定数据。</div>
+			</uni-forms>
+			<button type="primary" @click="submitForm">确 定</button>
+		</view>
+	</view>
+</template>
+
+<script>
+	import {
+		getTjInfo,
+		tjWork
+	} from "@/api/dkjbxx.js";
+
+
+	export default {
+		data() {
+			return {
+				obj: {},
+				tjform: {
+					"id": "",
+					"confirmState": "",
+					"confirmType": "",
+					"confirmNotse": "",
+					"auditflowStep": "WYQR"
+				},
+			}
+		},
+
+		onLoad() {
+			let obj = uni.$globalData || {}
+			let pram = {
+				dkid: obj.id,
+				auditflowStep: 'WYTJ',
+				auditflowId: obj.auditflowId,
+				fieldworkId: obj.fieldworkId
+			};
+			this.getInfo(pram)
+		},
+		onReady() {
+			// this.$refs.form.setRules(this.rules)
+		},
+		methods: {
+			getInfo(pram) {
+				getTjInfo(pram).then(response => {
+					this.tjform = response.data
+					// tjform.value = {
+					//       ...res.data,
+					//       dkbh: infoObj.dkbh,
+					//       auditflowStep: 'WYTJ',
+					//     };
+				})
+			},
+			submit(ref) {
+				this.$refs.form.validate().then(res => {
+					confirm(this.firm).then(response => {
+						this.$modal.msgSuccess("修改成功")
+					})
+				})
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	page {
+		background-color: #ffffff;
+	}
+
+	.example {
+		padding: 15px;
+		background-color: #fff;
+	}
+
+	.segmented-control {
+		margin-bottom: 15px;
+	}
+
+	.button-group {
+		margin-top: 15px;
+		display: flex;
+		justify-content: space-around;
+	}
+
+	.form-item {
+		display: flex;
+		align-items: center;
+		flex: 1;
+	}
+
+	.button {
+		display: flex;
+		align-items: center;
+		height: 35px;
+		line-height: 35px;
+		margin-left: 10px;
+	}
+</style>