“yueshang” 1 жил өмнө
parent
commit
aa2b013456

+ 47 - 0
api/fireSpecial/index.js

@@ -43,4 +43,51 @@ export function fireSpecialDelete(data) {
 				'content-type': 'application/x-www-form-urlencoded'
 			},
 	})
+}
+
+//动火审批
+//  获取本单位下的人员信息 
+export function fireWorkPage(data) {
+	return request({
+		url: '/admin-api/backend/fire-work/page',
+		method: 'get',
+		params: data
+	})
+}
+//  获取本单位下的人员信息 
+export function fireWorkIdGet(data) {
+	return request({
+		url: '/admin-api/backend/fire-work/get',
+		method: 'get',
+		params: data
+	})
+}
+//  修改
+export function fireWorkUpdate(data) {
+	return request({
+		url: '/admin-api/backend/fire-work/update',
+		method: 'post',
+		data: data
+	})
+}
+//  新增
+export function fireWorkCreate(data) {
+	return request({
+			url: '/admin-api/backend/fire-work/create',
+			method: 'post',
+			data: data
+		}
+
+	)
+}
+//  删除
+export function fireWorkDelete(data) {
+	return request({
+		url: '/admin-api/backend/fire-work/delete',
+		method: 'post',
+		data: data,
+		header: {
+				'content-type': 'application/x-www-form-urlencoded'
+			},
+	})
 }

+ 10 - 1
pages.json

@@ -918,7 +918,16 @@
 				"enablePullDownRefresh": false
 			}
 
-		}]
+		}    ,{
+                    "path" : "fire/fireWork/addWork/index",
+                    "style" :                                                                                    
+                {
+                    "navigationBarTitleText": "",
+                    "enablePullDownRefresh": false
+                }
+                
+                }
+            ]
 	}],
 	"tabBar": {
 		"color": "#000000",

+ 63 - 6
pagesB/fire/fireSpecial/addSpecial/index.vue

@@ -34,6 +34,27 @@
 							</u-form-item>
 						</view>
 					</picker>
+					<u-form-item label="附件">
+						<!-- 选择文件上传,limit="1则最多选择一张图片,del-icon隐藏删除按钮 -->
+						<uni-file-picker v-model="formData.attId" del-icon limit="1" auto-upload file-mediatype="all"
+							@select="selectFile" @delete="deleteFile" :disabled="isview">
+							<button type="primary" class="selectBtn" :disabled="isview">选择文件</button>
+							<!-- 加载中 -->
+							<isLodingModel v-if="loading"></isLodingModel>
+						</uni-file-picker>
+					</u-form-item>
+					<u-form-item label="已上传附件:" v-if="formData.att" labelWidth="150">
+						<u-icon name="close" color="#4CB2B6" size="24" @click="closeImage()" v-if="!isview">
+						</u-icon>
+						<!-- #ifdef MP-WEIXIN -->
+						<text style="color:#00a3f4;cursor: pointer;margin-left: 20px !important;"
+							@click.native="viewSee(formData.att)">点击预览文件</text>
+						<!-- #endif -->
+						<!-- #ifdef H5 -->
+						<a style="color:#00a3f4;cursor: pointer;margin-left: 20px !important;"
+							@click="viewSee(formData.att)">点击预览文件</a>
+						<!-- #endif -->
+					</u-form-item>
 				</view>
 			</u--form>
 		</view>
@@ -63,7 +84,9 @@
 		fireSpecialIdGet
 	} from '@/api/fireSpecial';
 	import {
-		NumericRule
+		NumericRule,
+		downSee,
+		uploadFile
 	} from '@/utils/common.js';
 	import config from '@/config'
 	import {
@@ -84,8 +107,11 @@
 					idcardno: '',
 					empGender: '',
 					empBirthday: '',
-					issueDate: ''
+					issueDate: '',
+					att:'',
+					attId:[]
 				},
+				loading:'',
 				rules: {
 					empName: [{
 						type: 'string',
@@ -151,6 +177,32 @@
             console.log(this.isedit,'ffffffff',this.isview);
 		},
 		methods: {
+			//查看已上传附件
+			viewSee(val) {
+				downSee(val)
+			},
+			// 移出图片函数
+			async deleteFile(e) {
+				this.formData.attId = [];
+				// console.log('移除了:');
+			},
+			selectFile(e) {
+			  let promises = [];
+			  for (let i = 0; i < e.tempFilePaths.length; i++) {
+			    const promise = uploadFile(e.tempFilePaths, i,this);
+			    promises.push(promise);
+			  }
+			  Promise.all(promises).then(result => {
+			    // 处理上传文件成功的结果
+			  }).catch(error => {
+			    // 处理上传文件失败的错误
+			  });
+			},
+			closeImage() {
+				this.formData.attId = []
+				this.formData.att=''
+				this.$forceUpdate()
+			},
 			sexSelect(e) {
 				this.formData.empGender = e.name
 			},
@@ -169,10 +221,6 @@
 					console.log(response, 'response')
 				})
 			},
-			//拍照
-			closeImage(val, index) {
-				this.formData.streetRepPicsDOList.splice(index, 1)
-			},
 			bindDateChange(e) {
 				this.formData.empBirthday = e.detail.value
 			},
@@ -180,6 +228,7 @@
 				this.formData.issueDate = e.detail.value
 			},
 			submit(ref) {
+				this.formData.att = this.formData.attId?this.formData.attId.join(''):this.formData.att
 				this.$refs[ref].validate().then(res => {
 					console.log(this.isview, 'this.formDatathis.isview');
 					if (this.isedit) {
@@ -248,4 +297,12 @@
 			background-color: #fff;
 		}
 	}
+	
+	.selectBtn {
+		width: 200rpx;
+		margin-left: 0;
+		font-size: 30rpx;
+		background-color: #4cb2b6;
+	}
+	
 </style>

+ 4 - 3
pagesB/fire/fireSpecial/index.vue

@@ -202,17 +202,18 @@
 			// 获取数据
 			getData() {
 				this.loading = true;
-				// 获取建筑信息详细信息
+				let arrOrg=[]
+				arrOrg.push(this.formData.orgId)
 				fireSpecialPage({
 					pageNo: this.pageNo,
 					pageSize: this.pageSize,
-					orgIds: this.formData.orgId,	
+					orgIds: arrOrg,	
 					empName:this.keyword
 				}).then(response => {
 					console.log(response,'sdsdsd');
 					this.isLoaded = true
 					this.tableData = response.data?[...this.tableData, ...response.data.list]:[]
-					this.total=response.total
+					this.total = response.data?response.data.total:0
 					this.loading = false
 				});
 			},

+ 351 - 0
pagesB/fire/fireWork/addWork/index.vue

@@ -0,0 +1,351 @@
+<template>
+	<view class="uni-container">
+		<view class="example container" :style="'height: ' + (screenHeight - wheight - 85) + 'px'">
+			<u--form ref="customForm" :model="formData" labelPosition="left" labelWidth="100%" labelAlign="left">
+				<view class="juli-bottom">
+					<u-form-item label="所属单位" prop="orgName" @click="showOrg = true; hideKeyboard()" :required="true">
+						<u-input v-model="formData.orgName" placeholder="请输入" :disabled="isview" />
+					</u-form-item>
+					<u-form-item label="动火事由" prop="workReason" :required="true">
+						<u-input v-model="formData.workReason" placeholder="请输入" :disabled="isview" />
+					</u-form-item>
+					<u-form-item label="动火作业执行人" prop="executor" :required="true"
+						@click="showExecutor = true; hideKeyboard()">
+						<u-input v-model="formData.executor" placeholder="请输入" :disabled="isview" />
+					</u-form-item>
+					<u-form-item label="动火台账状态" prop="workStatus" :required="true"
+						@click="showSex = true; hideKeyboard()">
+						<u-input v-model="formData.workStatus" placeholder="请输入" :disabled="isview" />
+					</u-form-item>
+					<picker mode="date" :value="dateTime" @change="bindDateChange" :disabled="isview">
+						<view class="datatime-street">
+							<u-form-item label="动火开始时间" prop="workBegin" :required="true">
+								<u-input v-model="formData.workBegin" placeholder="动火结束时间" class="add-date"
+									:disabled="isview" />
+							</u-form-item>
+						</view>
+					</picker>
+					<picker mode="date" @change="bindDateChange2" :disabled="isview">
+						<view class="datatime-street">
+							<u-form-item label="动火结束时间" prop="workEnd" :required="true">
+								<u-input v-model="formData.workEnd" placeholder="动火结束时间" class="add-date"
+									:disabled="isview" />
+							</u-form-item>
+						</view>
+					</picker>
+					<u-form-item label="附件">
+						<!-- 选择文件上传,limit="1则最多选择一张图片,del-icon隐藏删除按钮 -->
+						<uni-file-picker v-model="formData.attId" del-icon limit="1" auto-upload file-mediatype="all"
+							@select="selectFile" @delete="deleteFile" :disabled="isview">
+							<button type="primary" class="selectBtn" :disabled="isview">选择文件</button>
+							<!-- 加载中 -->
+							<isLodingModel v-if="loading"></isLodingModel>
+						</uni-file-picker>
+					</u-form-item>
+					<u-form-item label="已上传附件:" v-if="formData.att" labelWidth="150">
+						<u-icon name="close" color="#4CB2B6" size="24" @click="closeImage()" v-if="!isview">
+						</u-icon>
+						<!-- #ifdef MP-WEIXIN -->
+						<text style="color:#00a3f4;cursor: pointer;margin-left: 20px !important;"
+							@click.native="viewSee(formData.att)">点击预览文件</text>
+						<!-- #endif -->
+						<!-- #ifdef H5 -->
+						<a style="color:#00a3f4;cursor: pointer;margin-left: 20px !important;"
+							@click="viewSee(formData.att)">点击预览文件</a>
+						<!-- #endif -->
+					</u-form-item>
+				</view>
+			</u--form>
+		</view>
+		<view class="heigthButton">
+			<u-button v-if="isedit" @click="submit('customForm')" type="primary" shape="circle" size="large"
+				color="#4CB2B6" text="确认修改" style="width:200px">
+			</u-button>
+			<u-button v-else-if="!formData.id" @click="submit('customForm')" type="primary" shape="circle" size="large"
+				color="#4CB2B6" text="确认新增" style="width:200px">
+			</u-button>
+			<u-button v-else-if="isview" @click="submit('customForm')" type="primary" shape="circle" size="large"
+				color="#4CB2B6" text="返回" style="width:200px">
+			</u-button>
+		</view>
+		<u-action-sheet :show="showSex" :actions="actionsSex" title="请选择动火台账状态" @close="showSex = false"
+			@select="sexSelect">
+		</u-action-sheet>
+		<u-action-sheet :show="showExecutor" :actions="actionsExecutor" class="popups" title="请选择动火作业执行人" @close="showExecutor = false"
+			@select="clickExecutor">
+		</u-action-sheet>
+		<u-action-sheet :show="showOrg" :actions="orgaction" title="请选择单位" class="org-choice popups" @close="showOrg = false"
+			@select="orgSelect"></u-action-sheet>
+	</view>
+</template>
+
+<script>
+	import {
+		fireWorkUpdate,
+		fireWorkCreate,
+		fireWorkIdGet,
+		fireSpecialPage, //动火执行人
+	} from '@/api/fireSpecial';
+	import {
+		NumericRule,
+		downSee,
+		uploadFile
+	} from '@/utils/common.js';
+	import config from '@/config'
+	import {
+		DICT_TYPE,
+		getDictDatas
+	} from "@/utils/dict";
+	const baseUrlImg = config.baseUrlImg
+	export default {
+		data() {
+			return {
+				screenHeight: this.$screenHeight,
+				wheight: '',
+				showExecutor: false, //动火台账执行人
+				actionsExecutor:[],
+				formData: {
+					orgName: '',
+					orgId: '',
+					workReason: '',
+					executor: '',
+					workStatus: '',
+					workBegin: '',
+					workEnd: '',
+					att: '',
+					attId: []
+				},
+				loading: '',
+				rules: {
+					workReason: [{
+						type: 'string',
+						required: true,
+						message: '动火事由不能为空',
+						trigger: ['blur', 'change']
+					}],
+					executor: [{
+						type: 'string',
+						required: true,
+						message: '动火作业执行人不能为空',
+						trigger: ['blur', 'change']
+					}],
+					workStatus: [{
+						type: 'string',
+						required: true,
+						message: '动火台账状态不能为空',
+						trigger: ['blur', 'change']
+					}],
+					workBegin: [{
+						type: 'string',
+						required: true,
+						message: '动火开始时间不能为空',
+						trigger: ['blur', 'change']
+					}],
+					workEnd: [{
+						type: 'string',
+						required: true,
+						message: '动火结束时间不能为空',
+						trigger: ['blur', 'change']
+					}],
+					// empName: NumericRule(),
+				},
+				isedit: '',
+				isview: '',
+				dateTime: '',
+				showSex: false,
+				actionsSex: getDictDatas(DICT_TYPE.FIRE_WORK_STATUS), //性别
+				orgaction: [], //单位
+				showOrg: false
+			}
+		},
+		onReady() {
+			this.$refs.customForm.setRules(this.rules);
+		},
+		mounted() {
+			uni.createSelectorQuery().in(this).select('.heigthButton').boundingClientRect(data => {
+				this.wheight = data.height
+			}).exec()
+		},
+		onLoad(option) {
+			this.formData.orgName = option.orgName ? option.orgName : ''
+			this.formData.orgId = option.orgId ? option.orgId : ''
+			this.orgaction = option.orgaction ? JSON.parse(option.orgaction) : []
+			this.actionsSex.map(i => i.name = i.label)
+			uni.setNavigationBarTitle({
+				title: option.title
+			})
+			if (option.editData) {
+				this.isedit = true
+				this.isview = false
+				this.parentId = option.editData
+				this.getData()
+				// this.formData = JSON.parse(option.editData)
+			} else if (option.viewData) {
+				this.isview = true
+				this.parentId = option.viewData
+				this.getData()
+				// this.formData = JSON.parse(option.viewData)
+			} else {
+				this.isedit = false
+				this.isview = false
+			}
+			// 获取动火作业执行人数据
+			let arrOrg = []
+			arrOrg.push(this.formData.orgId)
+			fireSpecialPage({
+				pageNo: 1,
+				pageSize: 100,
+				orgIds: arrOrg,
+			}).then(response => {
+				console.log(response, 'sdsdsd');
+				this.actionsExecutor = response.data ? response.data.list : []
+				this.actionsExecutor.map(i => {
+					i.name = i.empName
+				})
+
+			});
+			console.log(this.isedit, 'ffffffff', this.isview);
+		},
+		methods: {
+			clickExecutor(e) { //动火台账执行人
+				this.formData.executor = e.name
+			},
+			//查看已上传附件
+			viewSee(val) {
+				downSee(val)
+			},
+			// 移出图片函数
+			async deleteFile(e) {
+				this.formData.attId = [];
+				// console.log('移除了:');
+			},
+			selectFile(e) {
+				let promises = [];
+				for (let i = 0; i < e.tempFilePaths.length; i++) {
+					const promise = uploadFile(e.tempFilePaths, i, this);
+					promises.push(promise);
+				}
+				Promise.all(promises).then(result => {
+					// 处理上传文件成功的结果
+				}).catch(error => {
+					// 处理上传文件失败的错误
+				});
+			},
+			closeImage() {
+				this.formData.attId = []
+				this.formData.att = ''
+				this.$forceUpdate()
+			},
+			sexSelect(e) {
+				this.formData.workStatus = e.name
+			},
+			orgSelect(e) {
+				this.formData.orgName = e.name
+				this.formData.orgId = e.value
+			},
+			hideKeyboard() {
+				uni.hideKeyboard()
+			},
+			getData() {
+				fireWorkIdGet({
+					id: this.parentId
+				}).then(response => {
+					this.formData = response.data
+					console.log(response, 'response')
+				})
+			},
+			bindDateChange(e) {
+				this.formData.workBegin = e.detail.value
+			},
+			bindDateChange2(e) {
+				console.log(e.detail, '3');
+				this.formData.workEnd = e.detail.value
+			},
+			submit(ref) {
+				this.formData.att = this.formData.attId? this.formData.attId.join('') :this.formData.att
+				this.$refs[ref].validate().then(res => {
+					console.log(this.isview, 'this.formDatathis.isview');
+					if (this.isedit) {
+						fireWorkUpdate(JSON.stringify(this.formData)).then(res => {
+							this.$modal.msg('修改成功')
+							this.isedit = false
+							setTimeout(() => {
+								uni.navigateBack()
+							}, 400)
+						})
+					} else if (this.isview) {
+						this.isview = false
+						uni.navigateBack()
+					} else {
+						fireWorkCreate(JSON.stringify(this.formData)).then(response => {
+							this.$modal.msg('新增成功')
+							setTimeout(() => {
+								uni.navigateBack()
+							}, 400)
+						})
+					}
+
+				}).catch(err => {
+					console.log(err);
+				})
+			}
+		}
+	}
+</script>
+
+
+<style lang="scss" scoped>
+	body {
+		background-color: #f5f7f9;
+	}
+
+	page {
+		background-color: #f5f7f9 !important;
+	}
+
+	.uni-container {
+		// height: 100vh;
+		background-color: #f5f7f9 !important;
+	}
+
+	/deep/.uni-card {
+		position: relative;
+		box-shadow: 0px 0px 3px 0px rgba(86, 165, 168, 0.15);
+		border-radius: 30rpx;
+	}
+
+	.example {
+		overflow-y: auto;
+	}
+
+	.juli-bottom {
+		/deep/ .u-form-item__body__left__content__label {
+			color: #000 !important;
+		}
+	}
+
+	.org-choice {
+		/deep/.u-action-sheet {
+			overflow-y: auto;
+			height: 1000rpx;
+			background-color: #fff;
+		}
+	}
+
+	.selectBtn {
+		width: 200rpx;
+		margin-left: 0;
+		font-size: 30rpx;
+		background-color: #4cb2b6;
+	}
+	.popups{
+		/deep/.u-action-sheet {
+			overflow-y: auto;
+			height: 1000rpx;
+			background-color: #fff;
+		}
+	}
+	.example {
+		overflow-y: auto;
+	}
+</style>s

+ 405 - 8
pagesB/fire/fireWork/index.vue

@@ -1,22 +1,419 @@
 <template>
-	<view>
-		
+	<view class="uni-container uni-container-bg">
+		<view class="example container" :style="'height: ' + (screenHeight - 100) + 'px'">
+			<!-- 搜索框 -->
+			<uni-row class="demo-uni-row padding-tb-sm" :gutter="20" width="100%">
+				<uni-col :span="24">
+					<view class="u-page__tag-item">
+						<u-search placeholder="请输入人员姓名" bgColor="#edf6f9" borderColor="#4cb2b6" v-model="keyword"
+							:show-action="true" @custom="search"></u-search>
+					</view>
+				</uni-col>
+			</uni-row>
+			<!-- 下拉框 -->
+			<view class="u-page__tag-item"
+				style="margin-bottom: 26upx;width: 700upx;border-bottom: 2px solid #55cbbf;background-color: #f5f7fa;">
+				<u-form>
+					<u-form-item prop="orgName" @click="
+						showOrg = true;
+						hideKeyboard();
+					" label="单位选择:" labelWidth="100px">
+						<u--input border="none" disabled v-model="formData.orgName" placeholder="请选择所属单位"></u--input>
+						<u-icon slot="right" name="arrow-down"></u-icon>
+					</u-form-item>
+				</u-form>
+			</view>
+			<!-- 卡片栏 -->
+			<view v-if="tableData.length>0 && isLoaded" style="margin-bottom: 120rpx">
+				<view v-for="(item, index) in tableData" :key="index"
+					v-if="formData.orgName === item.orgName || formData.orgId === item.orgId">
+					<uni-card>
+						<!-- 简要内容 -->
+						<view style="display: flex;margin-bottom: 15rpx; color: #728f90;">
+							<text class="name-align-drill">动火执行人:</text>
+							<text class="conts">{{ item.executor }}</text>
+						</view>
+						<view style="display: flex;margin-bottom: 15rpx; color: #728f90;">
+							<text class="name-align-drill">动火事由:</text>
+							<text class="conts">{{ item.workReason }}</text>
+						</view>
+						<view style="margin-top: 80rpx;">
+							<!-- 删除按钮 -->
+							<view class="an-niu" @click.native="showModal(item.id)" v-if="item.workStatus=='未审核'">
+								<text class="detailDel">删除</text>
+							</view>
+							<view class="an-niu" @click.native="onClick(item.id)" link><text class="detail">查看详情</text>
+							</view>
+							<view class="an-niu" @click.native="editClick(item.id)" link><text class="detail" v-if="item.workStatus=='未审核'">编辑</text>
+							</view>
+						</view>
+					</uni-card>
+				</view>
+			</view>
+			<!-- tableData为空时显示  -->
+			<view v-else-if="tableData.length==0 && isLoaded" style="text-align: center;">
+				<view class="text-gray" style="padding-top: 20px;">
+					<img :src="tan90" alt="暂无数据" />
+				</view>
+			</view>
+			<view>
+				<image :src="Group" @click="addClick" class="tiantupian"></image>
+			</view>
+			<u-action-sheet :show="showOrg" :actions="actions" title="请选择单位" @close="showOrg = false"
+				@select="sexSelect"></u-action-sheet>
+			<u-modal :show="show" @confirm="confirm" @cancel="cancel" @close="close" asyncClose closeOnClickOverlay
+				showCancelButton confirmColor="red" :title="title" :content="content" ref="uModal"></u-modal>
+			<!-- 加载中 -->
+			<isLodingModel></isLodingModel>
+		</view>
 	</view>
 </template>
-
 <script>
+	var that = '';
+	import {
+		getOrgId //获取orgId
+	} from '@/api/architecture';
+	import {
+		fireWorkPage,
+		fireWorkUpdate,
+		fireWorkDelete
+	} from '@/api/fireSpecial';
+	import config from '@/config'
+	const baseUrlImg = config.baseUrlImg
 	export default {
 		data() {
 			return {
-				
+				screenHeight: this.$screenHeight,
+				wheight: '',
+				keyword: '',
+				isLoaded: false,
+				Group: `${baseUrlImg}/checkActive/Group.png`,
+				showOrg: false,
+				actions: [],
+				// 数据
+				tableData: {},
+				title: '是否删除该数据项?',
+				content: '确认删除?',
+				id: '',
+				tan90: `${baseUrlImg}/tan90.png`,
+				// 每页数据量
+				pageSize: 5,
+				// 当前页
+				pageNo: 1,
+				// 数据总量
+				total: 0,
+				// tableData数据加载中
+				loading: false,
+				// 初始化时搜索框的值
+				keyword: '',
+				// 存放orgid,orgname
+				formData: {},
+				show: false,
+				showtimeStart: false,
+				showtimeEnd: false
+			};
+		},
+		// 在 vue页面,向起始页通过事件传递数据
+		onLoad: function(option) {
+
+			// this.init();
+		},
+		watch: {
+			loading: {
+				handler(newLength, oldLength) {
+					this.$modal.isLoadingModel(this.loading)
+				},
+				immediate: true
 			}
 		},
+		onShow() {
+			this.actions = []
+			that = this;
+			getOrgId({
+				pageNo: this.pageNo,
+				pageSize: this.pageSize,
+				userId: this.$store.state.user.id
+			}).then(response => {
+				console.log(response, 'response');
+				// 取到用户对应的单位名称与id
+				response.data.map(v => {
+					this.actions.push({
+						id: v.dwid,
+						name: v.orgName
+					});
+				});
+				console.log(response.data, '21321312');
+				this.formData.orgName = response.data[0].orgName ? response.data[0].orgName : '';
+				this.formData.orgId = response.data[0].dwid;
+				this.tableData = []
+				this.getData();
+			});
+
+		},
+		onReady() {},
+		mixins: [uni.$u.mixin],
 		methods: {
-			
+			search(val) {
+				console.log(val, 'valvals', this.formData);
+				this.tableData = []
+				this.getData()
+			},
+			async init() {
+				var t = this;
+				t.$.getlocation()
+					.then(res => {
+						console.log(res, 'res');
+					})
+					.catch(err => {
+						console.log(err, 'err');
+					});
+			},
+			// 模态框内容
+			showModal(val) {
+				this.show = true;
+				this.id = val;
+				console.log(val, 'val.id');
+			},
+			confirm() {
+				this.show = false;
+				fireWorkDelete({
+					id: this.id
+				}).then(response => {
+					this.loading = true;
+					this.isLoaded = false
+					this.tableData = []
+					this.getData();
+					console.log(this.tableData, '获取建筑信息详细信息获取建筑信息详细信息获取建筑信息详细信息获取建筑信息详细信息');
+				});
+			},
+			close() {
+				this.show = false;
+				console.log('close');
+			},
+			cancel() {
+				this.show = false;
+				console.log('cancel');
+			},
+			//查看详情
+			addClickDetail(val) {
+				uni.navigateTo({
+					url: `/pagesA/fire/architecture/add_architecture/add_architecture?item=${JSON.stringify(val)}`
+				});
+			},
+			// 获取数据
+			getData() {
+				this.loading = true;
+				// 获取建筑信息详细信息
+				let arrOrg = []
+				arrOrg.push(this.formData.orgId)
+				fireWorkPage({
+					pageNo: this.pageNo,
+					pageSize: this.pageSize,
+					orgIds: arrOrg,
+					executor: this.keyword
+				}).then(response => {
+					console.log(response, 'sdsdsd');
+					this.isLoaded = true
+					this.tableData = response.data ? [...this.tableData, ...response.data.list] : []
+					this.total = response.data?response.data.total:0
+					this.loading = false
+				});
+			},
+
+
+			// 传递数据
+			onClick(val) {
+				this.isLoaded = false
+				uni.navigateTo({
+					url: `/pagesB/fire/fireWork/addWork/index?title=查看特动火审批&&viewData=${val}`
+				})
+			},
+			editClick(val) {
+				this.isLoaded = false
+				uni.navigateTo({
+					url: `/pagesB/fire/fireWork/addWork/index?title=查看动火审批&&editData=${val}&&orgaction=${JSON.stringify(this.actions)}`
+				})
+			},
+			addClick() {
+				this.isLoaded = false
+				uni.navigateTo({
+					url: `/pagesB/fire/fireWork/addWork/index?title=新增动火审批&&orgName=${this.formData.orgName}&&orgId=${this.formData.orgId}&&orgaction=${JSON.stringify(this.actions)}`
+				});
+			},
+
+			sexSelect(e) {
+				this.formData.orgId = e.id;
+				this.formData.orgName = e.name;
+				this.getData()
+			},
+			// 触底的事件
+			onReachBottom() {
+				// 判断是否还有下一页数据
+				if (this.pageNo * this.pageSize >= this.total)
+					return uni.showToast({
+						title: `数据加载完毕`
+					});
+				// 判断是否正在请求其它数据,如果是,则不发起额外的请求
+				if (this.loading) return;
+				this.pageNo += 1;
+				this.getData(this.pageNo);
+			},
+
+			// 隐藏键盘
+			hideKeyboard() {
+				uni.hideKeyboard();
+			},
 		}
-	}
+	};
 </script>
 
-<style>
+<style lang="scss" scoped>
+	body {
+		background-color: #f5f7f9;
+	}
+
+	page {
+		background-color: #f5f7f9;
+	}
+
+	/deep/ .u-tabs__wrapper[data-v-0de61367],
+	.u-tabs__wrapper.data-v-0de61367 {
+		width: 99%;
+	}
+
+	.uni-container {
+		height: 100vh;
+		padding-right: 20upx;
+	}
+
+	.addInsp {
+		width: 40px;
+		position: fixed;
+		right: 4px;
+		z-index: 99999;
+	}
+
+	::v-deep .u-icon__icon {
+		margin-right: 0px !important;
+	}
+
+	.an-niu {
+		float: right;
+		font-size: 10px;
+		text-align: center;
+		display: flex;
+		margin-top: -64upx;
+		padding-bottom: 30rpx;
+		// margin-top: 50rpx;
+		color: #fff;
+
+		.detail {
+			width: 60px;
+			height: 60rpx;
+			padding: 0 20rpx;
+			border-radius: 30px;
+			background-color: #f7c41e;
+			margin-right: 20rpx;
+			text-align: center;
+			line-height: 60rpx;
+			font-size: 27upx;
+		}
+
+		.detailDel {
+			width: 60px;
+			height: 60rpx;
+			padding: 0 20rpx;
+			border-radius: 30px;
+			background-color: #ff2e31;
+			color: white;
+			margin-right: 20rpx;
+			text-align: center;
+			line-height: 60rpx;
+			font-size: 30upx;
+		}
 
-</style>
+		.solve {
+			width: 62px;
+			height: 60rpx;
+			margin-right: 20rpx;
+			border-radius: 30px;
+			background-color: #4cb2b6;
+			line-height: 60rpx;
+		}
+
+		/deep/ .padding-tb-sm {
+			padding-top: 0px;
+			padding-bottom: 10px;
+		}
+
+		.deletes {
+			width: 62px;
+			height: 60rpx;
+			border-radius: 60rpx;
+			background-color: red;
+			color: #fff;
+			line-height: 60rpx;
+		}
+	}
+
+	/deep/.segmented-control__item--button {
+		background-color: rgb(76, 178, 182) !important;
+	}
+
+	/deep/.segmented-control__item--button--active {
+		background-color: #ffffff !important;
+	}
+
+	/deep/.uni-card {
+		box-shadow: 0px 0px 3px 0px rgba(86, 165, 168, 0.63) !important;
+		border-radius: 30rpx;
+	}
+
+	.tiantupian {
+		width: 110rpx;
+		height: 110rpx;
+		position: fixed;
+		right: 15px;
+		bottom: 30rpx;
+	}
+
+	//列表样式
+	.titles {
+		font-weight: 600;
+		margin-bottom: 10rpx;
+		color: black;
+		font-size: 32rpx;
+	}
+
+	/deep/ .u-form-item__body__left__content__label {
+		font-size: 28upx !important;
+	}
+
+	.conts {
+		max-width: 470upx;
+		display: -webkit-box;
+		/*弹性伸缩盒子模型显示*/
+		-webkit-box-orient: vertical;
+		/*排列方式*/
+		-webkit-line-clamp: 1;
+		/*显示文本行数*/
+		overflow: hidden;
+		/*溢出隐藏*/
+		color: #274647;
+		text-overflow: ellipsis;
+	}
+
+	.max-width {
+		max-width: 180upx;
+	}
+
+	/deep/.u-action-sheet {
+		overflow-y: auto;
+		height: 1000rpx;
+		background-color: #fff;
+	}
+
+	.example {
+		overflow-y: auto;
+	}
+</style>

+ 36 - 0
utils/common.js

@@ -286,4 +286,40 @@ export function downSee(appendix) {
 			});
 		}
 	}) // #endif
+}
+
+export function uploadFile(tempFilePaths, i, that) {
+	return new Promise((resolve, reject) => {
+		const loading = uni.showLoading({
+			title: '文件上传中...',
+			mask: true
+		});
+		uni.uploadFile({
+			url: baseUrl + '/admin-api/infra/file/upload', // 后端用于处理图片并返回图片地址及文件的接口
+			filePath: tempFilePaths[i],
+			name: 'file',
+			header: {
+				Authorization: 'Bearer ' + getAccessToken() // 请求token
+			},
+			success: res => {
+				let data = JSON.parse(res.data);
+				// that.formData.attId.push(data.data)
+				that.formData.attId[0]=data.data
+				uni.showToast({
+					title: '文件上传成功!'
+				});
+				that.loading = false
+			},
+			fail: err => {
+				uni.showToast({
+					icon: 'error',
+					title: '文件上传失败!'
+				});
+				that.loading = false
+			},
+			complete: () => {
+				uni.hideLoading(loading);
+			}
+		});
+	});
 }

+ 8 - 8
utils/dict.js

@@ -85,13 +85,13 @@ export const DICT_TYPE = {
 
 	// ==========移动端 - PAGE 模块 ==========
 	FPD_TYPE: 'fpd_type', //设备类型
-	TRAIN_DRILL: 'train_drill',  //培训演练类别
-	BACKEND_ORG_TYPE2:'backend_org_type', //单位类型
-   // ==========移动端 - 人员信息模块 ==========
-     XUE_LI:'xueli',
-	 // ==========隐患管理模块 ==========
-	 DANGER_TYPE:'dangerType'
-
+	TRAIN_DRILL: 'train_drill', //培训演练类别
+	BACKEND_ORG_TYPE2: 'backend_org_type', //单位类型
+	// ==========移动端 - 人员信息模块 ==========
+	XUE_LI: 'xueli',
+	// ==========隐患管理模块 ==========
+	DANGER_TYPE: 'dangerType',
+	FIRE_WORK_STATUS: "fire_work_status", //动火台账状态
 
 	// ========== 数据字典映射 =================
 
@@ -153,4 +153,4 @@ export function getDictData(dictType, value) {
 export function getDictDataLabel(dictType, value) {
 	const dict = getDictData(dictType, value);
 	return dict ? dict.label : "";
-}
+}