budgetshenhe.vue 14.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
<template>
	<view class="box">
		<view class="head">
			<view class="headleft">
				<input type="text" placeholder="输入项目名称查询" @input="enterxiangmu" />
			</view>
			<view class="headright" @click="chaxun">查询</view>
		</view>

		<view class="nodata" v-if="zixunlist.length==0">暂无数据</view>
		<view class="fenzulist" v-else>
			<view class="fenzuitem" v-for="(item,index) in zixunlist" :key="index">
				<view class="fenzutop">
					<view class="fenzutopleft">
						<view class="fenzutopshang">
							<text class="bianhao">项目编号:</text><text class="bianhaonum"> {{item.fnumber}}</text>
						</view>
						<!-- <view class="fenzutopshang">
							<text class="bianhao">任务编号:</text><text class="bianhaonum"> {{item.fbillno}}</text>
						</view> -->
					</view>
					<!-- <view class="fenzutopright">
						<view class="fenzunoimg">
							<image src="../../static/img/yifen.png" mode="" v-if="item.ftaskprocess=='已分配'"></image>
							<image src="../../static/img/nofen.png" mode="" v-else></image>


						</view>
						<view class="fenzunoname">{{item.ftaskprocess}}</view>
					</view> -->
				</view>
				<view class="fenzuobottom">
					<view class="fenzutopshang">
						<text class="bianhao">项目名称:</text><text class="bianhaonum">
							{{item.fname}}
						</text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">评审类型:</text><text class="bianhaonum">{{item.freviewtype}}</text>
					</view>
					
					
					<!-- 任务状态 -->
					<view class="statebox flexone">
						<view class="stateboxitem flexfour">
							<view class="stateboxitemtop">任务</view>
							<view class='stateboxitembot flexone'>
								<view class="stateimg">
									<image src="../../static/img/duigou.png" mode=""></image>
								</view>
								<view class="statename">{{item.ftaskstatus}}</view>
							</view>
						</view>
						<view class="stateboxitem flexfour">
							<view class="stateboxitemtop">征求意见稿初稿</view>
							<view class='stateboxitembot flexone'>
								<view class="stateimg" v-if="item.fdirstatus=='未提交'">
									
									<image src="../../static/img/wrong.png" mode=""></image>
								</view>
								<view class="stateimg" v-else>
									<image src="../../static/img/yifen.png" mode=""></image>
								</view>
								<view class="statename">{{item.fdirstatus}}</view>
							</view>
						</view>
						<view class="stateboxitem flexfour">
							<view class="stateboxitemtop">征求意见稿定稿</view>
							<view class='stateboxitembot flexone'>
								<view class="stateimg" v-if="item.ffinauditstatus=='未提交'">
									<image src="../../static/img/wrong.png" mode=""></image>
								</view>
								<view class="stateimg" v-else>
									<image src="../../static/img/yifen.png" mode=""></image>
								</view>
								<view class="statename">{{item.ffinauditstatus}}</view>
							</view>
						</view>
						<view class="stateboxitem flexfour">
							<view class="stateboxitemtop">评审报告</view>
							<view class='stateboxitembot flexone'>
								<view class="stateimg" v-if="item.freporttatus=='未提交'">
									<image src="../../static/img/wrong.png" mode=""></image>
								</view>
								<view class="stateimg" v-if="item.freporttatus=='已提交'">
									<image src="../../static/img/report.png" mode=""></image>
								</view>
								<view class="stateimg" v-if="item.freporttatus=='已确认'">
									<image src="../../static/img/yifen.png" mode=""></image>
								</view>
								
								<view class="statename">{{item.freporttatus==null?'':item.freporttatus}}</view>
							</view>
						</view>
						<view class="stateboxitem flexfour">
							<view class="stateboxitemtop">合同发票</view>
							<view class='stateboxitembot flexone'>
								<view class="stateimg" v-if="item.fservicestatus=='未提交'">
									<image src="../../static/img/wrong.png" mode=""></image>
								</view>
								<view class="stateimg" v-if="item.fservicestatus=='已提交'">
									<image src="../../static/img/report.png" mode=""></image>
								</view>
								<view class="stateimg" v-if="item.fservicestatus=='已确认'">
									<image src="../../static/img/yifen.png" mode=""></image>
								</view>
								<view class="statename">{{item.fservicestatus==null?'':item.fservicestatus}}</view>
							</view>
						</view>
					</view>
					<!--  状态按钮-->
					<view class="btnlist">
						<view class="btnitem" @click="see(item)">查看</view>
						
						
						<!-- <view class="btnitem" @click="jingban(item)" v-if="showhide[4].status!=0">经办人审核</view>
						<view class="btnitem" @click="pingshen(item)" v-if="showhide[4].status!=0">评审报告确认</view>
						<view class="btnitem" @click="concatsure(item)" v-if="showhide[4].status!=0">合同发票确认</view>
						 -->
						<!-- 
						 <view class="btnitem" @click="question(item)">问题往来</view>
						<view class="btnitem" @click="jingban(item)" >经办人审核</view>
						<view class="btnitem" @click="pingshen(item)" >评审报告确认</view>
						<view class="btnitem" @click="concatsure(item)" >合同发票确认</view> -->
					</view>
					<!-- <view class="fenzutopshang">
						<text class="bianhao">项目类型:</text><text class="bianhaonum"> {{item.projecttype}}</text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">项目组:</text><text class="bianhaonum">{{item.fteam==null?'':item.fteam}} </text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">评审类型:</text><text class="bianhaonum">{{item.freviewtype}} </text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">评审类型:</text><text class="bianhaonum">{{item.freviewtype}} </text>
					</view>
					<view class="fenzutopshang">

						<text class="bianhao">项目组分配状态:</text><text class="bianhaonum">{{item.ftaskprocess}}</text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">任务状态:</text><text class="bianhaonum" v-if="item.ftaskstatus==null"></text><text class="bianhaonum"
						 v-else>{{item.ftaskstatus}}</text>
						
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">评审报告状态:</text><text class="bianhaonum" v-if="item.freporttatus==null"></text><text class="bianhaonum"
						 v-else>{{item.freporttatus}}</text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">合同发票状态:</text><text class="bianhaonum" v-if="item.fservicestatus==null"></text><text class="bianhaonum"
						 v-else>{{item.fservicestatus}}</text>
					</view>

					<view class="fenzubottom" @click="xiangmuzufen" :data-item="item">
						<view class="fenzubtn">项目组分配</view>
					</view> -->
				</view>
			</view>

			<!-- <view class="fenzuitem">
				<view class="fenzutop">
					<view class="fenzutopleft">
						<view class="fenzutopshang">
							<text class="bianhao">项目编号:</text><text class="bianhaonum"> 20191115001</text>
						</view>
						<view class="fenzutopshang">
							<text class="bianhao">任务编号:</text><text class="bianhaonum"> 20191115001</text>
						</view>
					</view>
					<view class="fenzutopright">
						<view class="fenzunoimg">
							<image src="../../static/img/yifen.png" mode=""></image>
						</view>
						<view class="fenzunoname">未分配</view>
					</view>
				</view>
				<view class="fenzuobottom">
					<view class="fenzutopshang">
						<text class="bianhao">项目名称:</text><text class="bianhaonum">
							机关服务中心会务处保安服务项目
						</text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">项目类型:</text><text class="bianhaonum"> 预算</text>
					</view>
					<view class="fenzutopshang">
						<text class="bianhao">项目组:</text><text class="bianhaonum"> </text>
					</view>

					<view class="fenzubottom">
						<view class="fenzubtn">项目组分配</view>
					</view>
				</view>


			</view>

		 -->


		</view>
	</view>


</template>

<script>
	import app from "../../App.vue";
	export default {
		data() {
			return {
				zixunlist: [],
				keyword: '',
				querylist: [],
				type:'',
				showhide:''
			}
		},
		onLoad(options) {
				this.showhide = uni.getStorageSync("showhide");
				console.log('4389489',JSON.stringify(this.showhide))
			this.type=options.type;
			this.type=Number(this.type)
			switch(this.type){
				case 1:
				console.log(this.type)
				uni.setNavigationBarTitle({
				  title:'预算项目审核'
				})
				this.project='prj_toaudit_budget'
				break;
				case 2:
				console.log(this.type)
				uni.setNavigationBarTitle({
				  title:'结算项目审核'
				})
				this.project='prj_toaudit_settlement'
				break;
				case 3:
				uni.setNavigationBarTitle({
				  title:'决算项目审核'
				})
				this.project='prj_toaudit_change'
				break;
				case 4:
				uni.setNavigationBarTitle({
				  title:'土地成本项目审核'
				})
				this.project='prj_toaudit_land'
				break;
			}
		},
		methods: {
			// 项目组分配
			xiangmuzufen(item) {
				// let item = e.currentTarget.dataset.item;
				 let newitem = JSON.stringify(item)
				console.log(item)
				let finorgid = item.finorgid;
				let fprojectid = item.fprojectid;

				uni.navigateTo({
					url: '../zixunfenpei/zixunfenpei?item=' + newitem
				})
			},
			
			question(item){
				console.log(item)
				let questionid=item.fprojectid
				uni.setStorageSync("questionid",questionid)
				uni.navigateTo({
					url:'/pages/question/question?quesprojectid='+questionid
				})
			},
			getbudgetlist() {
				let that = this;
				let url = "project/Get_ProjectInventory";
				
				let param = {
					fprojectcategory:that.project,
					fuserid: uni.getStorageSync("userid"),
					fprojectid:'',
					role:uni.getStorageSync("role"),
				}
				 console.log('8877665544',param)
				app.post(url, param, 'get').then(r => {
					console.log(r)
					  // console.log('数组',JSON.stringify(r.data));
					that.zixunlist = r.data;
					that.querylist = r.data;
				}).catch(err => {
					console.log(err)
				})
			},
			// 查看
			see(item){
				 let newitem=JSON.stringify(item);
				// console.log(newitem)
				uni.navigateTo({
					url:'/pages/projectziliao/projectziliao?item='+newitem
				})
				
			},
			enterxiangmu(e) {
				console.log(e)
				this.keyword = e.target.value;

			},
			// 经办人
			jingban(item){
				let newitem=JSON.stringify(item)
				uni.navigateTo({
					url:'/pages/examinejingban/examinejingban?item='+newitem
				})
			},
			// 评审报告
			pingshen(item){
				let newitem=JSON.stringify(item)
				uni.navigateTo({
					url:'/pages/reviewreport/reviewreport?item='+newitem
				})
			},
			// 合同发票确认
			concatsure(item){
				let newitem=JSON.stringify(item)
				uni.navigateTo({
					url:'/pages/concat/concat?item='+newitem
				})
			},	
			chaxun() {
				if (this.keyword == '') {
					this.getbudgetlist();
				} else {
					console.log(9988776655)
					let newxiangmuarr = [];
					let newzixunlist = this.querylist;
					let name = [];
					for (var obj of newzixunlist) {
						
						name.push(obj.fname);
					}
					 console.log('名称', name)
					for (var i = 0; i < newzixunlist.length; i++) {
						for (var j = 0; j < name.length; j++) {

							if (name[j].indexOf(this.keyword) >= 0) {
								if (j == i) {
									newxiangmuarr.push(newzixunlist[i])
								}
								// console.log(9999)
							}
						}
					}
					console.log('9999000777', newxiangmuarr);
					this.zixunlist = newxiangmuarr;
				}
			}

		},
		onShow:function(){
			this.getbudgetlist();
		}

	}
</script>

<style>
	page {
		background: #F9F9F9;
	}
	image{
		width:100%;
		height:100%;
	}
	.btnlist{
		display:flex;
		align-items: center;
		flex-wrap: wrap;
		margin-top:20rpx;
	}
	.btnitem{
		width:194rpx;
		height:64rpx;
		background:rgba(0,147,255,1);
		opacity:1;
		border-radius:8rpx;
		color:#fff;
		font-size: 24rpx;
		text-align: center;
		line-height: 64rpx;
		margin-right:12rpx;
		margin-bottom:30rpx;
	}
	.statebox{
		flex-wrap: wrap;
		margin-top:32rpx;
	}
	
	.stateboxitem{
		width:188rpx;
		height:132rpx;
		border:1rpx solid rgba(189,196,206,1);
		opacity:1;
		border-radius:8rpx;
		margin-right:15rpx;
		margin-bottom:28rpx;
	}
	.stateboxitemtop{
		color:#06121E;
		font-size: 24rpx;
	}
	.stateboxitembot{
		margin-top:10rpx;
	}

	.head {
		display: flex;
		align-items: center;
		padding: 20rpx 32rpx;
		box-sizing: border-box;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index:999;
	}
	.stateimg{
		width:28rpx;
		height:28rpx;
		font-size: 0;
	}
	.statename{
		color:#06121E;
		font-size: 24rpx;
		margin-left:5rpx;
	}

	.fenzulist {
		margin-top: 100rpx;
	}

	.headleft {
		width: 572rpx;
		height: 60rpx;
		background: rgba(238, 238, 238, 1);
		opacity: 1;
		border-radius: 8rpx;
		padding: 10rpx 24rpx;
		box-sizing: border-box;
		display: felex;
		align-items: center;
		display: flex;
		align-items: center;
	}

	.headleft input {
		color: #BDC4CE;
		font-size: 28rpx;
	}

	.headright {
		width: 98rpx;
		height: 60rpx;
		background: rgba(0, 147, 255, 1);
		opacity: 1;
		border-radius: 8rpx;
		color: #fff;
		font-size: 22rpx;
		text-align: center;
		line-height: 60rpx;
		margin-left: 16rpx;
	}

	.fenzuitem {
		width: 686rpx;
		/* height: 484rpx; */
		background: rgba(255, 255, 255, 1);
		box-shadow: 0px 6rpx 6rpx rgba(0, 0, 0, 0.03);
		opacity: 1;
		border-radius: 20rpx;
		margin: 20rpx auto 0;
		padding: 28rpx 32rpx 40rpx;
		box-sizing: border-box;
	}

	.fenzutopright {}

	.fenzunoimg {
		width: 28rpx;
		height: 28rpx;
		font-size: 0;
		margin-right: 10rpx;
	}

	.fenzunoimg image {
		width: 100%;
		height: 100%;
	}

	.bianhao {
		color: #8C9198;
		font-size: 24rpx;

	}

	.bianhaonum {
		color: #06121E;
		font-size: 24rpx;
		letter-spacing: 2rpx;
	}

	.fenzunoname {
		color: #3D444D;
		font-size: 24rpx;
	}

	.fenzutopright {
		display: flex;
		align-items: center;
		width: 126rpx;
		height: 48rpx;
		border: 1rpx solid rgba(189, 196, 206, 1);
		opacity: 1;
		border-radius: 8rpx;
		padding: 0 5rpx;
		box-sizing: border-box;

	}

	.fenzutop {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 16rpx;
		border-bottom: 1rpx solid #f5f5f5;
	}

	.fenzuobottom {
		margin-top: 16rpx
	}

	.fenzubottom {
		display: flex;
		justify-content: flex-end;
		margin-top: 16rpx
	}

	.fenzubtn {
		width: 200rpx;
		height: 64rpx;
		background: rgba(0, 147, 255, 1);
		opacity: 1;
		border-radius: 8rpx;
		color: #F9F9F9;
		font-size: 24rpx;
		text-align: center;
		line-height: 64rpx;
	}
</style>