作者 lihongjuan

1

正在显示 100 个修改的文件 包含 200 行增加203 行删除

要显示太多修改。

为保证性能只显示 100 of 100+ 个文件。

... ... @@ -159,10 +159,7 @@
</view>
<view class="projectname">审核回复文件</view>
</view>
</view>
<view class='nodata' v-if="replylist.length==0">暂无数据</view>
<view class="zixunbox" v-else>
<!-- <view class="volistdata" v-if="votelist.length==0">暂无数据</view> -->
... ... @@ -186,14 +183,14 @@
</view>
<view class="btnlist">
<view class="btnitem" @click="question(item)">问题往来</view>
<!-- <view class="btnitem" @click="jingban(item)" v-if="showhide[4].status!=0">经办人审核</view>
<view class="btnitem" @click="jingban(item)" v-if="showhide[4].status!=0">经办人审核</view>
<view class="btnitem" @click="shenjie(item)">项目审结</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="jingban(item)">经办人审核</view>
<view class="btnitem" @click="concatsure(item)" v-if="showhide[4].status!=0">合同发票确认</view>
<!-- <view class="btnitem" @click="jingban(item)">经办人审核</view>
<view class="btnitem" @click="shenjie(item)">项目审结</view>
<view class="btnitem" @click="pingshen(item)">评审报告确认</view>
<view class="btnitem" @click="concatsure(item)">合同发票确认</view>
<view class="btnitem" @click="pingshen(item)">评审报告确认</view>
<view class="btnitem" @click="concatsure(item)">合同发票确认</view> -->
</view>
<!-- v-if="showhide[4].status==0" -->
<!-- <view class="zixunbottom" >
... ... @@ -244,8 +241,8 @@
if (options.type != undefined) {
this.type = options.type;
this.typeprojectid = options.projectid;
this.item=JSON.parse(options.item);
this.item = JSON.parse(options.item);
switch (this.type) {
case 1:
console.log(this.type)
... ... @@ -299,29 +296,29 @@
})
},
// 项目审结
shenjie(item){
shenjie(item) {
let that = this;
let url = "project/Save_ProjectConclude";
let param = {
userid: uni.getStorageSync("userid"),
role:uni.getStorageSync("role"),
fprojectid:item.fprojectid,
fdisid:item.fdisid,
fdirstatus:item.fdirstatus,
ffinauditstatus:item.ffinauditstatus,
role: uni.getStorageSync("role"),
fprojectid: item.fprojectid,
fdisid: item.fdisid,
fdirstatus: item.fdirstatus,
ffinauditstatus: item.ffinauditstatus,
}
console.log('8877665544',param)
console.log('8877665544', param)
app.post(url, param, 'get').then(r => {
console.log(r)
uni.showToast({
title:r.data[0].message,
icon:'none'
title: r.data[0].message,
icon: 'none'
})
// console.log('数组',JSON.stringify(r.data));
// console.log('数组',JSON.stringify(r.data));
}).catch(err => {
console.log(err)
})
... ... @@ -410,48 +407,48 @@
console.log(item)
let fseekfiles = item.fseekfiles; //评审报告id
let fseekfiles_txt = item.fseekfiles_txt //评审报告文字
let url = "project/Select_FileInfo";
let param = {}
app.post(url, param, 'get').then(r => {
console.log('下载文件', r)
that.singgleurl = r.data[0].file
let urlk = r.data[0].file + '?fileId=' + fseekfiles;
let urlk = r.data[0].file + '?fileId=' + fseekfiles;
// let url = 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5'
console.log(wx.env.USER_DATA_PATH + "/" + fseekfiles_txt)
uni.downloadFile({
//let urlk: 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5',
url:urlk,
header: {
// 'Content-Type':'application/doc'
},
success: function(res) {},
fail: function(res) {},
complete: function(res) {
console.log(res)
const manage = wx.getFileSystemManager();
if (res.statusCode === 200) {
manage.saveFile({
tempFilePath: res.tempFilePath,
filePath: wx.env.USER_DATA_PATH + "/" + fseekfiles_txt,
success: function(res) {
console.log(res)
}
});
// 打开文档
uni.openDocument({
filePath: wx.env.USER_DATA_PATH + "/" + fseekfiles_txt,
success: function(res) {
console.log('打开文档成功')
},
fail: function() {
console.log('打开失败');
}
})
}
//let urlk: 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5',
url: urlk,
header: {
// 'Content-Type':'application/doc'
},
success: function(res) {},
fail: function(res) {},
complete: function(res) {
console.log(res)
const manage = wx.getFileSystemManager();
if (res.statusCode === 200) {
manage.saveFile({
tempFilePath: res.tempFilePath,
filePath: wx.env.USER_DATA_PATH + "/" + fseekfiles_txt,
success: function(res) {
console.log(res)
}
});
// 打开文档
uni.openDocument({
filePath: wx.env.USER_DATA_PATH + "/" + fseekfiles_txt,
success: function(res) {
console.log('打开文档成功')
},
fail: function() {
console.log('打开失败');
}
})
}
}
})
}).catch(err => {
console.log(err)
... ... @@ -463,48 +460,48 @@
console.log(item)
let freplyfiles = item.freplyfiles; //评审报告id
let freplyfiles_txt = item.freplyfiles_txt //评审报告文字
let url = "project/Select_FileInfo";
let param = {}
app.post(url, param, 'get').then(r => {
console.log('下载文件', r)
that.singgleurl = r.data[0].file
let urlk = r.data[0].file + '?fileId=' + freplyfiles;
let urlk = r.data[0].file + '?fileId=' + freplyfiles;
// let url = 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5'
console.log(wx.env.USER_DATA_PATH + "/" + freplyfiles_txt)
uni.downloadFile({
//let urlk: 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5',
url:urlk,
header: {
// 'Content-Type':'application/doc'
},
success: function(res) {},
fail: function(res) {},
complete: function(res) {
console.log(res)
const manage = wx.getFileSystemManager();
if (res.statusCode === 200) {
manage.saveFile({
tempFilePath: res.tempFilePath,
filePath: wx.env.USER_DATA_PATH + "/" + freplyfiles_txt,
success: function(res) {
console.log(res)
}
});
// 打开文档
uni.openDocument({
filePath: wx.env.USER_DATA_PATH + "/" + freplyfiles_txt,
success: function(res) {
console.log('打开文档成功')
},
fail: function() {
console.log('打开失败');
}
})
}
//let urlk: 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5',
url: urlk,
header: {
// 'Content-Type':'application/doc'
},
success: function(res) {},
fail: function(res) {},
complete: function(res) {
console.log(res)
const manage = wx.getFileSystemManager();
if (res.statusCode === 200) {
manage.saveFile({
tempFilePath: res.tempFilePath,
filePath: wx.env.USER_DATA_PATH + "/" + freplyfiles_txt,
success: function(res) {
console.log(res)
}
});
// 打开文档
uni.openDocument({
filePath: wx.env.USER_DATA_PATH + "/" + freplyfiles_txt,
success: function(res) {
console.log('打开文档成功')
},
fail: function() {
console.log('打开失败');
}
})
}
}
})
}).catch(err => {
console.log(err)
... ... @@ -947,7 +944,7 @@
.projectitemleft {
color: #8C9198;
font-size: 28rpx;
width:180rpx;
width: 180rpx;
}
.projectitemright {
... ...
... ... @@ -27,7 +27,7 @@
</view>
<!-- v-if="item.fauditrptfile!=null" -->
<view class="renyaoqiu" v-if="item.fauditrptfile!=null">
<view class="renyaoqiu" >
<view class="projectinfo">
<view class="projectname">评审报告</view>
</view>
... ... @@ -150,11 +150,11 @@
console.log('下载文件', r)
that.singgleurl = r.data[0].file
let urlk = r.data[0].file + '?fileId=' + fauditrptfile;
// let url = 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5'
let url = 'https://39.105.61.115:8111/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5'
console.log(wx.env.USER_DATA_PATH + "/" + fauditrptfile_txt)
uni.downloadFile({
//let urlk: 'http://39.105.61.115:8001/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5',
url:urlk,
url:url,
header: {
// 'Content-Type':'application/doc'
},
... ... @@ -166,14 +166,14 @@
if (res.statusCode === 200) {
manage.saveFile({
tempFilePath: res.tempFilePath,
filePath: wx.env.USER_DATA_PATH + "/" + fauditrptfile_txt,
filePath: wx.env.USER_DATA_PATH + "/" + "wenjian.doc",
success: function(res) {
console.log(res)
}
});
// 打开文档
uni.openDocument({
filePath: wx.env.USER_DATA_PATH + "/" + fauditrptfile_txt,
filePath: wx.env.USER_DATA_PATH + "/" +"wenjian.doc",
success: function(res) {
console.log('打开文档成功')
},
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"0aa0":function(e,t,n){"use strict";var o=n("1604"),r=n.n(o);r.a},"0c9c":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,n,o){var r=this,a=new Promise((function(a,c){var u=e.getStorageSync("token"),i={token:u||""};e.request({url:r.globalData.baseUrl+t,data:n,method:o,header:i,success:function(e){200==e.statusCode?a(e):c(e.data)},fail:function(e){console.log(e),c("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=n}).call(this,n("543d")["default"])},1604:function(e,t,n){},"1a08":function(e,t,n){"use strict";(function(e){n("a237"),n("921b");var t=r(n("66fd")),o=r(n("30b9"));function r(e){return e&&e.__esModule?e:{default:e}}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function c(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?a(Object(n),!0).forEach((function(t){u(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):a(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function u(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}t.default.config.productionTip=!1,o.default.mpType="app";var i=new t.default(c({},o.default));e(i).$mount()}).call(this,n("543d")["createApp"])},"1f18":function(e,t,n){"use strict";n.r(t);var o=n("0c9c"),r=n.n(o);for(var a in o)"default"!==a&&function(e){n.d(t,e,(function(){return o[e]}))}(a);t["default"]=r.a},"30b9":function(e,t,n){"use strict";n.r(t);var o=n("1f18");for(var r in o)"default"!==r&&function(e){n.d(t,e,(function(){return o[e]}))}(r);n("0aa0");var a,c,u,i,l=n("f0c5"),f=Object(l["a"])(o["default"],a,c,!1,null,null,null,!1,u,i);t["default"]=f.exports}},[["1a08","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{2166:function(e,t,n){"use strict";n.r(t);var o=n("593d"),r=n.n(o);for(var u in o)"default"!==u&&function(e){n.d(t,e,(function(){return o[e]}))}(u);t["default"]=r.a},"27cf":function(e,t,n){"use strict";(function(e){n("bdbd"),n("921b");var t=r(n("66fd")),o=r(n("59df"));function r(e){return e&&e.__esModule?e:{default:e}}function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function c(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?u(Object(n),!0).forEach((function(t){a(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}t.default.config.productionTip=!1,o.default.mpType="app";var i=new t.default(c({},o.default));e(i).$mount()}).call(this,n("543d")["createApp"])},"4e90":function(e,t,n){"use strict";var o=n("d869"),r=n.n(o);r.a},"593d":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,n,o){var r=this,u=new Promise((function(u,c){var a=e.getStorageSync("token"),i={token:a||""};e.request({url:r.globalData.baseUrl+t,data:n,method:o,header:i,success:function(e){200==e.statusCode?u(e):c(e.data)},fail:function(e){console.log(e),c("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return u},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=n}).call(this,n("543d")["default"])},"59df":function(e,t,n){"use strict";n.r(t);var o=n("2166");for(var r in o)"default"!==r&&function(e){n.d(t,e,(function(){return o[e]}))}(r);n("4e90");var u,c,a,i,f=n("f0c5"),l=Object(f["a"])(o["default"],u,c,!1,null,null,null,!1,a,i);t["default"]=l.exports},d869:function(e,t,n){}},[["27cf","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page::after{position:fixed;content:'';left:-1000px;top:-1000px;-webkit-animation:shadow-preload .1s;-webkit-animation-delay:3s;animation:shadow-preload .1s;animation-delay:3s}@-webkit-keyframes shadow-preload{0%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}}@keyframes shadow-preload{0%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page::after{position:fixed;content:'';left:-1000px;top:-1000px;-webkit-animation:shadow-preload .1s;-webkit-animation-delay:3s;animation:shadow-preload .1s;animation-delay:3s}@-webkit-keyframes shadow-preload{0%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}}@keyframes shadow-preload{0%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}100%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/block/block"],{2089:function(n,t,e){"use strict";e.r(t);var u=e("975b"),c=e.n(u);for(var r in u)"default"!==r&&function(n){e.d(t,n,(function(){return u[n]}))}(r);t["default"]=c.a},"79ee":function(n,t,e){"use strict";e.r(t);var u=e("d2c7"),c=e("2089");for(var r in c)"default"!==r&&function(n){e.d(t,n,(function(){return c[n]}))}(r);var o,a=e("f0c5"),f=Object(a["a"])(c["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],o);t["default"]=f.exports},"894b":function(n,t,e){"use strict";(function(n){e("a237"),e("921b");u(e("66fd"));var t=u(e("79ee"));function u(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},"975b":function(n,t){},d2c7:function(n,t,e){"use strict";var u,c=function(){var n=this,t=n.$createElement;n._self._c},r=[];e.d(t,"b",(function(){return c})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){return u}))}},[["894b","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/block/block"],{"1bfe":function(n,t,u){"use strict";u.r(t);var e=u("b647"),c=u("3d71");for(var r in c)"default"!==r&&function(n){u.d(t,n,(function(){return c[n]}))}(r);var a,f=u("f0c5"),o=Object(f["a"])(c["default"],e["b"],e["c"],!1,null,null,null,!1,e["a"],a);t["default"]=o.exports},"3d71":function(n,t,u){"use strict";u.r(t);var e=u("48a7"),c=u.n(e);for(var r in e)"default"!==r&&function(n){u.d(t,n,(function(){return e[n]}))}(r);t["default"]=c.a},"48a7":function(n,t){},b647:function(n,t,u){"use strict";var e,c=function(){var n=this,t=n.$createElement;n._self._c},r=[];u.d(t,"b",(function(){return c})),u.d(t,"c",(function(){return r})),u.d(t,"a",(function(){return e}))},f26a:function(n,t,u){"use strict";(function(n){u("bdbd"),u("921b");e(u("66fd"));var t=e(u("1bfe"));function e(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,u("543d")["createPage"])}},[["f26a","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/budgetshenhe/budgetshenhe"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),i=n.n(o);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,r=new Promise((function(r,a){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:c,success:function(t){200==t.statusCode?r(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("0aa0");var r,a,u,c,l=n("f0c5"),s=Object(l["a"])(o["default"],r,a,!1,null,null,null,!1,u,c);e["default"]=s.exports},3411:function(t,e,n){"use strict";var o=n("715c"),i=n.n(o);i.a},4270:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("830e"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"4a39":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=i(n("30b9"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=a(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){u=!0,i=t},f:function(){try{r||null==o.return||o.return()}finally{if(u)throw i}}}}function a(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var c={data:function(){return{zixunlist:[],keyword:"",querylist:[],type:"",showhide:""}},onLoad:function(e){switch(this.showhide=t.getStorageSync("showhide"),console.log("4389489",JSON.stringify(this.showhide)),this.type=e.type,this.type=Number(this.type),this.type){case 1:console.log(this.type),t.setNavigationBarTitle({title:"预算项目审核"}),this.project="prj_toaudit_budget";break;case 2:console.log(this.type),t.setNavigationBarTitle({title:"结算项目审核"}),this.project="prj_toaudit_settlement";break;case 3:t.setNavigationBarTitle({title:"决算项目审核"}),this.project="prj_toaudit_change";break;case 4:t.setNavigationBarTitle({title:"土地成本项目审核"}),this.project="prj_toaudit_land";break}},methods:{xiangmuzufen:function(e){var n=JSON.stringify(e);console.log(e);e.finorgid,e.fprojectid;t.navigateTo({url:"../zixunfenpei/zixunfenpei?item="+n})},question:function(e){console.log(e);var n=e.fprojectid;t.setStorageSync("questionid",n),t.navigateTo({url:"/pages/question/question?quesprojectid="+n})},getbudgetlist:function(){var e=this,n="project/Get_ProjectInventory",i={fprojectcategory:e.project,fuserid:t.getStorageSync("userid"),fprojectid:"",role:t.getStorageSync("role")};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log(t),e.zixunlist=t.data,e.querylist=t.data})).catch((function(t){console.log(t)}))},see:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/projectziliao/projectziliao?item="+n})},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value},jingban:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/examinejingban/examinejingban?item="+n})},pingshen:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/reviewreport/reviewreport?item="+n})},concatsure:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/concat/concat?item="+n})},chaxun:function(){if(""==this.keyword)this.getbudgetlist();else{console.log(9988776655);var t,e=[],n=this.querylist,o=[],i=r(n);try{for(i.s();!(t=i.n()).done;){var a=t.value;o.push(a.fname)}}catch(l){i.e(l)}finally{i.f()}console.log("名称",o);for(var u=0;u<n.length;u++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==u&&e.push(n[u]);console.log("9999000777",e),this.zixunlist=e}}},onShow:function(){this.getbudgetlist()}};e.default=c}).call(this,n("543d")["default"])},"56f7":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return o}))},"715c":function(t,e,n){},"830e":function(t,e,n){"use strict";n.r(e);var o=n("56f7"),i=n("c025");for(var r in i)"default"!==r&&function(t){n.d(e,t,(function(){return i[t]}))}(r);n("3411");var a,u=n("f0c5"),c=Object(u["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);e["default"]=c.exports},c025:function(t,e,n){"use strict";n.r(e);var o=n("4a39"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a}},[["4270","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/budgetshenhe/budgetshenhe"],{2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},"3fff":function(t,e,n){"use strict";n.r(e);var o=n("d9a5"),i=n("fabc");for(var r in i)"default"!==r&&function(t){n.d(e,t,(function(){return i[t]}))}(r);n("94c4");var a,u=n("f0c5"),c=Object(u["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);e["default"]=c.exports},"4e90":function(t,e,n){"use strict";var o=n("d869"),i=n.n(o);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,r=new Promise((function(r,a){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:c,success:function(t){200==t.statusCode?r(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("4e90");var r,a,u,c,l=n("f0c5"),s=Object(l["a"])(o["default"],r,a,!1,null,null,null,!1,u,c);e["default"]=s.exports},"7dca":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("3fff"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"81a6":function(t,e,n){},"94c4":function(t,e,n){"use strict";var o=n("81a6"),i=n.n(o);i.a},d869:function(t,e,n){},d9a5:function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return o}))},e582:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=i(n("59df"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=a(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){u=!0,i=t},f:function(){try{r||null==o.return||o.return()}finally{if(u)throw i}}}}function a(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var c={data:function(){return{zixunlist:[],keyword:"",querylist:[],type:"",showhide:""}},onLoad:function(e){switch(this.showhide=t.getStorageSync("showhide"),console.log("4389489",JSON.stringify(this.showhide)),this.type=e.type,this.type=Number(this.type),this.type){case 1:console.log(this.type),t.setNavigationBarTitle({title:"预算项目审核"}),this.project="prj_toaudit_budget";break;case 2:console.log(this.type),t.setNavigationBarTitle({title:"结算项目审核"}),this.project="prj_toaudit_settlement";break;case 3:t.setNavigationBarTitle({title:"决算项目审核"}),this.project="prj_toaudit_change";break;case 4:t.setNavigationBarTitle({title:"土地成本项目审核"}),this.project="prj_toaudit_land";break}},methods:{xiangmuzufen:function(e){var n=JSON.stringify(e);console.log(e);e.finorgid,e.fprojectid;t.navigateTo({url:"../zixunfenpei/zixunfenpei?item="+n})},question:function(e){console.log(e);var n=e.fprojectid;t.setStorageSync("questionid",n),t.navigateTo({url:"/pages/question/question?quesprojectid="+n})},getbudgetlist:function(){var e=this,n="project/Get_ProjectInventory",i={fprojectcategory:e.project,fuserid:t.getStorageSync("userid"),fprojectid:"",role:t.getStorageSync("role")};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log(t),e.zixunlist=t.data,e.querylist=t.data})).catch((function(t){console.log(t)}))},see:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/projectziliao/projectziliao?item="+n})},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value},jingban:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/examinejingban/examinejingban?item="+n})},pingshen:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/reviewreport/reviewreport?item="+n})},concatsure:function(e){var n=JSON.stringify(e);t.navigateTo({url:"/pages/concat/concat?item="+n})},chaxun:function(){if(""==this.keyword)this.getbudgetlist();else{console.log(9988776655);var t,e=[],n=this.querylist,o=[],i=r(n);try{for(i.s();!(t=i.n()).done;){var a=t.value;o.push(a.fname)}}catch(l){i.e(l)}finally{i.f()}console.log("名称",o);for(var u=0;u<n.length;u++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==u&&e.push(n[u]);console.log("9999000777",e),this.zixunlist=e}}},onShow:function(){this.getbudgetlist()}};e.default=c}).call(this,n("543d")["default"])},fabc:function(t,e,n){"use strict";n.r(e);var o=n("e582"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a}},[["7dca","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}image{width:100%;height:100%}.btnlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-top:20rpx}.btnitem{width:194rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:12rpx;margin-bottom:30rpx}.statebox{-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-top:32rpx}.stateboxitem{width:188rpx;height:132rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;margin-right:15rpx;margin-bottom:28rpx}.stateboxitemtop{color:#06121e;font-size:24rpx}.stateboxitembot{margin-top:10rpx}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;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:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:felex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:126rpx;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}image{width:100%;height:100%}.btnlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-top:20rpx}.btnitem{width:194rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:12rpx;margin-bottom:30rpx}.statebox{-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-top:32rpx}.stateboxitem{width:188rpx;height:132rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;margin-right:15rpx;margin-bottom:28rpx}.stateboxitemtop{color:#06121e;font-size:24rpx}.stateboxitembot{margin-top:10rpx}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;-webkit-box-sizing:border-box;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:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:felex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:126rpx;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/concat/concat"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),r=n.n(o);r.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var r=this,a=new Promise((function(a,i){var c=t.getStorageSync("token"),l={token:c||""};t.request({url:r.globalData.baseUrl+e,data:n,method:o,header:l,success:function(t){200==t.statusCode?a(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"162c":function(t,e,n){"use strict";n.r(e);var o=n("914c"),r=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=r.a},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),r=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=r.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);n("0aa0");var a,i,c,l,u=n("f0c5"),f=Object(u["a"])(o["default"],a,i,!1,null,null,null,!1,c,l);e["default"]=f.exports},3707:function(t,e,n){"use strict";var o,r=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return o}))},3939:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("5e36"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"5e36":function(t,e,n){"use strict";n.r(e);var o=n("3707"),r=n("162c");for(var a in r)"default"!==a&&function(t){n.d(e,t,(function(){return r[t]}))}(a);n("e5df"),n("cbfa");var i,c=n("f0c5"),l=Object(c["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);e["default"]=l.exports},"914c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("30b9")),r=a(n("079c"));function a(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,a=!0,i=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){i=!0,r=t},f:function(){try{a||null==o.return||o.return()}finally{if(i)throw r}}}}function c(t,e){if(t){if("string"===typeof t)return l(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(t,e):void 0}}function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",receive:-1}},onLoad:function(t){console.log(t.item),console.log(r.default.change(12345)),this.item=JSON.parse(t.item),console.log(this.item);var e=this.item;e.ftoauditamt=r.default.change(e.ftoauditamt),this.item=e,this.getprojectkind(),console.log(r.default.unction(45622111))},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{isreceive:function(t){console.log(t),console.log(t.currentTarget.dataset.id),this.receive=t.currentTarget.dataset.id,console.log(this.receive)},downloadconcat:function(e){var n=this;if(null==e)return t.showToast({title:"文件不存在",icon:"none"}),!1;var r="project/Select_FileInfo",a={};o.default.post(r,a,"get").then((function(o){console.log("下载文件",o),n.singgleurl=o.data[0].file;var r=o.data[0].file+"?fileId="+e;t.setStorageSync("url",r),plus.runtime.openURL(r)})).catch((function(t){console.log(t)}))},downloadfa:function(e){var n=this;if(console.log("file",e),null==e||" "==e)return t.showToast({title:"文件不存在",icon:"none"}),!1;var r="project/Select_FileInfo",a={};o.default.post(r,a,"get").then((function(t){console.log("下载文件",t),n.singgleurl=t.data[0].file;var o=t.data[0].file+"?fileId="+e;console.log("发票url",o),plus.runtime.openURL(o)})).catch((function(t){console.log(t)}))},detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,r=i(t.projectarr);try{for(r.s();!(o=r.n()).done;){var a=o.value;a.fid==e.item.finorgid&&(t.fprjleader=a.fprjleader,t.fprjleadertwo=a.fprjleadertwo,t.fname=a.fname,t.finorgid=a.fid)}}catch(c){r.e(c)}finally{r.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(-1==e.receive)return t.showToast({title:"选择邮寄情况",icon:"none"}),!1;var n="project/Save_Surveyconfirm",r={userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fdisid:e.item.fdisid,freporttatus:e.item.freporttatus,mailstatus:e.receive};console.log("8877665544",r),o.default.post(n,r,"get").then((function(e){console.log(e),"提交成功"==e.data[0].message?(t.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)):t.showToast({title:e.data[0].message,icon:"none"})})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},cbfa:function(t,e,n){"use strict";var o=n("e81c"),r=n.n(o);r.a},e5df:function(t,e,n){"use strict";var o=n("f628"),r=n.n(o);r.a},e81c:function(t,e,n){},f628:function(t,e,n){}},[["3939","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/concat/concat"],{"024d":function(e,t,n){"use strict";n.r(t);var o=n("f7a7"),i=n.n(o);for(var a in o)"default"!==a&&function(e){n.d(t,e,(function(){return o[e]}))}(a);t["default"]=i.a},"20b4":function(e,t,n){"use strict";var o,i=function(){var e=this,t=e.$createElement;e._self._c},a=[];n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return a})),n.d(t,"a",(function(){return o}))},2166:function(e,t,n){"use strict";n.r(t);var o=n("593d"),i=n.n(o);for(var a in o)"default"!==a&&function(e){n.d(t,e,(function(){return o[e]}))}(a);t["default"]=i.a},"4e90":function(e,t,n){"use strict";var o=n("d869"),i=n.n(o);i.a},5772:function(e,t,n){},"593d":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,n,o){var i=this,a=new Promise((function(a,r){var c=e.getStorageSync("token"),l={token:c||""};e.request({url:i.globalData.baseUrl+t,data:n,method:o,header:l,success:function(e){200==e.statusCode?a(e):r(e.data)},fail:function(e){console.log(e),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=n}).call(this,n("543d")["default"])},"59df":function(e,t,n){"use strict";n.r(t);var o=n("2166");for(var i in o)"default"!==i&&function(e){n.d(t,e,(function(){return o[e]}))}(i);n("4e90");var a,r,c,l,f=n("f0c5"),u=Object(f["a"])(o["default"],a,r,!1,null,null,null,!1,c,l);t["default"]=u.exports},"5ad5":function(e,t,n){"use strict";var o=n("94cb"),i=n.n(o);i.a},"94cb":function(e,t,n){},"9c9b":function(e,t,n){"use strict";(function(e){n("bdbd"),n("921b");o(n("66fd"));var t=o(n("eb4c"));function o(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},d531:function(e,t,n){"use strict";var o=n("5772"),i=n.n(o);i.a},d869:function(e,t,n){},eb4c:function(e,t,n){"use strict";n.r(t);var o=n("20b4"),i=n("024d");for(var a in i)"default"!==a&&function(e){n.d(t,e,(function(){return i[e]}))}(a);n("d531"),n("5ad5");var r,c=n("f0c5"),l=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);t["default"]=l.exports},f7a7:function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(n("59df")),i=a(n("b86c"));function a(e){return e&&e.__esModule?e:{default:e}}function r(e){if("undefined"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=c(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,a=!0,r=!1;return{s:function(){o=e[Symbol.iterator]()},n:function(){var e=o.next();return a=e.done,e},e:function(e){r=!0,i=e},f:function(){try{a||null==o.return||o.return()}finally{if(r)throw i}}}}function c(e,t){if(e){if("string"===typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n<t;n++)o[n]=e[n];return o}var f={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",receive:-1}},onLoad:function(e){console.log(e.item),console.log(i.default.change(12345)),this.item=JSON.parse(e.item),console.log(this.item);var t=this.item;t.ftoauditamt=i.default.change(t.ftoauditamt),this.item=t,"已确认"==this.item.fservicestatus?this.receive=0:this.receive=1,this.getprojectkind(),console.log(i.default.unction(45622111))},onShow:function(){this.showhide=e.getStorageSync("showhide")},methods:{isreceive:function(e){console.log(e),console.log(e.currentTarget.dataset.id),this.receive=e.currentTarget.dataset.id,console.log(this.receive)},downloadconcat:function(t){var n=this;console.log(item);var i=item.fauditfile,a=item.fauditfile_txt,r="project/Select_FileInfo",c={};o.default.post(r,c,"get").then((function(t){console.log("下载文件",t),n.singgleurl=t.data[0].file;var o=t.data[0].file+"?fileId="+i;console.log(wx.env.USER_DATA_PATH+"/"+a),e.downloadFile({url:o,header:{},success:function(e){},fail:function(e){},complete:function(t){console.log(t);var n=wx.getFileSystemManager();200===t.statusCode&&(n.saveFile({tempFilePath:t.tempFilePath,filePath:wx.env.USER_DATA_PATH+"/"+a,success:function(e){console.log(e)}}),e.openDocument({filePath:wx.env.USER_DATA_PATH+"/"+a,success:function(e){console.log("打开文档成功")},fail:function(){console.log("打开失败")}}))}})})).catch((function(e){console.log(e)}))},downloadfa:function(t){var n=this;console.log(item);var i=item.ffapiaofile,a=item.ffapiaofile_txt,r="project/Select_FileInfo",c={};o.default.post(r,c,"get").then((function(t){console.log("下载文件",t),n.singgleurl=t.data[0].file;var o=t.data[0].file+"?fileId="+i;console.log(wx.env.USER_DATA_PATH+"/"+a),e.downloadFile({url:o,header:{},success:function(e){},fail:function(e){},complete:function(t){console.log(t);var n=wx.getFileSystemManager();200===t.statusCode&&(n.saveFile({tempFilePath:t.tempFilePath,filePath:wx.env.USER_DATA_PATH+"/"+a,success:function(e){console.log(e)}}),e.openDocument({filePath:wx.env.USER_DATA_PATH+"/"+a,success:function(e){console.log("打开文档成功")},fail:function(){console.log("打开失败")}}))}})})).catch((function(e){console.log(e)}))},detail:function(){var e=this,t="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(t,n,"get").then((function(t){console.log("分配信息",t),e.detaildata=t.data[0]})).catch((function(e){console.log(e)}))},getprojectkind:function(){var e=this,t=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),e.projectarr=n.data,"未分配"==t.item.ftaskprocess)e.fprjleader="",e.fprjleadertwo="",e.fname="";else{var o,i=r(e.projectarr);try{for(i.s();!(o=i.n()).done;){var a=o.value;a.fid==t.item.finorgid&&(e.fprjleader=a.fprjleader,e.fprjleadertwo=a.fprjleadertwo,e.fname=a.fname,e.finorgid=a.fid)}}catch(c){i.e(c)}finally{i.f()}e.detail()}})).catch((function(e){console.log(e)}))},bindPickerChange:function(e){console.log("picker发送选择改变,携带值为",e.target.value),this.index=e.target.value,this.fname=this.projectarr[e.target.value].fname,this.finorgid=this.projectarr[e.target.value].fid,this.fprjleader=this.projectarr[e.target.value].fprjleader,this.fprjleadertwo=this.projectarr[e.target.value].fprjleadertwo,this.detail()},submit:function(){var t=this;if(-1==t.receive)return e.showToast({title:"选择邮寄情况",icon:"none"}),!1;var n="project/Save_Surveyconfirm",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.item.fprojectid,fdisid:t.item.fdisid,freporttatus:t.item.freporttatus,mailstatus:t.receive};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log(t),"提交成功"==t.data[0].message?(e.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){e.navigateBack({checked:!0})}),1e3)):(e.showToast({title:t.data[0].message,icon:"none"}),setTimeout((function(){e.navigateBack({checked:!0})}),1e3))})).catch((function(e){console.log(e)}))},changestate:function(){var t=this,n="project/Get_Fteam";e.getStorageSync("userid"),t.item.disid;o.default.post(n,"","get").then((function(e){console.log("修改状态",e)})).catch((function(e){console.log(e)}))}}};t.default=f}).call(this,n("543d")["default"])}},[["9c9b","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
<view class="box"><view class="renyuan"><view class="projectinfo"><view class="projectname">项目信息</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">项目编号:</view><view class="projectitemright">{{item.fnumber}}</view></view><view class="projectitem"><view class="projectitemleft">项目名称:</view><view class="projectitemright">{{item.fname}}</view></view><view class="projectitem"><view class="projectitemleft">评审类型:</view><view class="projectitemright">{{item.freviewtype}}</view></view></view></view><view class="renyaoqiu"><view class="projectinfo"><view class="projectname">合同发票</view></view><view data-event-opts="{{[['tap',[['downloadconcat',['$0'],['item.fauditfile']]]]]}}" class="projectlist" bindtap="__e"><view class="concatname">合同</view><view class="queslist"><view class="qusetionimg flex"><view class="bigquestion"><image src="../../static/img/zhiyi.png" mode></image></view><view class="smallimg"><image src="../../static/img/download.png" mode></image></view></view></view></view><view data-event-opts="{{[['tap',[['downloadfa',['$0'],['item.ffapiaofile']]]]]}}" class="projectlist" bindtap="__e"><view class="concatname">发票</view><view class="queslist"><view class="qusetionimg flex"><view class="bigquestion"><image src="../../static/img/zhiyi.png" mode></image></view><view class="smallimg"><image src="../../static/img/download.png" mode></image></view></view></view></view></view><view class="mail"><view class="mailstate">邮寄情况:</view><view class="mailist"><view class="mailitem flexone" data-id="{{0}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==0}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">是,线下收到纸质版评审报告</view></view><view class="mailitem flexone" data-id="{{1}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==1}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">否,线下没有收到纸质版评审报告</view></view></view></view><view class="zixunbottom"><view data-event-opts="{{[['tap',[['submit',['$event']]]]]}}" class="zixunbotright" bindtap="__e">确认</view></view></view>
\ No newline at end of file
<view class="box"><view class="renyuan"><view class="projectinfo"><view class="projectname">项目信息</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">项目编号:</view><view class="projectitemright">{{item.fnumber}}</view></view><view class="projectitem"><view class="projectitemleft">项目名称:</view><view class="projectitemright">{{item.fname}}</view></view><view class="projectitem"><view class="projectitemleft">评审类型:</view><view class="projectitemright">{{item.freviewtype}}</view></view></view></view><block wx:if="{{item.fauditfile!=null&&item.fauditfile!=' '&&item.ffapiaofile!=null&&item.ffapiaofile!=' '}}"><view class="renyaoqiu"><view class="projectinfo"><view class="projectname">合同发票</view></view><block wx:if="{{item.fauditfile!=null&&item.fauditfile!=' '}}"><view data-event-opts="{{[['tap',[['downloadconcat',['$0'],['item']]]]]}}" class="projectlist" bindtap="__e"><view class="concatname">合同</view><view class="queslist"><view class="qusetionimg flex"><view class="bigquestion"><image src="../../static/img/zhiyi.png" mode></image></view><view class="smallimg"><image src="../../static/img/download.png" mode></image></view></view></view></view></block><block wx:if="{{item.ffapiaofile!=null&&item.ffapiaofile!=' '}}"><view data-event-opts="{{[['tap',[['downloadfa',['$0'],['item']]]]]}}" class="projectlist" bindtap="__e"><view class="concatname">发票</view><view class="queslist"><view class="qusetionimg flex"><view class="bigquestion"><image src="../../static/img/zhiyi.png" mode></image></view><view class="smallimg"><image src="../../static/img/download.png" mode></image></view></view></view></view></block></view></block><view class="mail"><view class="mailstate">邮寄情况:</view><view class="mailist"><view class="mailitem flexone" data-id="{{0}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==0}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">是,线下收到纸质版评审报告</view></view><view class="mailitem flexone" data-id="{{1}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==1}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">否,线下没有收到纸质版评审报告</view></view></view></view><view class="zixunbottom"><view data-event-opts="{{[['tap',[['submit',['$event']]]]]}}" class="zixunbotright" bindtap="__e">确认</view></view></view>
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden;overflow-y:scroll}image{width:100%;height:100%}.concatname{color:#8c9198;font-size:28rpx;margin-top:36rpx}.box{background:#f9f9f9}.mailitemimg{width:32rpx;height:32rpx;font-size:0}.mail{padding:0 32rpx;box-sizing:border-box;margin-top:114rpx}.mailist{margin-top:12rpx}.mailitem{margin-top:20rpx}.mailstate{color:#8c9198;font-size:28rpx}.mailname{color:#06121e;font-size:28rpx;margin-left:12rpx}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{width:750rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx;box-sizing:border-box;background:#fff}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin:0 auto}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden;overflow-y:scroll}image{width:100%;height:100%}.concatname{color:#8c9198;font-size:28rpx;margin-top:36rpx}.box{background:#f9f9f9}.mailitemimg{width:32rpx;height:32rpx;font-size:0}.mail{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:114rpx}.mailist{margin-top:12rpx}.mailitem{margin-top:20rpx}.mailstate{color:#8c9198;font-size:28rpx}.mailname{color:#06121e;font-size:28rpx;margin-left:12rpx}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx;width:180rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{width:750rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;bottom:32rpx;left:0;background:#fff}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin:0 auto}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/daiban/daiban"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),a=n.n(o);a.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var a=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:a.globalData.baseUrl+e,data:n,method:o,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"1f84":function(t,e,n){},"2d6d":function(t,e,n){"use strict";var o=n("1f84"),a=n.n(o);a.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("0aa0");var i,r,u,c,s=n("f0c5"),l=Object(s["a"])(o["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=l.exports},5551:function(t,e,n){"use strict";n.r(e);var o=n("da08"),a=n("7115");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("2d6d");var r,u=n("f0c5"),c=Object(u["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=c.exports},7115:function(t,e,n){"use strict";n.r(e);var o=n("f246"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},da08:function(t,e,n){"use strict";var o,a=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return o}))},deb0:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("5551"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},f246:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("30b9"));function a(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,i=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){u=!0,a=t},f:function(){try{i||null==o.return||o.return()}finally{if(u)throw a}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var c={data:function(){return{sel:0,status:0,daibanlist:[],showhide:[],review:"",budget:""}},onshow:function(){},onNavigationBarButtonTap:function(){},onResize:function(){},methods:{xuanze:function(t){var e=t.currentTarget.dataset.index;console.log(e),this.sel=e,0==e?this.status=0:1==e?this.status=1:2==e&&(this.status=2),this.getdaibanlist()},unction:function(t){var e="",n=0;t=(t||0).toString();for(var o=t.length-1;o>=0;o--)n++,e=t.charAt(o)+e,n%3||0==o||(e=","+e);return e},gettopdata:function(){var e=this,n="project/Select_ProjectNumber",a=t.getStorageSync("userid"),i={Userid:a,role:t.getStorageSync("role"),type:"assessment"};o.default.post(n,i,"get").then((function(t){console.log("顶部数据",t),e.review=t.data[0]})).catch((function(t){console.log(t)}))},getbudget:function(){var e=this,n="project/Select_ProjectNumber",a=t.getStorageSync("userid"),i={Userid:a,role:t.getStorageSync("role"),type:"project"};o.default.post(n,i,"get").then((function(t){console.log("顶部数据",t),e.budget=t.data[0]})).catch((function(t){console.log(t)}))},getdaibanlist:function(){var e=this,n=this,a="project/Get_Agencymatters",r=t.getStorageSync("userid"),u={Userid:r,status:n.status,role:t.getStorageSync("role")};console.log("9999",u),o.default.post(a,u,"get").then((function(t){console.log(t),e.daibanlist=t.data;var n,o=e.daibanlist,a=i(o);try{for(a.s();!(n=a.n()).done;){var r=n.value;r.fcreatedate=r.fcreatedate.split("T"),r.fcreatedate=r.fcreatedate[0]}}catch(u){a.e(u)}finally{a.f()}e.daibanlist=o})).catch((function(t){console.log(t)}))},govoice:function(e){console.log("daddaa",e);var n=e.fprojectid,o=e.fdisid;console.log("37474334887",e.fbizformid),"bd_advisory"==e.fbizformid?t.navigateTo({url:"../zixundanweifen/zixundanweifen?dfprojectid="+n+"&disid="+o}):"bd_distribution"==e.fbizformid?t.navigateTo({url:"/pages/zixunfenpei/zixunfenpei?projectid="+n}):"int_projectInventory"==e.fbizformid?"预算"==e.freviewtype&&t.navigateTo({url:"/pages/projectziliao/projectziliao?projectid="+n+"&type=1"}):"int_problemquestion"==e.fbizformid&&t.navigateTo({url:"/pages/seequestion/seequestion?projectid="+n})},gocenter:function(){t.navigateTo({url:"../taizhang/taizhang"})},isshowrenwu:function(){var e=this,n=this,a="project/Get_Menuhiding",i={fuserid:t.getStorageSync("userid"),role:t.getStorageSync("role")};o.default.post(a,i,"get").then((function(o){console.log(o),e.showhide=o.data,t.setStorageSync("showhide",o.data),1==n.showhide[3].status&&(console.log(9090),t.navigateTo({url:"../taizhang/taizhang"}))})).catch((function(t){console.log(t)}))}},onLoad:function(e){this.getdaibanlist(),console.log(988766),console.log("转数字",this.unction(452369874)),t.setNavigationBarTitle({title:"投资项目管理平台("+t.getStorageSync("name")+")"}),this.isshowrenwu(),this.gettopdata(),this.getbudget()}};e.default=c}).call(this,n("543d")["default"])}},[["deb0","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/daiban/daiban"],{"19bd":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("59df"));function a(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,i=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){u=!0,a=t},f:function(){try{i||null==o.return||o.return()}finally{if(u)throw a}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var c={data:function(){return{sel:0,status:0,daibanlist:[],showhide:[],review:"",budget:""}},onShow:function(){this.getdaibanlist(),this.isshowrenwu(),this.gettopdata(),this.getbudget()},onNavigationBarButtonTap:function(){},onResize:function(){},methods:{xuanze:function(t){var e=t.currentTarget.dataset.index;console.log(e),this.sel=e,0==e?this.status=0:1==e?this.status=1:2==e&&(this.status=2),this.getdaibanlist()},unction:function(t){var e="",n=0;t=(t||0).toString();for(var o=t.length-1;o>=0;o--)n++,e=t.charAt(o)+e,n%3||0==o||(e=","+e);return e},gettopdata:function(){var e=this,n="project/Select_ProjectNumber",a=t.getStorageSync("userid"),i={Userid:a,role:t.getStorageSync("role"),type:"assessment"};o.default.post(n,i,"get").then((function(t){console.log("顶部数据",t),e.review=t.data[0]})).catch((function(t){console.log(t)}))},getbudget:function(){var e=this,n="project/Select_ProjectNumber",a=t.getStorageSync("userid"),i={Userid:a,role:t.getStorageSync("role"),type:"project"};o.default.post(n,i,"get").then((function(t){console.log("顶部数据",t),e.budget=t.data[0]})).catch((function(t){console.log(t)}))},getdaibanlist:function(){var e=this,n=this,a="project/Get_Agencymatters",r=t.getStorageSync("userid"),u={Userid:r,status:n.status,role:t.getStorageSync("role")};console.log("9999",u),o.default.post(a,u,"get").then((function(t){console.log(t),e.daibanlist=t.data;var n,o=e.daibanlist,a=i(o);try{for(a.s();!(n=a.n()).done;){var r=n.value;r.fcreatedate=r.fcreatedate.split("T"),r.fcreatedate=r.fcreatedate[0]}}catch(u){a.e(u)}finally{a.f()}e.daibanlist=o})).catch((function(t){console.log(t)}))},govoice:function(e){console.log("daddaa",e);var n=e.fprojectid,o=e.fdisid;if(console.log("37474334887",e.fbizformid),"bd_advisory"==e.fbizformid)t.navigateTo({url:"../zixundanweifen/zixundanweifen?dfprojectid="+n+"&disid="+o});else if("bd_distribution"==e.fbizformid)t.navigateTo({url:"/pages/zixunfenpei/zixunfenpei?projectid="+n});else if("int_projectInventory"==e.fbizformid){var a=JSON.stringify(e);"预算"==e.freviewtype&&t.navigateTo({url:"/pages/projectziliao/projectziliao?projectid="+n+"&type=1&item="+a})}else"int_problemquestion"==e.fbizformid&&(console.log(e),t.navigateTo({url:"/pages/seequestion/seequestion?projectid="+n}))},gocenter:function(){t.navigateTo({url:"../taizhang/taizhang"})},isshowrenwu:function(){var e=this,n=this,a="project/Get_Menuhiding",i={fuserid:t.getStorageSync("userid"),role:t.getStorageSync("role")};o.default.post(a,i,"get").then((function(o){console.log(o),e.showhide=o.data,t.setStorageSync("showhide",o.data),1==n.showhide[3].status&&(console.log(9090),t.navigateTo({url:"../taizhang/taizhang"}))})).catch((function(t){console.log(t)}))}},onLoad:function(e){console.log(988766),console.log("转数字",this.unction(452369874)),t.setNavigationBarTitle({title:"投资项目管理平台("+t.getStorageSync("name")+")"})}};e.default=c}).call(this,n("543d")["default"])},2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"31f0":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("a038"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"4e90":function(t,e,n){"use strict";var o=n("d869"),a=n.n(o);a.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var a=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:a.globalData.baseUrl+e,data:n,method:o,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("4e90");var i,r,u,c,s=n("f0c5"),l=Object(s["a"])(o["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=l.exports},a038:function(t,e,n){"use strict";n.r(e);var o=n("f8b0"),a=n("b72d");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("c106");var r,u=n("f0c5"),c=Object(u["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=c.exports},b72d:function(t,e,n){"use strict";n.r(e);var o=n("19bd"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},bb44:function(t,e,n){},c106:function(t,e,n){"use strict";var o=n("bb44"),a=n.n(o);a.a},d869:function(t,e,n){},f8b0:function(t,e,n){"use strict";var o,a=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return o}))}},[["31f0","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.pingkind{width:686rpx;height:282rpx;background:#fff;opacity:1;border-radius:12rpx;margin:30rpx auto 0;padding:26rpx 50rpx;box-sizing:border-box}.pingtitle{color:#06121e;font-size:28rpx;font-weight:700}.pingnum{color:#0093ff;font-size:32rpx;font-weight:700}.pingtext{color:#06121e;font-size:24rpx;text-align:center}.textbox{margin-top:16rpx;height:66rpx}.totalnum{margin-top:20rpx}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background:#fff;box-sizing:border-box;margin-top:32rpx}.pingbox{margin-top:54rpx}.headitem{color:#3d444d;font-size:28rpx;width:250rpx;text-align:center;padding:28rpx 0;box-sizing:border-box;border-bottom:1rpx solid #fff}.selactive{color:#0093ff;font-size:28rpx;border-bottom:1rpx solid #0093ff}.daibanlist{padding:0 32rpx;box-sizing:border-box;padding-bottom:50rpx;margin-bottom:150rpx}.daibanlistitem{padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.daibanlsis{color:#3d444d;font-size:24rpx}.daibanm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.daibanmleft{color:#3d444d;font-size:28rpx;font-weight:700}.daibanmright{color:#0093ff;font-size:24rpx}.daibanbottom{color:#3d444d;font-size:24rpx;margin-top:12rpx;letter-spacing:2rpx}.yidu{color:#bdc4ce;font-size:24rpx}.datetop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.pingkind{width:686rpx;height:282rpx;background:#fff;opacity:1;border-radius:12rpx;margin:30rpx auto 0;padding:26rpx 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.pingtitle{color:#06121e;font-size:28rpx;font-weight:700}.pingnum{color:#0093ff;font-size:32rpx;font-weight:700}.pingtext{color:#06121e;font-size:24rpx;text-align:center}.textbox{margin-top:16rpx;height:66rpx}.totalnum{margin-top:20rpx}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:32rpx}.pingbox{margin-top:54rpx}.headitem{color:#3d444d;font-size:28rpx;width:250rpx;text-align:center;padding:28rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #fff}.selactive{color:#0093ff;font-size:28rpx;border-bottom:1rpx solid #0093ff}.daibanlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:50rpx;margin-bottom:150rpx}.daibanlistitem{padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.daibanlsis{color:#3d444d;font-size:24rpx}.daibanm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.daibanmleft{color:#3d444d;font-size:28rpx;font-weight:700}.daibanmright{color:#0093ff;font-size:24rpx}.daibanbottom{color:#3d444d;font-size:24rpx;margin-top:12rpx;letter-spacing:2rpx}.yidu{color:#bdc4ce;font-size:24rpx}.datetop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/danweitaizhang/danweitaizhang"],{"40cb":function(n,t,e){"use strict";var a,c=function(){var n=this,t=n.$createElement;n._self._c},u=[];e.d(t,"b",(function(){return c})),e.d(t,"c",(function(){return u})),e.d(t,"a",(function(){return a}))},"8d5e":function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={data:function(){return{selact:1,showping:!1}},onLoad:function(){},methods:{fenhui:function(n){console.log(n);var t=n.currentTarget.dataset.id;console.log(t),this.selact=t},screenheng:function(){console.log(999)},hidefenlei:function(){this.showping=!1}}};t.default=a},"8f6f":function(n,t,e){"use strict";(function(n){e("a237"),e("921b");a(e("66fd"));var t=a(e("b8c8"));function a(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},9908:function(n,t,e){"use strict";e.r(t);var a=e("8d5e"),c=e.n(a);for(var u in a)"default"!==u&&function(n){e.d(t,n,(function(){return a[n]}))}(u);t["default"]=c.a},b8c8:function(n,t,e){"use strict";e.r(t);var a=e("40cb"),c=e("9908");for(var u in c)"default"!==u&&function(n){e.d(t,n,(function(){return c[n]}))}(u);e("ffa00");var o,f=e("f0c5"),i=Object(f["a"])(c["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],o);t["default"]=i.exports},ca68:function(n,t,e){},ffa00:function(n,t,e){"use strict";var a=e("ca68"),c=e.n(a);c.a}},[["8f6f","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/danweitaizhang/danweitaizhang"],{2716:function(n,t,e){"use strict";e.r(t);var a=e("affa"),u=e.n(a);for(var o in a)"default"!==o&&function(n){e.d(t,n,(function(){return a[n]}))}(o);t["default"]=u.a},"3f8a":function(n,t,e){"use strict";e.r(t);var a=e("9c41"),u=e("2716");for(var o in u)"default"!==o&&function(n){e.d(t,n,(function(){return u[n]}))}(o);e("96b8");var c,f=e("f0c5"),i=Object(f["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],c);t["default"]=i.exports},5426:function(n,t,e){},"96b8":function(n,t,e){"use strict";var a=e("5426"),u=e.n(a);u.a},"9c41":function(n,t,e){"use strict";var a,u=function(){var n=this,t=n.$createElement;n._self._c},o=[];e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return o})),e.d(t,"a",(function(){return a}))},a2ff:function(n,t,e){"use strict";(function(n){e("bdbd"),e("921b");a(e("66fd"));var t=a(e("3f8a"));function a(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},affa:function(n,t,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={data:function(){return{selact:1,showping:!1}},onLoad:function(){},methods:{fenhui:function(n){console.log(n);var t=n.currentTarget.dataset.id;console.log(t),this.selact=t},screenheng:function(){console.log(999)},hidefenlei:function(){this.showping=!1}}};t.default=a}},[["a2ff","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box}.headitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 50rpx;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;box-sizing:border-box}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.headitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;-webkit-box-shadow:0 6px 6px rgba(0,0,0,.03);box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;height:0rpx;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx;margin:100rpx auto 0}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;height:0rpx;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx;margin:100rpx auto 0}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/danweivote/danweivote"],{"0aa0":function(t,n,e){"use strict";var o=e("1604"),r=e.n(o);r.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var r=this,a=new Promise((function(a,i){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:r.globalData.baseUrl+n,data:e,method:o,header:c,success:function(t){200==t.statusCode?a(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},1604:function(t,n,e){},"1f18":function(t,n,e){"use strict";e.r(n);var o=e("0c9c"),r=e.n(o);for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);n["default"]=r.a},"2e74":function(t,n,e){"use strict";e.r(n);var o=e("9d8c"),r=e.n(o);for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);n["default"]=r.a},"30b9":function(t,n,e){"use strict";e.r(n);var o=e("1f18");for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);e("0aa0");var a,i,u,c,l=e("f0c5"),f=Object(l["a"])(o["default"],a,i,!1,null,null,null,!1,u,c);n["default"]=f.exports},"44f9":function(t,n,e){"use strict";e.r(n);var o=e("4b3d"),r=e("2e74");for(var a in r)"default"!==a&&function(t){e.d(n,t,(function(){return r[t]}))}(a);e("e250");var i,u=e("f0c5"),c=Object(u["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);n["default"]=c.exports},"4b3d":function(t,n,e){"use strict";var o,r=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return a})),e.d(n,"a",(function(){return o}))},7602:function(t,n,e){"use strict";(function(t){e("a237"),e("921b");o(e("66fd"));var n=o(e("44f9"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"9d8c":function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=r(e("30b9"));function r(t){return t&&t.__esModule?t:{default:t}}function a(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=i(t))){var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,a=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){u=!0,r=t},f:function(){try{a||null==o.return||o.return()}finally{if(u)throw r}}}}function i(t,n){if(t){if("string"===typeof t)return u(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?u(t,n):void 0}}function u(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var c={data:function(){return{rizhilist:[],fprojectid:""}},onLoad:function(t){console.log("参数",t),this.fprojectid=t.id,console.log("111",this.fprojectid),this.getrizhilist()},methods:{getrizhilist:function(){var t=this;console.log(999);var n=this,e="project/Get_viewloglist",r={fprojectid:this.fprojectid};o.default.post(e,r,"get").then((function(e){console.log(e),n.rizhilist=e.data;var o,r=t.rizhilist,i=a(r);try{for(i.s();!(o=i.n()).done;){var u=o.value;u.fcreatedate=u.fcreatedate.split("T"),u.fcreatedate=u.fcreatedate[0]}}catch(c){i.e(c)}finally{i.f()}n.rizhilist=r})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value}}};n.default=c},d4ed:function(t,n,e){},e250:function(t,n,e){"use strict";var o=e("d4ed"),r=e.n(o);r.a}},[["7602","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/danweivote/danweivote"],{2166:function(t,n,e){"use strict";e.r(n);var o=e("593d"),r=e.n(o);for(var i in o)"default"!==i&&function(t){e.d(n,t,(function(){return o[t]}))}(i);n["default"]=r.a},3371:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=r(e("59df"));function r(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=a(t))){var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,i=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){u=!0,r=t},f:function(){try{i||null==o.return||o.return()}finally{if(u)throw r}}}}function a(t,n){if(t){if("string"===typeof t)return u(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?u(t,n):void 0}}function u(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var c={data:function(){return{rizhilist:[],fprojectid:""}},onLoad:function(t){console.log("参数",t),this.fprojectid=t.id,console.log("111",this.fprojectid),this.getrizhilist()},methods:{getrizhilist:function(){var t=this;console.log(999);var n=this,e="project/Get_viewloglist",r={fprojectid:this.fprojectid};o.default.post(e,r,"get").then((function(e){console.log(e),n.rizhilist=e.data;var o,r=t.rizhilist,a=i(r);try{for(a.s();!(o=a.n()).done;){var u=o.value;u.fcreatedate=u.fcreatedate.split("T"),u.fcreatedate=u.fcreatedate[0]}}catch(c){a.e(c)}finally{a.f()}n.rizhilist=r})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value}}};n.default=c},"4e90":function(t,n,e){"use strict";var o=e("d869"),r=e.n(o);r.a},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var r=this,i=new Promise((function(i,a){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:r.globalData.baseUrl+n,data:e,method:o,header:c,success:function(t){200==t.statusCode?i(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var o=e("2166");for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);e("4e90");var i,a,u,c,f=e("f0c5"),l=Object(f["a"])(o["default"],i,a,!1,null,null,null,!1,u,c);n["default"]=l.exports},"6ad7":function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");o(e("66fd"));var n=o(e("e697"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"90f4":function(t,n,e){},"99fe":function(t,n,e){"use strict";e.r(n);var o=e("3371"),r=e.n(o);for(var i in o)"default"!==i&&function(t){e.d(n,t,(function(){return o[t]}))}(i);n["default"]=r.a},d407:function(t,n,e){"use strict";var o,r=function(){var t=this,n=t.$createElement;t._self._c},i=[];e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return i})),e.d(n,"a",(function(){return o}))},d869:function(t,n,e){},e697:function(t,n,e){"use strict";e.r(n);var o=e("d407"),r=e("99fe");for(var i in r)"default"!==i&&function(t){e.d(n,t,(function(){return r[t]}))}(i);e("e82a");var a,u=e("f0c5"),c=Object(u["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);n["default"]=c.exports},e82a:function(t,n,e){"use strict";var o=e("90f4"),r=e.n(o);r.a}},[["6ad7","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#fff;padding:0 32rpx;box-sizing:border-box}page{background:#fff}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0 16rpx;box-sizing:border-box;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:2rpx solid #bdc4ce}.headitem{color:#06121e;font-size:28rpx;font-weight:700}.xiangmulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:22rpx 0 34rpx;box-sizing:border-box;border-bottom:1rpx solid #eee;background:#fff}.xiangmuhao{width:76rpx;color:#06121e;font-size:24rpx;text-align:center}.xiangming{width:150rpx;color:#06121e;font-size:24rpx;margin-left:4rpx;text-align:center;line-height:1.5}.pingshen{color:#06121e;font-size:24rpx;margin-left:10rpx;width:240rpx;text-align:center}.state{width:240rpx;color:#06121e;font-size:24rpx;margin-left:30rpx;line-height:1.4}.caozuoshuo{width:240rpx;text-align:center}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#fff;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}page{background:#fff}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:2rpx solid #bdc4ce}.headitem{color:#06121e;font-size:28rpx;font-weight:700}.xiangmulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:22rpx 0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee;background:#fff}.xiangmuhao{width:76rpx;color:#06121e;font-size:24rpx;text-align:center}.xiangming{width:150rpx;color:#06121e;font-size:24rpx;margin-left:4rpx;text-align:center;line-height:1.5}.pingshen{color:#06121e;font-size:24rpx;margin-left:10rpx;width:240rpx;text-align:center}.state{width:240rpx;color:#06121e;font-size:24rpx;margin-left:30rpx;line-height:1.4}.caozuoshuo{width:240rpx;text-align:center}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/danweizixun/danweizixun"],{"09a7":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=a(e("30b9"));function a(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=i(t))){var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,r=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){u=!0,a=t},f:function(){try{r||null==o.return||o.return()}finally{if(u)throw a}}}}function i(t,n){if(t){if("string"===typeof t)return u(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?u(t,n):void 0}}function u(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var l={data:function(){return{selshow:!1,xiangmulist:[],keyword:"",end:"",querylist:[]}},onLoad:function(){},methods:{zixundanweifen:function(n){console.log(n);var e=n.target.dataset.disid,o=n.target.dataset.item;console.log("999",o);var a=o.ftemid,r=o.fprojectid;console.log(r),o=JSON.stringify(o),console.log(o),t.navigateTo({url:"../zixundanweifen/zixundanweifen?disid="+e+"&item="+o+"&fteamid="+a+"&fprojectid="+r+"&status="+this.end[0].status})},vote:function(n){var e=n.target.dataset.itemid;console.log("lalal",e),t.navigateTo({url:"../danweivote/danweivote?id="+e})},getzixunlist:function(){console.log(999);var n=this,e="project/Get_advisory",a={fuserid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:""};o.default.post(e,a,"get").then((function(t){console.log("咨询单位",t),n.xiangmulist=t.data,n.querylist=t.data;var e=n.xiangmulist.splice(-1);n.end=e,console.log("hahhahahhah",JSON.stringify(n.end)),console.log(n.end[0].status),console.log(JSON.stringify(e)),console.log(n.xiangmulist)})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value},chaxun:function(){if(""==this.keyword)this.getzixunlist();else{var t,n=[],e=this.querylist,o=[],a=r(e);try{for(a.s();!(t=a.n()).done;){var i=t.value;o.push(i.fname)}}catch(c){a.e(c)}finally{a.f()}console.log("名称",o);for(var u=0;u<e.length;u++)for(var l=0;l<o.length;l++)o[l].indexOf(this.keyword)>=0&&l==u&&n.push(e[u]);console.log("9999000777",n),this.xiangmulist=n}}},onShow:function(){this.getzixunlist()}};n.default=l}).call(this,e("543d")["default"])},"0aa0":function(t,n,e){"use strict";var o=e("1604"),a=e.n(o);a.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var a=this,r=new Promise((function(r,i){var u=t.getStorageSync("token"),l={token:u||""};t.request({url:a.globalData.baseUrl+n,data:e,method:o,header:l,success:function(t){200==t.statusCode?r(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"0dd5":function(t,n,e){"use strict";var o,a=function(){var t=this,n=t.$createElement;t._self._c},r=[];e.d(n,"b",(function(){return a})),e.d(n,"c",(function(){return r})),e.d(n,"a",(function(){return o}))},1604:function(t,n,e){},"1f18":function(t,n,e){"use strict";e.r(n);var o=e("0c9c"),a=e.n(o);for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);n["default"]=a.a},2149:function(t,n,e){"use strict";e.r(n);var o=e("0dd5"),a=e("7836");for(var r in a)"default"!==r&&function(t){e.d(n,t,(function(){return a[t]}))}(r);e("2283");var i,u=e("f0c5"),l=Object(u["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);n["default"]=l.exports},2283:function(t,n,e){"use strict";var o=e("bc4a"),a=e.n(o);a.a},"30b9":function(t,n,e){"use strict";e.r(n);var o=e("1f18");for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);e("0aa0");var r,i,u,l,c=e("f0c5"),s=Object(c["a"])(o["default"],r,i,!1,null,null,null,!1,u,l);n["default"]=s.exports},"5a5e":function(t,n,e){"use strict";(function(t){e("a237"),e("921b");o(e("66fd"));var n=o(e("2149"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},7836:function(t,n,e){"use strict";e.r(n);var o=e("09a7"),a=e.n(o);for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);n["default"]=a.a},bc4a:function(t,n,e){}},[["5a5e","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/danweizixun/danweizixun"],{2166:function(t,n,e){"use strict";e.r(n);var o=e("593d"),r=e.n(o);for(var i in o)"default"!==i&&function(t){e.d(n,t,(function(){return o[t]}))}(i);n["default"]=r.a},2713:function(t,n,e){"use strict";e.r(n);var o=e("4bc8"),r=e("c17d");for(var i in r)"default"!==i&&function(t){e.d(n,t,(function(){return r[t]}))}(i);e("77b5");var a,u=e("f0c5"),l=Object(u["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);n["default"]=l.exports},"4bc8":function(t,n,e){"use strict";var o,r=function(){var t=this,n=t.$createElement;t._self._c},i=[];e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return i})),e.d(n,"a",(function(){return o}))},"4e90":function(t,n,e){"use strict";var o=e("d869"),r=e.n(o);r.a},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var r=this,i=new Promise((function(i,a){var u=t.getStorageSync("token"),l={token:u||""};t.request({url:r.globalData.baseUrl+n,data:e,method:o,header:l,success:function(t){200==t.statusCode?i(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var o=e("2166");for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);e("4e90");var i,a,u,l,c=e("f0c5"),f=Object(c["a"])(o["default"],i,a,!1,null,null,null,!1,u,l);n["default"]=f.exports},"77b5":function(t,n,e){"use strict";var o=e("d9b8"),r=e.n(o);r.a},b48f:function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");o(e("66fd"));var n=o(e("2713"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},c17d:function(t,n,e){"use strict";e.r(n);var o=e("ec9e"),r=e.n(o);for(var i in o)"default"!==i&&function(t){e.d(n,t,(function(){return o[t]}))}(i);n["default"]=r.a},d869:function(t,n,e){},d9b8:function(t,n,e){},ec9e:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=r(e("59df"));function r(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=a(t))){var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,i=!0,u=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){u=!0,r=t},f:function(){try{i||null==o.return||o.return()}finally{if(u)throw r}}}}function a(t,n){if(t){if("string"===typeof t)return u(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?u(t,n):void 0}}function u(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var l={data:function(){return{selshow:!1,xiangmulist:[],keyword:"",end:"",querylist:[]}},onLoad:function(){},methods:{zixundanweifen:function(n){console.log(n);var e=n.target.dataset.disid,o=n.target.dataset.item;console.log("999",o);var r=o.ftemid,i=o.fprojectid;console.log(i),o=JSON.stringify(o),console.log(o),t.navigateTo({url:"../zixundanweifen/zixundanweifen?disid="+e+"&item="+o+"&fteamid="+r+"&fprojectid="+i+"&status="+this.end[0].status})},vote:function(n){var e=n.target.dataset.itemid;console.log("lalal",e),t.navigateTo({url:"../danweivote/danweivote?id="+e})},getzixunlist:function(){console.log(999);var n=this,e="project/Get_advisory",r={fuserid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:""};o.default.post(e,r,"get").then((function(t){console.log("咨询单位",t),n.xiangmulist=t.data,n.querylist=t.data;var e=n.xiangmulist.splice(-1);n.end=e,console.log("hahhahahhah",JSON.stringify(n.end)),console.log(n.end[0].status),console.log(JSON.stringify(e)),console.log(n.xiangmulist)})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value},chaxun:function(){if(""==this.keyword)this.getzixunlist();else{var t,n=[],e=this.querylist,o=[],r=i(e);try{for(r.s();!(t=r.n()).done;){var a=t.value;o.push(a.fname)}}catch(c){r.e(c)}finally{r.f()}console.log("名称",o);for(var u=0;u<e.length;u++)for(var l=0;l<o.length;l++)o[l].indexOf(this.keyword)>=0&&l==u&&n.push(e[u]);console.log("9999000777",n),this.xiangmulist=n}}},onShow:function(){this.getzixunlist()}};n.default=l}).call(this,e("543d")["default"])}},[["b48f","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.fenzubtn:last-child{margin-right:0}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.fenzubtn:last-child{margin-right:0}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/download/download"],{"0aa0":function(n,t,e){"use strict";var o=e("1604"),u=e.n(o);u.a},"0c9c":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,o){var u=this,a=new Promise((function(a,c){var r=n.getStorageSync("token"),l={token:r||""};n.request({url:u.globalData.baseUrl+t,data:e,method:o,header:l,success:function(n){200==n.statusCode?a(n):c(n.data)},fail:function(n){console.log(n),c("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},1604:function(n,t,e){},"1f18":function(n,t,e){"use strict";e.r(t);var o=e("0c9c"),u=e.n(o);for(var a in o)"default"!==a&&function(n){e.d(t,n,(function(){return o[n]}))}(a);t["default"]=u.a},"22bc":function(n,t,e){"use strict";var o,u=function(){var n=this,t=n.$createElement;n._self._c},a=[];e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return a})),e.d(t,"a",(function(){return o}))},"30b9":function(n,t,e){"use strict";e.r(t);var o=e("1f18");for(var u in o)"default"!==u&&function(n){e.d(t,n,(function(){return o[n]}))}(u);e("0aa0");var a,c,r,l,f=e("f0c5"),i=Object(f["a"])(o["default"],a,c,!1,null,null,null,!1,r,l);t["default"]=i.exports},"460c":function(n,t,e){"use strict";e.r(t);var o=e("22bc"),u=e("7ce9");for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);var c,r=e("f0c5"),l=Object(r["a"])(u["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],c);t["default"]=l.exports},"7ce9":function(n,t,e){"use strict";e.r(t);var o=e("a274"),u=e.n(o);for(var a in o)"default"!==a&&function(n){e.d(t,n,(function(){return o[n]}))}(a);t["default"]=u.a},a274:function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;o(e("30b9"));function o(n){return n&&n.__esModule?n:{default:n}}var u={data:function(){return{showbanben:!1}},onLoad:function(t){console.log(t),this.url=n.getStorageSync("url"),console.log(this.url)},methods:{}};t.default=u}).call(this,e("543d")["default"])},ffb0:function(n,t,e){"use strict";(function(n){e("a237"),e("921b");o(e("66fd"));var t=o(e("460c"));function o(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])}},[["ffb0","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/download/download"],{2105:function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;o(e("59df"));function o(n){return n&&n.__esModule?n:{default:n}}var u={data:function(){return{showbanben:!1}},onLoad:function(t){console.log(t),this.url=n.getStorageSync("url"),console.log(this.url)},methods:{}};t.default=u}).call(this,e("543d")["default"])},2166:function(n,t,e){"use strict";e.r(t);var o=e("593d"),u=e.n(o);for(var a in o)"default"!==a&&function(n){e.d(t,n,(function(){return o[n]}))}(a);t["default"]=u.a},"3a91":function(n,t,e){"use strict";e.r(t);var o=e("2105"),u=e.n(o);for(var a in o)"default"!==a&&function(n){e.d(t,n,(function(){return o[n]}))}(a);t["default"]=u.a},"4d9f":function(n,t,e){"use strict";e.r(t);var o=e("587d"),u=e("3a91");for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);var r,c=e("f0c5"),l=Object(c["a"])(u["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);t["default"]=l.exports},"4e90":function(n,t,e){"use strict";var o=e("d869"),u=e.n(o);u.a},"587d":function(n,t,e){"use strict";var o,u=function(){var n=this,t=n.$createElement;n._self._c},a=[];e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return a})),e.d(t,"a",(function(){return o}))},"593d":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,o){var u=this,a=new Promise((function(a,r){var c=n.getStorageSync("token"),l={token:c||""};n.request({url:u.globalData.baseUrl+t,data:e,method:o,header:l,success:function(n){200==n.statusCode?a(n):r(n.data)},fail:function(n){console.log(n),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},"59df":function(n,t,e){"use strict";e.r(t);var o=e("2166");for(var u in o)"default"!==u&&function(n){e.d(t,n,(function(){return o[n]}))}(u);e("4e90");var a,r,c,l,f=e("f0c5"),i=Object(f["a"])(o["default"],a,r,!1,null,null,null,!1,c,l);t["default"]=i.exports},"6beb":function(n,t,e){"use strict";(function(n){e("bdbd"),e("921b");o(e("66fd"));var t=o(e("4d9f"));function o(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},d869:function(n,t,e){}},[["6beb","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/examinejingban/examinejingban"],{"011b":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("d546"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"072c":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return o}))},"0aa0":function(t,e,n){"use strict";var o=n("1604"),i=n.n(o);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,r=new Promise((function(r,a){var c=t.getStorageSync("token"),u={token:c||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:u,success:function(t){200==t.statusCode?r(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},2004:function(t,e,n){"use strict";var o=n("f8e2"),i=n.n(o);i.a},"2b29":function(t,e,n){"use strict";n.r(e);var o=n("4545"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("0aa0");var r,a,c,u,f=n("f0c5"),l=Object(f["a"])(o["default"],r,a,!1,null,null,null,!1,c,u);e["default"]=l.exports},4545:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("30b9")),i=r(n("079c"));function r(t){return t&&t.__esModule?t:{default:t}}function a(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,a=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){a=!0,i=t},f:function(){try{r||null==o.return||o.return()}finally{if(a)throw i}}}}function c(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var f={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",receive:-1,shenhe:"审核通过"}},onLoad:function(t){console.log(t.item),this.item=JSON.parse(t.item),console.log("评审报告",this.item);var e=this.item;e.ftoauditamt=i.default.change(e.ftoauditamt),this.item=e,this.getprojectkind(),console.log(i.default.unction(45622111))},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{isreceive:function(t){console.log(t),console.log(t.currentTarget.dataset.id),this.receive=t.currentTarget.dataset.id,console.log(this.receive)},downloadfile:function(e){var n=this;if(null==e)return t.showToast({title:"文件不存在",icon:"none"}),!1;var i="project/Select_FileInfo",r={};o.default.post(i,r,"get").then((function(o){console.log("下载文件",o),n.singgleurl=o.data[0].file;var i=o.data[0].file+"?fileId="+e;t.setStorageSync("url",i),plus.runtime.openURL(i)})).catch((function(t){console.log(t)}))},entershenhe:function(t){this.shenhe=t.detail.value},detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,i=a(t.projectarr);try{for(i.s();!(o=i.n()).done;){var r=o.value;r.fid==e.item.finorgid&&(t.fprjleader=r.fprjleader,t.fprjleadertwo=r.fprjleadertwo,t.fname=r.fname,t.finorgid=r.fid)}}catch(c){i.e(c)}finally{i.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(-1==e.receive)return t.showToast({title:"请选择审核结果",icon:"none"}),!1;var n="project/Submit_Personincharge",i={fprjleaderoneid:e.item.fprjleaderoneid,fprjphonetwoid:e.item.fprjleadertwoid,userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fdisid:e.item.fdisid,fdirstatus:e.item.fdirstatus,ffinauditstatus:e.item.ffinauditstatus,fagree:e.receive,fmemo:e.shenhe,fintorgid:e.item.fintorgid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(e){console.log(e),"提交成功"==e.data[0].message?(t.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)):t.showToast({title:e.data[0].message,icon:"none"})})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=f}).call(this,n("543d")["default"])},"7ded":function(t,e,n){"use strict";var o=n("8043"),i=n.n(o);i.a},8043:function(t,e,n){},d546:function(t,e,n){"use strict";n.r(e);var o=n("072c"),i=n("2b29");for(var r in i)"default"!==r&&function(t){n.d(e,t,(function(){return i[t]}))}(r);n("2004"),n("7ded");var a,c=n("f0c5"),u=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);e["default"]=u.exports},f8e2:function(t,e,n){}},[["011b","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/examinejingban/examinejingban"],{2166:function(e,t,n){"use strict";n.r(t);var o=n("593d"),i=n.n(o);for(var r in o)"default"!==r&&function(e){n.d(t,e,(function(){return o[e]}))}(r);t["default"]=i.a},"27b2":function(e,t,n){},3272:function(e,t,n){"use strict";var o=n("6c6e"),i=n.n(o);i.a},"4e90":function(e,t,n){"use strict";var o=n("d869"),i=n.n(o);i.a},"593d":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,n,o){var i=this,r=new Promise((function(r,a){var c=e.getStorageSync("token"),u={token:c||""};e.request({url:i.globalData.baseUrl+t,data:n,method:o,header:u,success:function(e){200==e.statusCode?r(e):a(e.data)},fail:function(e){console.log(e),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=n}).call(this,n("543d")["default"])},"59df":function(e,t,n){"use strict";n.r(t);var o=n("2166");for(var i in o)"default"!==i&&function(e){n.d(t,e,(function(){return o[e]}))}(i);n("4e90");var r,a,c,u,f=n("f0c5"),l=Object(f["a"])(o["default"],r,a,!1,null,null,null,!1,c,u);t["default"]=l.exports},"6ae0":function(e,t,n){"use strict";(function(e){n("bdbd"),n("921b");o(n("66fd"));var t=o(n("d76c"));function o(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,n("543d")["createPage"])},"6c6e":function(e,t,n){},"6ef5":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(n("59df")),i=r(n("b86c"));function r(e){return e&&e.__esModule?e:{default:e}}function a(e){if("undefined"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=c(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,a=!1;return{s:function(){o=e[Symbol.iterator]()},n:function(){var e=o.next();return r=e.done,e},e:function(e){a=!0,i=e},f:function(){try{r||null==o.return||o.return()}finally{if(a)throw i}}}}function c(e,t){if(e){if("string"===typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(e,t):void 0}}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,o=new Array(t);n<t;n++)o[n]=e[n];return o}var f={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",receive:-1,shenhe:"审核通过"}},onLoad:function(e){console.log(e.item),this.item=JSON.parse(e.item),console.log("评审报告",this.item);var t=this.item;t.ftoauditamt=i.default.change(t.ftoauditamt),this.item=t,"审核通过"==this.item.fdirstatus?this.receive=0:this.receive=1,this.getprojectkind(),console.log(i.default.unction(45622111))},onShow:function(){this.showhide=e.getStorageSync("showhide")},methods:{isreceive:function(e){console.log(e),console.log(e.currentTarget.dataset.id),this.receive=e.currentTarget.dataset.id,console.log(this.receive)},downloadfile:function(t){var n=this;if(null==t)return e.showToast({title:"文件不存在",icon:"none"}),!1;var i="project/Select_FileInfo",r={};o.default.post(i,r,"get").then((function(o){console.log("下载文件",o),n.singgleurl=o.data[0].file;var i=o.data[0].file+"?fileId="+t;e.setStorageSync("url",i),plus.runtime.openURL(i)})).catch((function(e){console.log(e)}))},entershenhe:function(e){this.shenhe=e.detail.value},detail:function(){var e=this,t="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(t,n,"get").then((function(t){console.log("分配信息",t),e.detaildata=t.data[0]})).catch((function(e){console.log(e)}))},getprojectkind:function(){var e=this,t=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),e.projectarr=n.data,"未分配"==t.item.ftaskprocess)e.fprjleader="",e.fprjleadertwo="",e.fname="";else{var o,i=a(e.projectarr);try{for(i.s();!(o=i.n()).done;){var r=o.value;r.fid==t.item.finorgid&&(e.fprjleader=r.fprjleader,e.fprjleadertwo=r.fprjleadertwo,e.fname=r.fname,e.finorgid=r.fid)}}catch(c){i.e(c)}finally{i.f()}e.detail()}})).catch((function(e){console.log(e)}))},bindPickerChange:function(e){console.log("picker发送选择改变,携带值为",e.target.value),this.index=e.target.value,this.fname=this.projectarr[e.target.value].fname,this.finorgid=this.projectarr[e.target.value].fid,this.fprjleader=this.projectarr[e.target.value].fprjleader,this.fprjleadertwo=this.projectarr[e.target.value].fprjleadertwo,this.detail()},submit:function(){var t=this;if(-1==t.receive)return e.showToast({title:"请选择审核结果",icon:"none"}),!1;var n="project/Submit_Personincharge",i={fprjleaderoneid:t.item.fprjleaderoneid,fprjphonetwoid:t.item.fprjleadertwoid,userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.item.fprojectid,fdisid:t.item.fdisid,fdirstatus:t.item.fdirstatus,ffinauditstatus:t.item.ffinauditstatus,fagree:t.receive,fmemo:t.shenhe,fintorgid:t.item.fintorgid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log(t),"提交成功"==t.data[0].message?(e.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){e.navigateBack({checked:!0})}),1e3)):(e.showToast({title:t.data[0].message,icon:"none"}),setTimeout((function(){e.navigateBack({checked:!0})}),1e3))})).catch((function(e){console.log(e)}))},changestate:function(){var t=this,n="project/Get_Fteam";e.getStorageSync("userid"),t.item.disid;o.default.post(n,"","get").then((function(e){console.log("修改状态",e)})).catch((function(e){console.log(e)}))}}};t.default=f}).call(this,n("543d")["default"])},"932f":function(e,t,n){"use strict";var o=n("27b2"),i=n.n(o);i.a},a3e0:function(e,t,n){"use strict";n.r(t);var o=n("6ef5"),i=n.n(o);for(var r in o)"default"!==r&&function(e){n.d(t,e,(function(){return o[e]}))}(r);t["default"]=i.a},c978:function(e,t,n){"use strict";var o,i=function(){var e=this,t=e.$createElement;e._self._c},r=[];n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return r})),n.d(t,"a",(function(){return o}))},d76c:function(e,t,n){"use strict";n.r(t);var o=n("c978"),i=n("a3e0");for(var r in i)"default"!==r&&function(e){n.d(t,e,(function(){return i[e]}))}(r);n("932f"),n("3272");var a,c=n("f0c5"),u=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);t["default"]=u.exports},d869:function(e,t,n){}},[["6ae0","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden}image{width:100%;height:100%}.box{background:#f9f9f9}.mailitemimg{width:32rpx;height:32rpx;font-size:0}.mail{padding:0 32rpx;box-sizing:border-box;margin-top:114rpx}.mailist{margin-top:12rpx}.mailitem{margin-top:20rpx}.mailstate{color:#8c9198;font-size:28rpx}.mailname{color:#06121e;font-size:28rpx;margin-left:12rpx}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx;padding:0 32rpx;box-sizing:border-box}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{width:750rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx;box-sizing:border-box;position:fixed;bottom:0;left:0}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin:0 auto}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden}image{width:100%;height:100%}.box{background:#f9f9f9}.mailitemimg{width:32rpx;height:32rpx;font-size:0}.mail{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:114rpx}.mailist{margin-top:12rpx}.mailitem{margin-top:20rpx}.mailstate{color:#8c9198;font-size:28rpx}.mailname{color:#06121e;font-size:28rpx;margin-left:12rpx}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx;width:180rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{width:750rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;bottom:0;left:0}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin:0 auto}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/fujian/fujian"],{"42a4":function(n,t,u){"use strict";u.r(t);var c=u("b260"),a=u.n(c);for(var e in c)"default"!==e&&function(n){u.d(t,n,(function(){return c[n]}))}(e);t["default"]=a.a},9184:function(n,t,u){"use strict";(function(n){u("a237"),u("921b");c(u("66fd"));var t=c(u("cb46"));function c(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,u("543d")["createPage"])},b260:function(n,t){},c230:function(n,t,u){"use strict";var c=u("d346"),a=u.n(c);a.a},cb46:function(n,t,u){"use strict";u.r(t);var c=u("fdf7"),a=u("42a4");for(var e in a)"default"!==e&&function(n){u.d(t,n,(function(){return a[n]}))}(e);u("c230");var f,r=u("f0c5"),o=Object(r["a"])(a["default"],c["b"],c["c"],!1,null,null,null,!1,c["a"],f);t["default"]=o.exports},d346:function(n,t,u){},fdf7:function(n,t,u){"use strict";var c,a=function(){var n=this,t=n.$createElement;n._self._c},e=[];u.d(t,"b",(function(){return a})),u.d(t,"c",(function(){return e})),u.d(t,"a",(function(){return c}))}},[["9184","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/fujian/fujian"],{2835:function(n,t,u){"use strict";u.r(t);var a=u("55db"),e=u("a813");for(var r in e)"default"!==r&&function(n){u.d(t,n,(function(){return e[n]}))}(r);u("3fe1");var c,f=u("f0c5"),o=Object(f["a"])(e["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],c);t["default"]=o.exports},"3fe1":function(n,t,u){"use strict";var a=u("7a61"),e=u.n(a);e.a},"55db":function(n,t,u){"use strict";var a,e=function(){var n=this,t=n.$createElement;n._self._c},r=[];u.d(t,"b",(function(){return e})),u.d(t,"c",(function(){return r})),u.d(t,"a",(function(){return a}))},"7a61":function(n,t,u){},a813:function(n,t,u){"use strict";u.r(t);var a=u("a83a"),e=u.n(a);for(var r in a)"default"!==r&&function(n){u.d(t,n,(function(){return a[n]}))}(r);t["default"]=e.a},a83a:function(n,t){},d468:function(n,t,u){"use strict";(function(n){u("bdbd"),u("921b");a(u("66fd"));var t=a(u("2835"));function a(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,u("543d")["createPage"])}},[["d468","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.box{background:#fff}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}
\ No newline at end of file
.box{background:#fff}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/guocheng/guocheng"],{"0aa0":function(t,n,e){"use strict";var o=e("1604"),u=e.n(o);u.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var u=this,a=new Promise((function(a,c){var r=t.getStorageSync("token"),i={token:r||""};t.request({url:u.globalData.baseUrl+n,data:e,method:o,header:i,success:function(t){200==t.statusCode?a(t):c(t.data)},fail:function(t){console.log(t),c("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},1604:function(t,n,e){},"1f18":function(t,n,e){"use strict";e.r(n);var o=e("0c9c"),u=e.n(o);for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);n["default"]=u.a},"2b99":function(t,n,e){"use strict";e.r(n);var o=e("eab6"),u=e.n(o);for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);n["default"]=u.a},"30b9":function(t,n,e){"use strict";e.r(n);var o=e("1f18");for(var u in o)"default"!==u&&function(t){e.d(n,t,(function(){return o[t]}))}(u);e("0aa0");var a,c,r,i,l=e("f0c5"),f=Object(l["a"])(o["default"],a,c,!1,null,null,null,!1,r,i);n["default"]=f.exports},3831:function(t,n,e){"use strict";(function(t){e("a237"),e("921b");o(e("66fd"));var n=o(e("e70f"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"41ec":function(t,n,e){"use strict";var o=e("b540"),u=e.n(o);u.a},b540:function(t,n,e){},cbc4:function(t,n,e){"use strict";var o,u=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return a})),e.d(n,"a",(function(){return o}))},e70f:function(t,n,e){"use strict";e.r(n);var o=e("cbc4"),u=e("2b99");for(var a in u)"default"!==a&&function(t){e.d(n,t,(function(){return u[t]}))}(a);e("41ec");var c,r=e("f0c5"),i=Object(r["a"])(u["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],c);n["default"]=i.exports},eab6:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=u(e("30b9"));function u(t){return t&&t.__esModule?t:{default:t}}var a={data:function(){return{list:[]}},onLoad:function(){},onShow:function(){this.getlist()},methods:{getlist:function(){var t=this;console.log(9988776655);var n="project/Get_Processtime";o.default.post(n,"","get").then((function(n){t.list=n.data})).catch((function(t){console.log(t)}))},detail:function(n){console.log(n),console.log(n);var e=n.currentTarget.dataset.item;e=JSON.stringify(e),console.log(e),t.navigateTo({url:"../xiangmuprogress/xiangmuprogress?item="+e})}}};n.default=a}).call(this,e("543d")["default"])}},[["3831","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/guocheng/guocheng"],{2166:function(t,n,e){"use strict";e.r(n);var o=e("593d"),u=e.n(o);for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);n["default"]=u.a},"3c2a":function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");o(e("66fd"));var n=o(e("9c01"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},4713:function(t,n,e){"use strict";var o=e("bb9f"),u=e.n(o);u.a},"4e90":function(t,n,e){"use strict";var o=e("d869"),u=e.n(o);u.a},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var u=this,a=new Promise((function(a,c){var r=t.getStorageSync("token"),i={token:r||""};t.request({url:u.globalData.baseUrl+n,data:e,method:o,header:i,success:function(t){200==t.statusCode?a(t):c(t.data)},fail:function(t){console.log(t),c("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var o=e("2166");for(var u in o)"default"!==u&&function(t){e.d(n,t,(function(){return o[t]}))}(u);e("4e90");var a,c,r,i,l=e("f0c5"),f=Object(l["a"])(o["default"],a,c,!1,null,null,null,!1,r,i);n["default"]=f.exports},6980:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=u(e("59df"));function u(t){return t&&t.__esModule?t:{default:t}}var a={data:function(){return{list:[]}},onLoad:function(){},onShow:function(){this.getlist()},methods:{getlist:function(){var t=this;console.log(9988776655);var n="project/Get_Processtime";o.default.post(n,"","get").then((function(n){t.list=n.data})).catch((function(t){console.log(t)}))},detail:function(n){console.log(n),console.log(n);var e=n.currentTarget.dataset.item;e=JSON.stringify(e),console.log(e),t.navigateTo({url:"../xiangmuprogress/xiangmuprogress?item="+e})}}};n.default=a}).call(this,e("543d")["default"])},7894:function(t,n,e){"use strict";e.r(n);var o=e("6980"),u=e.n(o);for(var a in o)"default"!==a&&function(t){e.d(n,t,(function(){return o[t]}))}(a);n["default"]=u.a},"9c01":function(t,n,e){"use strict";e.r(n);var o=e("f01c"),u=e("7894");for(var a in u)"default"!==a&&function(t){e.d(n,t,(function(){return u[t]}))}(a);e("4713");var c,r=e("f0c5"),i=Object(r["a"])(u["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],c);n["default"]=i.exports},bb9f:function(t,n,e){},d869:function(t,n,e){},f01c:function(t,n,e){"use strict";var o,u=function(){var t=this,n=t.$createElement;t._self._c},a=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return a})),e.d(n,"a",(function(){return o}))}},[["3c2a","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#f9f9f9;padding:0 32rpx;box-sizing:border-box}.head{width:750rpx;background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx;box-sizing:border-box;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:2rpx solid #bdc4ce;position:fixed;left:0;top:0}.headitem{color:#06121e;font-size:28rpx;font-weight:700}.xiangmulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:22rpx 0 34rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.xiangmuhao{width:140rpx;color:#06121e;font-size:24rpx}.xiangming{width:144rpx;color:#06121e;font-size:24rpx;margin-left:37rpx;text-align:center;line-height:1.5;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.pingshen{color:#06121e;font-size:24rpx;margin-left:78rpx;width:80rpx}.state{color:#d12324;font-size:24rpx;margin-left:128rpx}.finish{color:#00ac00;font-size:24rpx;margin-left:128rpx}.xiangmlist{margin-top:100rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#f9f9f9;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.head{width:750rpx;background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;border-bottom:2rpx solid #bdc4ce;position:fixed;left:0;top:0}.headitem{color:#06121e;font-size:28rpx;font-weight:700}.xiangmulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:22rpx 0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.xiangmuhao{width:140rpx;color:#06121e;font-size:24rpx}.xiangming{width:144rpx;color:#06121e;font-size:24rpx;margin-left:37rpx;text-align:center;line-height:1.5;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.pingshen{color:#06121e;font-size:24rpx;margin-left:78rpx;width:80rpx}.state{color:#d12324;font-size:24rpx;margin-left:128rpx}.finish{color:#00ac00;font-size:24rpx;margin-left:128rpx}.xiangmlist{margin-top:100rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/index/index"],{"0aa0":function(n,e,t){"use strict";var o=t("1604"),a=t.n(o);a.a},"0c9c":function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,t,o){var a=this,s=new Promise((function(s,r){var i=n.getStorageSync("token"),u={token:i||""};n.request({url:a.globalData.baseUrl+e,data:t,method:o,header:u,success:function(n){200==n.statusCode?s(n):r(n.data)},fail:function(n){console.log(n),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return s},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=t}).call(this,t("543d")["default"])},1604:function(n,e,t){},"1f18":function(n,e,t){"use strict";t.r(e);var o=t("0c9c"),a=t.n(o);for(var s in o)"default"!==s&&function(n){t.d(e,n,(function(){return o[n]}))}(s);e["default"]=a.a},"30b9":function(n,e,t){"use strict";t.r(e);var o=t("1f18");for(var a in o)"default"!==a&&function(n){t.d(e,n,(function(){return o[n]}))}(a);t("0aa0");var s,r,i,u,c=t("f0c5"),l=Object(c["a"])(o["default"],s,r,!1,null,null,null,!1,i,u);e["default"]=l.exports},"40f8":function(n,e,t){},"813b":function(n,e,t){"use strict";var o,a=function(){var n=this,e=n.$createElement;n._self._c},s=[];t.d(e,"b",(function(){return a})),t.d(e,"c",(function(){return s})),t.d(e,"a",(function(){return o}))},"866a":function(n,e,t){"use strict";var o=t("40f8"),a=t.n(o);a.a},c63a:function(n,e,t){"use strict";t.r(e);var o=t("813b"),a=t("e53b");for(var s in a)"default"!==s&&function(n){t.d(e,n,(function(){return a[n]}))}(s);t("866a");var r,i=t("f0c5"),u=Object(i["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=u.exports},e497:function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(t("30b9"));function a(n){return n&&n.__esModule?n:{default:n}}var s={data:function(){return{selshow:!0,phone:"",password:"",rangenum:"",yanzhengcode:"",tanceng:!1,seldeng:0,seldengk:0}},onLoad:function(){var e=("000000"+Math.floor(999999*Math.random())).slice(-6);this.rangenum=e;var t=n.getStorageSync("username"),o=n.getStorageSync("password");console.log("用户名",t),""!=t&&(this.phone=t,this.password=o,this.selshow=!0)},methods:{zhengce:function(e){var t=e.currentTarget.dataset.id;n.navigateTo({url:"../yinsi/yinsi?id="+t})},selectxuan:function(){console.log(888),this.selshow=!this.selshow,1==this.selshow?(n.setStorageSync("username",this.phone),n.setStorageSync("password",this.password)):n.setStorageSync("username","")},changenum:function(){var n=("000000"+Math.floor(999999*Math.random())).slice(-6);this.rangenum=n},enteryanzheng:function(n){this.yanzhengcode=n.target.value},onKeyInput:function(n){console.log(n),this.phone=n.target.value},enterpass:function(n){this.password=n.target.value},login:function(){var e=this,t=this;if(t.seldeng=1,console.log(666),console.log(this.phone),console.log(this.password),""==this.phone)return n.showToast({title:"请输入登录账号",icon:"none"}),t.seldeng=0,!1;if(""==this.password)return n.showToast({title:"请输入密码",icon:"none"}),t.seldeng=0,!1;if(""==this.yanzhengcode)return n.showToast({title:"请输入验证码",icon:"none"}),t.seldeng=0,!1;if(""!=this.yanzhengcode&&this.yanzhengcode!=this.rangenum)return n.showToast({title:"验证码输入错误",icon:"none"}),t.seldeng=0,!1;var a="project/Login",s={username:t.phone,password:t.password};console.log("8877665544",s),o.default.post(a,s,"post").then((function(o){t.seldengk=1,console.log("1234567890",o);var a=o.data;if(1==o.data[0].status)null==o.data[0].username?t.seldengk=0:t.seldengk=1,n.showToast({title:o.data[0].message,icon:"none"});else{n.setStorageSync("username",e.phone),n.setStorageSync("password",e.password);var s=a[0].role,r=a[0].userid,i=a[0].username;n.setStorageSync("role",s),n.setStorageSync("userid",r),n.setStorageSync("name",i),console.log("打印",n.getStorageSync("role")),console.log("打印",n.getStorageSync("name")),n.showToast({title:"登录成功",icon:"none"}),setTimeout((function(){console.log(8800),n.navigateTo({url:"../daiban/daiban"})}),500)}})).catch((function(n){console.log(n),t.seldengk=0,t.tanceng=!0,setTimeout((function(){t.tanceng=!1}),1500)}))}}};e.default=s}).call(this,t("543d")["default"])},e53b:function(n,e,t){"use strict";t.r(e);var o=t("e497"),a=t.n(o);for(var s in o)"default"!==s&&function(n){t.d(e,n,(function(){return o[n]}))}(s);e["default"]=a.a},f063:function(n,e,t){"use strict";(function(n){t("a237"),t("921b");o(t("66fd"));var e=o(t("c63a"));function o(n){return n&&n.__esModule?n:{default:n}}n(e.default)}).call(this,t("543d")["createPage"])}},[["f063","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/index/index"],{2166:function(n,e,t){"use strict";t.r(e);var o=t("593d"),a=t.n(o);for(var s in o)"default"!==s&&function(n){t.d(e,n,(function(){return o[n]}))}(s);e["default"]=a.a},"2f5e":function(n,e,t){"use strict";(function(n){t("bdbd"),t("921b");o(t("66fd"));var e=o(t("64ba"));function o(n){return n&&n.__esModule?n:{default:n}}n(e.default)}).call(this,t("543d")["createPage"])},"359a":function(n,e,t){},"4e25":function(n,e,t){"use strict";var o=t("359a"),a=t.n(o);a.a},"4e90":function(n,e,t){"use strict";var o=t("d869"),a=t.n(o);a.a},"593d":function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,t,o){var a=this,s=new Promise((function(s,r){var i=n.getStorageSync("token"),u={token:i||""};n.request({url:a.globalData.baseUrl+e,data:t,method:o,header:u,success:function(n){200==n.statusCode?s(n):r(n.data)},fail:function(n){console.log(n),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return s},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=t}).call(this,t("543d")["default"])},"59df":function(n,e,t){"use strict";t.r(e);var o=t("2166");for(var a in o)"default"!==a&&function(n){t.d(e,n,(function(){return o[n]}))}(a);t("4e90");var s,r,i,u,c=t("f0c5"),l=Object(c["a"])(o["default"],s,r,!1,null,null,null,!1,i,u);e["default"]=l.exports},"64ba":function(n,e,t){"use strict";t.r(e);var o=t("7fcf"),a=t("cbd6");for(var s in a)"default"!==s&&function(n){t.d(e,n,(function(){return a[n]}))}(s);t("4e25");var r,i=t("f0c5"),u=Object(i["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=u.exports},"7fcf":function(n,e,t){"use strict";var o,a=function(){var n=this,e=n.$createElement;n._self._c},s=[];t.d(e,"b",(function(){return a})),t.d(e,"c",(function(){return s})),t.d(e,"a",(function(){return o}))},cbd6:function(n,e,t){"use strict";t.r(e);var o=t("fe21"),a=t.n(o);for(var s in o)"default"!==s&&function(n){t.d(e,n,(function(){return o[n]}))}(s);e["default"]=a.a},d869:function(n,e,t){},fe21:function(n,e,t){"use strict";(function(n){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(t("59df"));function a(n){return n&&n.__esModule?n:{default:n}}var s={data:function(){return{selshow:!0,phone:"",password:"",rangenum:"",yanzhengcode:"",tanceng:!1,seldeng:0,seldengk:0}},onLoad:function(){var e=("000000"+Math.floor(999999*Math.random())).slice(-6);this.rangenum=e;var t=n.getStorageSync("username"),o=n.getStorageSync("password");console.log("用户名",t),""!=t&&(this.phone=t,this.password=o,this.selshow=!0)},methods:{zhengce:function(e){var t=e.currentTarget.dataset.id;n.navigateTo({url:"../yinsi/yinsi?id="+t})},selectxuan:function(){console.log(888),this.selshow=!this.selshow,1==this.selshow?(n.setStorageSync("username",this.phone),n.setStorageSync("password",this.password)):n.setStorageSync("username","")},changenum:function(){var n=("000000"+Math.floor(999999*Math.random())).slice(-6);this.rangenum=n},enteryanzheng:function(n){this.yanzhengcode=n.target.value},onKeyInput:function(n){console.log(n),this.phone=n.target.value},enterpass:function(n){this.password=n.target.value},login:function(){var e=this,t=this;if(t.seldeng=1,console.log(666),console.log(this.phone),console.log(this.password),""==this.phone)return n.showToast({title:"请输入登录账号",icon:"none"}),t.seldeng=0,!1;if(""==this.password)return n.showToast({title:"请输入密码",icon:"none"}),t.seldeng=0,!1;if(""==this.yanzhengcode)return n.showToast({title:"请输入验证码",icon:"none"}),t.seldeng=0,!1;if(""!=this.yanzhengcode&&this.yanzhengcode!=this.rangenum)return n.showToast({title:"验证码输入错误",icon:"none"}),t.seldeng=0,!1;var a="project/Login",s={username:t.phone,password:t.password};console.log("8877665544",s),o.default.post(a,s,"post").then((function(o){t.seldengk=1,console.log("1234567890",o);var a=o.data;if(1==o.data[0].status)null==o.data[0].username?t.seldengk=0:t.seldengk=1,n.showToast({title:o.data[0].message,icon:"none"});else{n.setStorageSync("username",e.phone),n.setStorageSync("password",e.password);var s=a[0].role,r=a[0].userid,i=a[0].username;n.setStorageSync("role",s),n.setStorageSync("userid",r),n.setStorageSync("name",i),console.log("打印",n.getStorageSync("role")),console.log("打印",n.getStorageSync("name")),n.showToast({title:"登录成功",icon:"none"}),setTimeout((function(){console.log(8800),n.navigateTo({url:"../daiban/daiban"})}),500)}})).catch((function(n){console.log(n),t.seldengk=0,t.tanceng=!0,setTimeout((function(){t.tanceng=!1}),1500)}))}}};e.default=s}).call(this,t("543d")["default"])}},[["2f5e","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
<view class="box"><view class="tpouziname">大足投资项目评审管理平台</view><view class="zhuanjia">含专家</view><view class="shrumima zhanghao"><input type="text" placeholder="请输入登录账号/手机号" placeholder-class="entershouji" data-event-opts="{{[['input',[['onKeyInput',['$event']]]]]}}" value="{{phone}}" bindinput="__e"/></view><view class="shrumima mima"><input type="password" placeholder="请输入密码" placeholder-class="entershouji" data-event-opts="{{[['input',[['enterpass',['$event']]]]]}}" value="{{password}}" bindinput="__e"/></view><view class="yanzheng"><view class="yanzhengleft"><input type="text" placeholder="验证码" placeholder-class="yan" data-event-opts="{{[['input',[['enteryanzheng',['$event']]]]]}}" bindinput="__e"/></view><view data-event-opts="{{[['tap',[['changenum',['$event']]]]]}}" class="yanzhenghao" bindtap="__e">{{rangenum}}</view></view><view data-event-opts="{{[['tap',[['selectxuan',['$event']]]]]}}" class="select" bindtap="__e"><block wx:if="{{selshow}}"><view class="selectleft"><image src="../../static/img/selectone.png" mode></image></view></block><block wx:else><view class="selectleft"><image src="../../static/img/select.png" mode></image></view></block><view class="selectright">记住用户名</view></view><view data-event-opts="{{[['tap',[['login',['$event']]]]]}}" class="{{['denglu',seldeng==1?'dengactive':'']}}" bindtap="__e"><block wx:if="{{seldengk==1}}"><text>登录中...</text></block><block wx:else><text>登录</text></block></view><view class="biaoshi">登录即表示<text class="xieyi" data-id="1" data-event-opts="{{[['tap',[['zhengce',['$event']]]]]}}" bindtap="__e">用户协议</text>和<text class="xieyi" data-id="2" data-event-opts="{{[['tap',[['zhengce',['$event']]]]]}}" bindtap="__e">隐私政策</text></view><block wx:if="{{tanceng}}"><view class="pop">网络出错</view></block></view>
\ No newline at end of file
<view class="box"><view class="tpouziname">大足投资项目评审管理平台</view><view class="zhuanjia">含专家</view><view class="shrumima zhanghao"><input type="text" placeholder="请输入登录账号/手机号" placeholder-class="entershouji" data-event-opts="{{[['input',[['onKeyInput',['$event']]]]]}}" value="{{phone}}" bindinput="__e"/></view><view class="shrumima mima"><input type="password" placeholder="请输入密码" placeholder-class="entershouji" data-event-opts="{{[['input',[['enterpass',['$event']]]]]}}" value="{{password}}" bindinput="__e"/></view><view class="yanzheng"><view class="yanzhengleft"><input type="text" placeholder="验证码" placeholder-class="yan" data-event-opts="{{[['input',[['enteryanzheng',['$event']]]]]}}" bindinput="__e"/></view><view data-event-opts="{{[['tap',[['changenum',['$event']]]]]}}" class="yanzhenghao" bindtap="__e">{{rangenum}}</view></view><view data-event-opts="{{[['tap',[['selectxuan',['$event']]]]]}}" class="select" bindtap="__e"><block wx:if="{{selshow}}"><view class="selectleft"><image src="../../static/img/selk.png" mode></image></view></block><block wx:else><view class="selectleft"><image src="../../static/img/select.png" mode></image></view></block><view class="selectright">记住用户名</view></view><view data-event-opts="{{[['tap',[['login',['$event']]]]]}}" class="{{['denglu',seldeng==1?'dengactive':'']}}" bindtap="__e"><block wx:if="{{seldengk==1}}"><text>登录中...</text></block><block wx:else><text>登录</text></block></view><view class="biaoshi">登录即表示<text class="xieyi" data-id="1" data-event-opts="{{[['tap',[['zhengce',['$event']]]]]}}" bindtap="__e">用户协议</text>和<text class="xieyi" data-id="2" data-event-opts="{{[['tap',[['zhengce',['$event']]]]]}}" bindtap="__e">隐私政策</text></view><block wx:if="{{tanceng}}"><view class="pop">网络出错</view></block></view>
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{width:100%;height:100%}.biaoshi{color:#fff;font-size:28rpx;margin-top:20rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.xieyi{color:#ff9417;font-size:28rpx}.box{width:750rpx;height:100%;background:url(http://www.bjzha.net/images/yemian.png) no-repeat 50%;background-size:cover;overflow:hidden}.tpouziname{color:#f9f9f9;font-size:56rpx;text-align:center;margin-top:278rpx;font-weight:700}.zhuanjia{color:#f9f9f9;font-size:40rpx;text-align:center;font-weight:700}.shrumima{width:438rpx;height:68rpx;background:#eee;opacity:1;border-radius:8rpx;color:#bdc4ce;font-size:24rpx;padding:18rpx 24rpx;box-sizing:border-box;margin:232rpx auto 0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.shrumima input{width:100%}.entershouji{color:#bdc4ce;font-size:24rpx}.mima{margin:32rpx auto 0}.mima input{font-size:24rpx}.yanzheng{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.yanzheng{width:438rpx;margin:32rpx auto 0}.yanzhengleft{width:256rpx;height:68rpx;border-radius:8rpx;background:#fff;padding:18rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background:#eee;color:#bdc4ce;font-size:24rpx}.yanzhengleft input{width:100%;height:100%;font-size:24rpx}.yanzhenghao{width:162rpx;height:68rpx;background:#fff;opacity:1;border-radius:8rpx;margin-left:20rpx;color:#169bd5;font-size:24rpx;text-align:center;line-height:68rpx;letter-spacing:6rpx;font-weight:700;background:#eee}.yanzhenghao input{color:#bdc4ce;font-size:24rpx}.yan{color:#bdc4ce;font-size:24rpx}.select{width:438rpx;margin:20rpx auto 0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.selectleft{width:20rpx;height:20rpx;font-size:0}.selectleft image{width:100%;height:100%}.selectright{color:#fff;font-size:20rpx;margin-left:10rpx}.denglu{width:438rpx;height:76rpx;opacity:1;background:#007aff;opacity:.9;color:#fff;font-size:24rpx;text-align:center;line-height:76rpx;margin:52rpx auto 0;border-radius:8rpx}.dengactive{opacity:.9;background:#738dfa}.pop{width:200rpx;height:80rpx;background-color:rgba(0,0,0,.5);border-radius:16rpx;color:#fff;font-size:30rpx;text-align:center;line-height:80rpx;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.zhanghao input{font-size:24rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{width:100%;height:100%}.biaoshi{color:#fff;font-size:28rpx;margin-top:20rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.xieyi{color:#ff9417;font-size:28rpx}.box{width:750rpx;height:100%;background:url(http://39.105.61.115:1912/scripts/yemian.png) no-repeat 50%;background-size:cover;overflow:hidden}.tpouziname{color:#f9f9f9;font-size:56rpx;text-align:center;margin-top:278rpx;font-weight:700}.zhuanjia{color:#f9f9f9;font-size:40rpx;text-align:center;font-weight:700}.shrumima{width:438rpx;height:68rpx;background:#eee;opacity:1;border-radius:8rpx;color:#232323;font-size:28rpx;padding:18rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin:232rpx auto 0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.shrumima input{width:100%}.entershouji{color:#232323;font-size:28rpx}.mima{margin:32rpx auto 0}.mima input{font-size:28rpx}.yanzheng{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.yanzheng{width:438rpx;margin:32rpx auto 0}.yanzhengleft{width:256rpx;height:68rpx;border-radius:8rpx;background:#fff;padding:18rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background:#eee;color:#232323;font-size:24rpx}.yanzhengleft input{width:100%;height:100%;font-size:28rpx}.yanzhenghao{width:162rpx;height:68rpx;background:#fff;opacity:1;border-radius:8rpx;margin-left:20rpx;color:#169bd5;font-size:24rpx;text-align:center;line-height:68rpx;letter-spacing:6rpx;font-weight:700;background:#eee}.yanzhenghao input{color:#232323;font-size:24rpx}.yan{color:#232323;font-size:28rpx}.select{width:438rpx;margin:20rpx auto 0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.selectleft{width:28rpx;height:28rpx;font-size:0}.selectleft image{width:100%;height:100%}.selectright{color:#fff;font-size:26rpx;margin-left:10rpx}.denglu{width:438rpx;height:76rpx;opacity:1;background:#007aff;opacity:.9;color:#fff;font-size:24rpx;text-align:center;line-height:76rpx;margin:52rpx auto 0;border-radius:8rpx}.dengactive{opacity:.9;background:#738dfa}.pop{width:200rpx;height:80rpx;background-color:rgba(0,0,0,.5);border-radius:16rpx;color:#fff;font-size:30rpx;text-align:center;line-height:80rpx;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.zhanghao input{font-size:28rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/jieduantaizhang/jieduantaizhang"],{"0080":function(t,n,e){"use strict";var a=e("cd7b"),u=e.n(a);u.a},"0aa0":function(t,n,e){"use strict";var a=e("1604"),u=e.n(a);u.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,a){var u=this,o=new Promise((function(o,i){var f=t.getStorageSync("token"),c={token:f||""};t.request({url:u.globalData.baseUrl+n,data:e,method:a,header:c,success:function(t){200==t.statusCode?o(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},1604:function(t,n,e){},"1f18":function(t,n,e){"use strict";e.r(n);var a=e("0c9c"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},2203:function(t,n,e){"use strict";var a,u=function(){var t=this,n=t.$createElement;t._self._c},o=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return o})),e.d(n,"a",(function(){return a}))},"30b9":function(t,n,e){"use strict";e.r(n);var a=e("1f18");for(var u in a)"default"!==u&&function(t){e.d(n,t,(function(){return a[t]}))}(u);e("0aa0");var o,i,f,c,r=e("f0c5"),l=Object(r["a"])(a["default"],o,i,!1,null,null,null,!1,f,c);n["default"]=l.exports},"5a50":function(t,n,e){"use strict";e.r(n);var a=e("a0ea"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},"5df6":function(t,n,e){"use strict";e.r(n);var a=e("2203"),u=e("5a50");for(var o in u)"default"!==o&&function(t){e.d(n,t,(function(){return u[t]}))}(o);e("0080");var i,f=e("f0c5"),c=Object(f["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],i);n["default"]=c.exports},"64dd":function(t,n,e){"use strict";(function(t){e("a237"),e("921b");a(e("66fd"));var n=a(e("5df6"));function a(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},a0ea:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;u(e("30b9"));var a=u(e("079c"));function u(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{item:""}},onLoad:function(t){console.log(t),this.item=JSON.parse(t.item);var n=this.item;n.fsubmitfindate=n.fsubmitfindate.split("T"),n.fsubmitfindate=n.fsubmitfindate[0],n.fauditamount=a.default.change(n.fauditamount),n.ftoauditamt=a.default.change(n.ftoauditamt),n.fshenjianmoney=a.default.change(n.fshenjianmoney),this.item=n,console.log(this.item)},methods:{}};n.default=o},cd7b:function(t,n,e){}},[["64dd","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/jieduantaizhang/jieduantaizhang"],{2166:function(t,n,e){"use strict";e.r(n);var a=e("593d"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},"3c5f":function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");a(e("66fd"));var n=a(e("c85e"));function a(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"4e90":function(t,n,e){"use strict";var a=e("d869"),u=e.n(a);u.a},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,a){var u=this,o=new Promise((function(o,i){var f=t.getStorageSync("token"),c={token:f||""};t.request({url:u.globalData.baseUrl+n,data:e,method:a,header:c,success:function(t){200==t.statusCode?o(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var a=e("2166");for(var u in a)"default"!==u&&function(t){e.d(n,t,(function(){return a[t]}))}(u);e("4e90");var o,i,f,c,r=e("f0c5"),d=Object(r["a"])(a["default"],o,i,!1,null,null,null,!1,f,c);n["default"]=d.exports},a74d:function(t,n,e){"use strict";e.r(n);var a=e("e283"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},ad8f:function(t,n,e){},bfa8:function(t,n,e){"use strict";var a=e("ad8f"),u=e.n(a);u.a},c0d2:function(t,n,e){"use strict";var a,u=function(){var t=this,n=t.$createElement;t._self._c},o=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return o})),e.d(n,"a",(function(){return a}))},c85e:function(t,n,e){"use strict";e.r(n);var a=e("c0d2"),u=e("a74d");for(var o in u)"default"!==o&&function(t){e.d(n,t,(function(){return u[t]}))}(o);e("bfa8");var i,f=e("f0c5"),c=Object(f["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],i);n["default"]=c.exports},d869:function(t,n,e){},e283:function(t,n,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;u(e("59df"));var a=u(e("b86c"));function u(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{item:""}},onLoad:function(t){console.log(t),this.item=JSON.parse(t.item);var n=this.item;n.fsubmitfindate=n.fsubmitfindate.split("T"),n.fsubmitfindate=n.fsubmitfindate[0],n.fauditamount=a.default.change(n.fauditamount),n.ftoauditamt=a.default.change(n.ftoauditamt),n.fshenjianmoney=a.default.change(n.fshenjianmoney),this.item=n,console.log(this.item)},methods:{}};n.default=o}},[["3c5f","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.xiangmuname{width:550rpx;text-align:right}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:140rpx}.zuxiangmu{color:#3d444d;font-size:28rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.xiangmuname{width:550rpx;text-align:right}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:140rpx}.zuxiangmu{color:#3d444d;font-size:28rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/projectziliao/projectziliao"],{"0aa0":function(e,t,o){"use strict";var n=o("1604"),i=o.n(n);i.a},"0c9c":function(e,t,o){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,o,n){var i=this,a=new Promise((function(a,s){var c=e.getStorageSync("token"),l={token:c||""};e.request({url:i.globalData.baseUrl+t,data:o,method:n,header:l,success:function(e){200==e.statusCode?a(e):s(e.data)},fail:function(e){console.log(e),s("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=o}).call(this,o("543d")["default"])},1604:function(e,t,o){},"18a0":function(e,t,o){"use strict";var n=o("8f28"),i=o.n(n);i.a},"1f18":function(e,t,o){"use strict";o.r(t);var n=o("0c9c"),i=o.n(n);for(var a in n)"default"!==a&&function(e){o.d(t,e,(function(){return n[e]}))}(a);t["default"]=i.a},"30b9":function(e,t,o){"use strict";o.r(t);var n=o("1f18");for(var i in n)"default"!==i&&function(e){o.d(t,e,(function(){return n[e]}))}(i);o("0aa0");var a,s,c,l,r=o("f0c5"),u=Object(r["a"])(n["default"],a,s,!1,null,null,null,!1,c,l);t["default"]=u.exports},"8f28":function(e,t,o){},a053:function(e,t,o){"use strict";var n,i=function(){var e=this,t=e.$createElement;e._self._c},a=[];o.d(t,"b",(function(){return i})),o.d(t,"c",(function(){return a})),o.d(t,"a",(function(){return n}))},a1e3:function(e,t,o){"use strict";o.r(t);var n=o("e45e"),i=o.n(n);for(var a in n)"default"!==a&&function(e){o.d(t,e,(function(){return n[e]}))}(a);t["default"]=i.a},e45e:function(e,t,o){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(o("30b9"));i(o("079c"));function i(e){return e&&e.__esModule?e:{default:e}}var a={data:function(){return{disid:"",item:"",fteamid:"",fprojectid:"",ftrialnumber:"",fconcludenumber:"",votelist:[],danweilist:[],index:0,keyword:"",showhide:"",fuzepeople:"",fuzephone:"",status:"",subdisid:"",daibanfprojectid:"",touvotelist:[],fintorgid:" ",danweiname:"请选择咨询单位",state:"",seeklist:[],replylist:[],downurl:"",singgleurl:"",type:"",typeprojectid:"",project:""}},onLoad:function(t){if(console.log("传的参数",t),void 0!=t.type){switch(this.type=t.type,this.typeprojectid=t.projectid,this.type){case 1:console.log(this.type),this.project="prj_toaudit_budget";break;case 2:console.log(this.type),this.project="prj_toaudit_settlement";break;case 3:this.project="prj_toaudit_change";break;case 4:this.project="prj_toaudit_land";break}this.getbudgetlist()}else this.item=JSON.parse(t.item),console.log(this.item);this.getseeklist(),this.getreplay(),this.showhide=e.getStorageSync("showhide")},methods:{getbudgetlist:function(){var t=this,o="project/Get_ProjectInventory",i={fprojectcategory:t.project,fuserid:e.getStorageSync("userid"),fprojectid:t.typeprojectid,role:e.getStorageSync("role")};console.log("8877665544",i),n.default.post(o,i,"get").then((function(e){console.log(e,"kkkkk"),t.item=e.data[0]})).catch((function(e){console.log(e)}))},shenjie:function(t){var o="project/Save_ProjectConclude",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.fprojectid,fdisid:t.fdisid,fdirstatus:t.fdirstatus,ffinauditstatus:t.ffinauditstatus};console.log("8877665544",i),n.default.post(o,i,"get").then((function(t){console.log(t),e.showToast({title:t.data[0].message,icon:"none"})})).catch((function(e){console.log(e)}))},question:function(t){console.log(t);var o=t.fprojectid;e.setStorageSync("questionid",o),e.navigateTo({url:"/pages/question/question?quesprojectid="+o})},jingban:function(t){var o=JSON.stringify(t);e.navigateTo({url:"/pages/examinejingban/examinejingban?item="+o})},pingshen:function(t){var o=JSON.stringify(t);e.navigateTo({url:"/pages/reviewreport/reviewreport?item="+o})},concatsure:function(t){var o=JSON.stringify(t);e.navigateTo({url:"/pages/concat/concat?item="+o})},getseeklist:function(){var t=this,o="project/Select_Fseektity",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.item.fprojectid,fdisid:t.item.fdisid,type:"fseektity"};console.log("8877665544",i),n.default.post(o,i,"get").then((function(e){console.log("征求意见稿",e),t.seeklist=e.data})).catch((function(e){console.log(e)}))},getreplay:function(){var t=this,o="project/Select_Fseektity",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.item.fprojectid,fdisid:t.item.fdisid,type:"ffirstreplyfile"};console.log("8877665544",i),n.default.post(o,i,"get").then((function(e){console.log("审核回复文件",e),t.replylist=e.data,console.log(t.replylist.length),console.log(t.seeklist),console.log(JSON.stringify(t.seeklist))})).catch((function(e){console.log(e)}))},download:function(e){var t=this,o="project/Select_FileInfo",i={};n.default.post(o,i,"get").then((function(o){console.log("下载文件",o),t.singgleurl=o.data[0].file;var n=o.data[0].file+"?fileId="+e.fseekfiles;plus.runtime.openURL(n)})).catch((function(e){console.log(e)}))},downshenhe:function(e){var t=this,o="project/Select_FileInfo",i={};n.default.post(o,i,"get").then((function(o){console.log("下载文件",o),t.singgleurl=o.data[0].file;var n=o.data[0].file+"?fileId="+e.freplyfiles;plus.runtime.openURL(n)})).catch((function(e){console.log(e)}))},downsingle:function(t){console.log(t);var o=this,n=e.getStorageSync("token"),i={token:n||""},a={fileId:t};console.log("9999",a),e.request({url:o.singgleurl,data:a,method:"GET",header:i,success:function(e){console.log("888776554kkkk",e)},fail:function(e){console.log(e),reject("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})},downloadall:function(){var e=this,t="project/Select_FileInfos",o={};n.default.post(t,o,"get").then((function(t){console.log("下载文件22",t),e.downurl=t.data[0].file,e.downmany()})).catch((function(e){console.log(e)}))},downmany:function(){var t=this,o=e.getStorageSync("token"),n={token:o||""},i=t.seeklist,a=[];i.forEach((function(e,t,o){console.log(e),null!=e.fseekfiles&&a.push(e.fseekfiles)}));var s={fileIds:a.join(",")};console.log("9999",s),e.request({url:t.downurl,data:s,method:"POST",header:n,success:function(e){console.log("888776554",e);var t=e.data+".zip";console.log(t),plus.runtime.openURL(t)},fail:function(e){console.log(e),reject("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})},savefilecode:function(t){console.log(t),e.downloadFile({url:t,success:function(t){console.log("下载图片下载图片下载图片",t);var o=t.tempFilePath;console.log(o),e.openDocument({filePath:o,success:function(e){console.log("打开文档成功")}})},complete:function(e){}})},getvotelist:function(){var e=this,t="project/Get_intermediaryorg",o={disid:this.disid};console.log("8877665544",o),n.default.post(t,o,"get").then((function(t){console.log(t),e.votelist=t.data,e.touvotelist=t.data})).catch((function(e){console.log(e)}))},toupiao:function(t){var o=this;console.log(t);var i=t.target.dataset.voiteitem;console.log(i.finteroryname);var a="project/Get_vote",s={fname:i.finteroryname,fid:o.item.disid,fprojectid:o.item.fprojectid,userid:e.getStorageSync("userid"),fadvisoryid:i.fadvisoryid,role:e.getStorageSync("role")};console.log("8877665544",s),n.default.post(a,s,"get").then((function(t){console.log(t),console.log(JSON.stringify(t.data)),e.showToast({title:t.data[0].message,icon:"none"}),o.getvotelist(),o.voicesuccess()})).catch((function(e){console.log(e)}))},bindPickerChange:function(e){console.log("picker发送选择改变,携带值为",e.target.value),this.index=e.target.value,this.danweiname=this.danweilist[e.target.value].fname,this.fuzepeople=this.danweilist[e.target.value].fauthorizeman,this.fuzephone=this.danweilist[e.target.value].fauthphone,this.fintorgid=this.danweilist[e.target.value].fid,console.log(JSON.stringify(this.danweilist)),console.log(this.fintorgid)},surefenpei:function(){var t=this,o=this;if(console.log("咨询单位",o.fintorgid)," "==o.fintorgid)return e.showToast({title:"请选择咨询单位",icon:"none"}),!1;var i="project/Get_SubmitAdvisoryDisfteam",a={fadvisorystatus:o.item.fadvisorystatus,fuserid:e.getStorageSync("userid"),disid:o.item.disid,fprojectid:o.item.fprojectid,fintorgid:o.fintorgid};console.log("咨询单位分配参数",a),n.default.post(i,a,"get").then((function(o){console.log(o),"成功"==o.data[0].message?(e.showToast({title:"提交成功",icon:"none"}),t.changestate(),setTimeout((function(){e.navigateBack({checked:!0})}),1e3)):e.showToast({title:o.data[0].message,icon:"none"})})).catch((function(e){console.log(e)}))},changestate:function(){var t=this,o="project/Get_Fteam";e.getStorageSync("userid"),t.item.disid;n.default.post(o,"","get").then((function(e){console.log("修改状态",e)})).catch((function(e){console.log(e)}))}}};t.default=a}).call(this,o("543d")["default"])},ea96:function(e,t,o){"use strict";o.r(t);var n=o("a053"),i=o("a1e3");for(var a in i)"default"!==a&&function(e){o.d(t,e,(function(){return i[e]}))}(a);o("18a0");var s,c=o("f0c5"),l=Object(c["a"])(i["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],s);t["default"]=l.exports},ffa0:function(e,t,o){"use strict";(function(e){o("a237"),o("921b");n(o("66fd"));var t=n(o("ea96"));function n(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,o("543d")["createPage"])}},[["ffa0","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/projectziliao/projectziliao"],{"04ae":function(e,t,o){"use strict";o.r(t);var n=o("5f1d"),i=o("dd71");for(var s in i)"default"!==s&&function(e){o.d(t,e,(function(){return i[e]}))}(s);o("235c");var l,c=o("f0c5"),a=Object(c["a"])(i["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],l);t["default"]=a.exports},"0dec":function(e,t,o){"use strict";(function(e){o("bdbd"),o("921b");n(o("66fd"));var t=n(o("04ae"));function n(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,o("543d")["createPage"])},2166:function(e,t,o){"use strict";o.r(t);var n=o("593d"),i=o.n(n);for(var s in n)"default"!==s&&function(e){o.d(t,e,(function(){return n[e]}))}(s);t["default"]=i.a},"235c":function(e,t,o){"use strict";var n=o("5c33"),i=o.n(n);i.a},"310f":function(e,t,o){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(o("59df"));i(o("b86c"));function i(e){return e&&e.__esModule?e:{default:e}}var s={data:function(){return{disid:"",item:{},fteamid:"",fprojectid:"",ftrialnumber:"",fconcludenumber:"",votelist:[],danweilist:[],index:0,keyword:"",showhide:"",fuzepeople:"",fuzephone:"",status:"",subdisid:"",daibanfprojectid:"",touvotelist:[],fintorgid:" ",danweiname:"请选择咨询单位",state:"",seeklist:[],replylist:[],downurl:"",singgleurl:"",type:"",typeprojectid:"",project:""}},onLoad:function(t){if(console.log("传的参数",t),void 0!=t.type){switch(this.type=t.type,this.typeprojectid=t.projectid,this.item=JSON.parse(t.item),this.type){case 1:console.log(this.type),this.project="prj_toaudit_budget";break;case 2:console.log(this.type),this.project="prj_toaudit_settlement";break;case 3:this.project="prj_toaudit_change";break;case 4:this.project="prj_toaudit_land";break}this.getbudgetlist()}else this.item=JSON.parse(t.item),console.log(this.item);this.getseeklist(),this.getreplay(),this.showhide=e.getStorageSync("showhide")},methods:{getbudgetlist:function(){var t=this,o="project/Get_ProjectInventory",i={fprojectcategory:t.project,fuserid:e.getStorageSync("userid"),fprojectid:t.typeprojectid,role:e.getStorageSync("role")};console.log("8877665544",i),n.default.post(o,i,"get").then((function(e){console.log(e,"kkkkk"),t.item=e.data[0]})).catch((function(e){console.log(e)}))},shenjie:function(t){var o="project/Save_ProjectConclude",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.fprojectid,fdisid:t.fdisid,fdirstatus:t.fdirstatus,ffinauditstatus:t.ffinauditstatus};console.log("8877665544",i),n.default.post(o,i,"get").then((function(t){console.log(t),e.showToast({title:t.data[0].message,icon:"none"})})).catch((function(e){console.log(e)}))},question:function(t){console.log(t);var o=t.fprojectid;e.setStorageSync("questionid",o),e.navigateTo({url:"/pages/question/question?quesprojectid="+o})},jingban:function(t){var o=JSON.stringify(t);e.navigateTo({url:"/pages/examinejingban/examinejingban?item="+o})},pingshen:function(t){var o=JSON.stringify(t);e.navigateTo({url:"/pages/reviewreport/reviewreport?item="+o})},concatsure:function(t){var o=JSON.stringify(t);e.navigateTo({url:"/pages/concat/concat?item="+o})},getseeklist:function(){var t=this,o="project/Select_Fseektity",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.item.fprojectid,fdisid:t.item.fdisid,type:"fseektity"};console.log("8877665544",i),n.default.post(o,i,"get").then((function(e){console.log("征求意见稿",e),t.seeklist=e.data})).catch((function(e){console.log(e)}))},getreplay:function(){var t=this,o="project/Select_Fseektity",i={userid:e.getStorageSync("userid"),role:e.getStorageSync("role"),fprojectid:t.item.fprojectid,fdisid:t.item.fdisid,type:"ffirstreplyfile"};console.log("8877665544",i),n.default.post(o,i,"get").then((function(e){console.log("审核回复文件",e),t.replylist=e.data,console.log(t.replylist.length),console.log(t.seeklist),console.log(JSON.stringify(t.seeklist))})).catch((function(e){console.log(e)}))},download:function(t){var o=this;console.log(t);var i=t.fseekfiles,s=t.fseekfiles_txt,l="project/Select_FileInfo",c={};n.default.post(l,c,"get").then((function(t){console.log("下载文件",t),o.singgleurl=t.data[0].file;var n=t.data[0].file+"?fileId="+i;console.log(wx.env.USER_DATA_PATH+"/"+s),e.downloadFile({url:n,header:{},success:function(e){},fail:function(e){},complete:function(t){console.log(t);var o=wx.getFileSystemManager();200===t.statusCode&&(o.saveFile({tempFilePath:t.tempFilePath,filePath:wx.env.USER_DATA_PATH+"/"+s,success:function(e){console.log(e)}}),e.openDocument({filePath:wx.env.USER_DATA_PATH+"/"+s,success:function(e){console.log("打开文档成功")},fail:function(){console.log("打开失败")}}))}})})).catch((function(e){console.log(e)}))},downshenhe:function(t){var o=this;console.log(t);var i=t.freplyfiles,s=t.freplyfiles_txt,l="project/Select_FileInfo",c={};n.default.post(l,c,"get").then((function(t){console.log("下载文件",t),o.singgleurl=t.data[0].file;var n=t.data[0].file+"?fileId="+i;console.log(wx.env.USER_DATA_PATH+"/"+s),e.downloadFile({url:n,header:{},success:function(e){},fail:function(e){},complete:function(t){console.log(t);var o=wx.getFileSystemManager();200===t.statusCode&&(o.saveFile({tempFilePath:t.tempFilePath,filePath:wx.env.USER_DATA_PATH+"/"+s,success:function(e){console.log(e)}}),e.openDocument({filePath:wx.env.USER_DATA_PATH+"/"+s,success:function(e){console.log("打开文档成功")},fail:function(){console.log("打开失败")}}))}})})).catch((function(e){console.log(e)}))},downsingle:function(t){console.log(t);var o=this,n=e.getStorageSync("token"),i={token:n||""},s={fileId:t};console.log("9999",s),e.request({url:o.singgleurl,data:s,method:"GET",header:i,success:function(e){console.log("888776554kkkk",e)},fail:function(e){console.log(e),reject("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})},downloadall:function(){var e=this,t="project/Select_FileInfos",o={};n.default.post(t,o,"get").then((function(t){console.log("下载文件22",t),e.downurl=t.data[0].file,e.downmany()})).catch((function(e){console.log(e)}))},downmany:function(){var t=this,o=e.getStorageSync("token"),n={token:o||""},i=t.seeklist,s=[];i.forEach((function(e,t,o){console.log(e),null!=e.fseekfiles&&s.push(e.fseekfiles)}));var l={fileIds:s.join(",")};console.log("9999",l),e.request({url:t.downurl,data:l,method:"POST",header:n,success:function(e){console.log("888776554",e);var t=e.data+".zip";console.log(t),plus.runtime.openURL(t)},fail:function(e){console.log(e),reject("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})},savefilecode:function(t){console.log(t),e.downloadFile({url:t,success:function(t){console.log("下载图片下载图片下载图片",t);var o=t.tempFilePath;console.log(o),e.openDocument({filePath:o,success:function(e){console.log("打开文档成功")}})},complete:function(e){}})},getvotelist:function(){var e=this,t="project/Get_intermediaryorg",o={disid:this.disid};console.log("8877665544",o),n.default.post(t,o,"get").then((function(t){console.log(t),e.votelist=t.data,e.touvotelist=t.data})).catch((function(e){console.log(e)}))},toupiao:function(t){var o=this;console.log(t);var i=t.target.dataset.voiteitem;console.log(i.finteroryname);var s="project/Get_vote",l={fname:i.finteroryname,fid:o.item.disid,fprojectid:o.item.fprojectid,userid:e.getStorageSync("userid"),fadvisoryid:i.fadvisoryid,role:e.getStorageSync("role")};console.log("8877665544",l),n.default.post(s,l,"get").then((function(t){console.log(t),console.log(JSON.stringify(t.data)),e.showToast({title:t.data[0].message,icon:"none"}),o.getvotelist(),o.voicesuccess()})).catch((function(e){console.log(e)}))},bindPickerChange:function(e){console.log("picker发送选择改变,携带值为",e.target.value),this.index=e.target.value,this.danweiname=this.danweilist[e.target.value].fname,this.fuzepeople=this.danweilist[e.target.value].fauthorizeman,this.fuzephone=this.danweilist[e.target.value].fauthphone,this.fintorgid=this.danweilist[e.target.value].fid,console.log(JSON.stringify(this.danweilist)),console.log(this.fintorgid)},surefenpei:function(){var t=this,o=this;if(console.log("咨询单位",o.fintorgid)," "==o.fintorgid)return e.showToast({title:"请选择咨询单位",icon:"none"}),!1;var i="project/Get_SubmitAdvisoryDisfteam",s={fadvisorystatus:o.item.fadvisorystatus,fuserid:e.getStorageSync("userid"),disid:o.item.disid,fprojectid:o.item.fprojectid,fintorgid:o.fintorgid};console.log("咨询单位分配参数",s),n.default.post(i,s,"get").then((function(o){console.log(o),"成功"==o.data[0].message?(e.showToast({title:"提交成功",icon:"none"}),t.changestate(),setTimeout((function(){e.navigateBack({checked:!0})}),1e3)):e.showToast({title:o.data[0].message,icon:"none"})})).catch((function(e){console.log(e)}))},changestate:function(){var t=this,o="project/Get_Fteam";e.getStorageSync("userid"),t.item.disid;n.default.post(o,"","get").then((function(e){console.log("修改状态",e)})).catch((function(e){console.log(e)}))}}};t.default=s}).call(this,o("543d")["default"])},"4e90":function(e,t,o){"use strict";var n=o("d869"),i=o.n(n);i.a},"593d":function(e,t,o){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,o,n){var i=this,s=new Promise((function(s,l){var c=e.getStorageSync("token"),a={token:c||""};e.request({url:i.globalData.baseUrl+t,data:o,method:n,header:a,success:function(e){200==e.statusCode?s(e):l(e.data)},fail:function(e){console.log(e),l("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return s},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=o}).call(this,o("543d")["default"])},"59df":function(e,t,o){"use strict";o.r(t);var n=o("2166");for(var i in n)"default"!==i&&function(e){o.d(t,e,(function(){return n[e]}))}(i);o("4e90");var s,l,c,a,r=o("f0c5"),u=Object(r["a"])(n["default"],s,l,!1,null,null,null,!1,c,a);t["default"]=u.exports},"5c33":function(e,t,o){},"5f1d":function(e,t,o){"use strict";var n,i=function(){var e=this,t=e.$createElement;e._self._c},s=[];o.d(t,"b",(function(){return i})),o.d(t,"c",(function(){return s})),o.d(t,"a",(function(){return n}))},d869:function(e,t,o){},dd71:function(e,t,o){"use strict";o.r(t);var n=o("310f"),i=o.n(n);for(var s in n)"default"!==s&&function(e){o.d(t,e,(function(){return n[e]}))}(s);t["default"]=i.a}},[["0dec","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
<view class="box"><view class="renyuan"><view class="projectinfo"><view class="projectinfoname"><image src="../../static/img/renyuan.png" mode></image></view><view class="projectname">基本信息</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">项目名称:</view><view class="projectitemright">{{item.fname}}</view></view><view class="projectitem"><view class="projectitemleft">项目组:</view><view class="projectitemright">{{item.fteam}}</view></view><view class="projectitem"><view class="projectitemleft">送审时间:</view><view class="projectitemright">{{item.fsubmitfindate}}</view></view><view class="projectitem"><view class="projectitemleft">评审类型:</view><view class="projectitemright">{{item.freviewtype}}</view></view><view class="projectitem"><view class="projectitemleft">项目类型:</view><view class="projectitemright">{{item.fprojecttype==null?'':item.fprojecttype}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人1:</view><view class="projectitemright">{{item.fprjleaderone}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人1手机:</view><view class="projectitemright">{{item.fprjphone}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人2:</view><view class="projectitemright">{{item.fprjleadertwo}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人2手机:</view><view class="projectitemright">{{item.fprjphonetwo}}</view></view></view></view><view class="renyuan"><view class="projectinfo"><view class="projectinfoname"><image src="../../static/img/renyuan.png" mode></image></view><view class="projectname">项目报备人员</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">咨询单位经办人:</view><view class="projectitemright">{{item.fauditleder}}</view></view><view class="projectitem"><view class="projectitemleft">专业证件号:</view><view class="projectitemright">{{item.fpapersno}}</view></view><view class="projectitem"><view class="projectitemleft">经办人电话:</view><view class="projectitemright">{{item.freportphone}}</view></view><view class="projectitem"><view class="projectitemleft">专业:</view><view class="projectitemright">{{item.fmajor}}</view></view></view></view><view class="renyuan"><view class="projectinfo"><view class="projectinfoname"><image src="../../static/img/zixundanwei.png" mode></image></view><view class="projectname">征求意见稿信息</view></view><view class="viewpoint">请检查确认上传文件及数据是否完整正确,提交后将不可修改!</view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">审定金额(元):</view><view class="projectitemright">{{item.fauditamount}}</view></view><view class="projectitem"><view class="projectitemleft">送审金额:</view><view class="projectitemright">{{item.ftoauditamt}}</view></view><view class="projectitem"><view class="projectitemleft">审减(增)金额:</view><view class="projectitemright">{{item.fshenjianmoney}}</view></view><view class="projectitem"><view class="projectitemleft">审减(增)率:</view><view class="projectitemright">{{item.fshenjianrate}}</view></view></view></view><view class="zixun"><view class="consult"><view class="consultdanwei verfy"><view class="projectinfoname"><image src="../../static/img/view.png" mode></image></view><view class="projectname">征求意见稿文件</view></view></view><block wx:if="{{seeklist.length==0}}"><view class="nodata">暂无数据</view></block><block wx:else><view class="zixunbox"><view class="votelist"><view class="voicehead"><view class="headitem number">编号</view><view class="zixundanitem ziliao">资料名称</view><view class="headitem tou">录入人</view><view class="headitem timek">时间</view><view class="headitem fujian"><view>附件</view><view>(份数)</view></view><view class="headitem caozuo">操作</view></view><block wx:for="{{seeklist}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="zixundan zitou"><view class="headitem number">{{index+1}}</view><view class="zixundanitem ziliao">{{item.fseekfilename}}</view><view class="headitem tou touren">{{item.fseekdoccreator}}</view><view class="zixundanitem timek">{{item.fseekdate}}</view><view class="zixundanitem fujian">{{item.fseekfiles_cnt}}</view><view class="zixundanitem caozuo fujiandown" data-voiteitem="{{item}}" data-event-opts="{{[['tap',[['download',['$0'],[[['seeklist','',index]]]]]]]}}" bindtap="__e">附件</view></view></block></view></view></block></view><view class="zixun"><view class="consult"><view class="consultdanwei verfy"><view class="projectinfoname"><image src="../../static/img/view.png" mode></image></view><view class="projectname">审核回复文件</view></view></view><block wx:if="{{replylist.length==0}}"><view class="nodata">暂无数据</view></block><block wx:else><view class="zixunbox"><view class="votelist"><view class="voicehead"><view class="headitem number">编号</view><view class="zixundanitem ziliaok">资料名称</view><view class="headitem fujian">附件(份数)</view><view class="headitem caozuok">操作</view></view><block wx:for="{{replylist}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="zixundan zitou"><view class="headitem number">{{index+1}}</view><view class="zixundanitem ziliaok">{{item.ffilereplyname}}</view><view class="zixundanitem fujian">{{item.freplyfiles_cnt}}</view><view data-event-opts="{{[['tap',[['downshenhe',['$0'],[[['replylist','',index]]]]]]]}}" class="zixundanitem caozuok fujiandownk" bindtap="__e">附件</view></view></block></view></view></block></view><view class="btnlist"><view data-event-opts="{{[['tap',[['question',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">问题往来</view><view data-event-opts="{{[['tap',[['shenjie',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">项目审结</view><block wx:if="{{showhide[4].status!=0}}"><view data-event-opts="{{[['tap',[['jingban',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">经办人审核</view></block><block wx:if="{{showhide[4].status!=0}}"><view data-event-opts="{{[['tap',[['pingshen',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">评审报告确认</view></block><block wx:if="{{showhide[4].status!=0}}"><view data-event-opts="{{[['tap',[['concatsure',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">合同发票确认</view></block></view></view>
\ No newline at end of file
<view class="box"><view class="renyuan"><view class="projectinfo"><view class="projectinfoname"><image src="../../static/img/renyuan.png" mode></image></view><view class="projectname">基本信息</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">项目名称:</view><view class="projectitemright">{{item.fname}}</view></view><view class="projectitem"><view class="projectitemleft">项目组:</view><view class="projectitemright">{{item.fteam}}</view></view><view class="projectitem"><view class="projectitemleft">送审时间:</view><view class="projectitemright">{{item.fsubmitfindate}}</view></view><view class="projectitem"><view class="projectitemleft">评审类型:</view><view class="projectitemright">{{item.freviewtype}}</view></view><view class="projectitem"><view class="projectitemleft">项目类型:</view><view class="projectitemright">{{item.fprojecttype==null?'':item.fprojecttype}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人1:</view><view class="projectitemright">{{item.fprjleaderone}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人1手机:</view><view class="projectitemright">{{item.fprjphone}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人2:</view><view class="projectitemright">{{item.fprjleadertwo}}</view></view><view class="projectitem"><view class="projectitemleft">项目经办人2手机:</view><view class="projectitemright">{{item.fprjphonetwo}}</view></view></view></view><view class="renyuan"><view class="projectinfo"><view class="projectinfoname"><image src="../../static/img/renyuan.png" mode></image></view><view class="projectname">项目报备人员</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">咨询单位经办人:</view><view class="projectitemright">{{item.fauditleder}}</view></view><view class="projectitem"><view class="projectitemleft">专业证件号:</view><view class="projectitemright">{{item.fpapersno}}</view></view><view class="projectitem"><view class="projectitemleft">经办人电话:</view><view class="projectitemright">{{item.freportphone}}</view></view><view class="projectitem"><view class="projectitemleft">专业:</view><view class="projectitemright">{{item.fmajor}}</view></view></view></view><view class="renyuan"><view class="projectinfo"><view class="projectinfoname"><image src="../../static/img/zixundanwei.png" mode></image></view><view class="projectname">征求意见稿信息</view></view><view class="viewpoint">请检查确认上传文件及数据是否完整正确,提交后将不可修改!</view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">审定金额(元):</view><view class="projectitemright">{{item.fauditamount}}</view></view><view class="projectitem"><view class="projectitemleft">送审金额:</view><view class="projectitemright">{{item.ftoauditamt}}</view></view><view class="projectitem"><view class="projectitemleft">审减(增)金额:</view><view class="projectitemright">{{item.fshenjianmoney}}</view></view><view class="projectitem"><view class="projectitemleft">审减(增)率:</view><view class="projectitemright">{{item.fshenjianrate}}</view></view></view></view><view class="zixun"><view class="consult"><view class="consultdanwei verfy"><view class="projectinfoname"><image src="../../static/img/view.png" mode></image></view><view class="projectname">征求意见稿文件</view></view></view><block wx:if="{{seeklist.length==0}}"><view class="nodata">暂无数据</view></block><block wx:else><view class="zixunbox"><view class="votelist"><view class="voicehead"><view class="headitem number">编号</view><view class="zixundanitem ziliao">资料名称</view><view class="headitem tou">录入人</view><view class="headitem timek">时间</view><view class="headitem fujian"><view>附件</view><view>(份数)</view></view><view class="headitem caozuo">操作</view></view><block wx:for="{{seeklist}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="zixundan zitou"><view class="headitem number">{{index+1}}</view><view class="zixundanitem ziliao">{{item.fseekfilename}}</view><view class="headitem tou touren">{{item.fseekdoccreator}}</view><view class="zixundanitem timek">{{item.fseekdate}}</view><view class="zixundanitem fujian">{{item.fseekfiles_cnt}}</view><view class="zixundanitem caozuo fujiandown" data-voiteitem="{{item}}" data-event-opts="{{[['tap',[['download',['$0'],[[['seeklist','',index]]]]]]]}}" bindtap="__e">附件</view></view></block></view></view></block></view><view class="zixun"><view class="consult"><view class="consultdanwei verfy"><view class="projectinfoname"><image src="../../static/img/view.png" mode></image></view><view class="projectname">审核回复文件</view></view></view><block wx:if="{{replylist.length==0}}"><view class="nodata">暂无数据</view></block><block wx:else><view class="zixunbox"><view class="votelist"><view class="voicehead"><view class="headitem number">编号</view><view class="zixundanitem ziliaok">资料名称</view><view class="headitem fujian">附件(份数)</view><view class="headitem caozuok">操作</view></view><block wx:for="{{replylist}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="zixundan zitou"><view class="headitem number">{{index+1}}</view><view class="zixundanitem ziliaok">{{item.ffilereplyname}}</view><view class="zixundanitem fujian">{{item.freplyfiles_cnt}}</view><view data-event-opts="{{[['tap',[['downshenhe',['$0'],[[['replylist','',index]]]]]]]}}" class="zixundanitem caozuok fujiandownk" bindtap="__e">附件</view></view></block></view></view></block></view><view class="btnlist"><view data-event-opts="{{[['tap',[['question',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">问题往来</view><block wx:if="{{showhide[4].status!=0}}"><view data-event-opts="{{[['tap',[['jingban',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">经办人审核</view></block><view data-event-opts="{{[['tap',[['shenjie',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">项目审结</view><block wx:if="{{showhide[4].status!=0}}"><view data-event-opts="{{[['tap',[['pingshen',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">评审报告确认</view></block><block wx:if="{{showhide[4].status!=0}}"><view data-event-opts="{{[['tap',[['concatsure',['$0'],['item']]]]]}}" class="btnitem" bindtap="__e">合同发票确认</view></block></view></view>
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#fff}.btnlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-top:20rpx;padding:32rpx;box-sizing:border-box}.btnitem{padding:0 21rpx;box-sizing:border-box;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:12rpx;margin-bottom:30rpx}.nodata{margin-top:40rpx;margin-bottom:20rpx}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:200rpx;text-align:center}.caozuok{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:200rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.fujiandownk{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#fff}.btnlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-top:20rpx;padding:32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.btnitem{padding:0 21rpx;-webkit-box-sizing:border-box;box-sizing:border-box;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:12rpx;margin-bottom:30rpx}.nodata{margin-top:40rpx;margin-bottom:20rpx}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:200rpx;text-align:center}.caozuok{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:200rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.fujiandownk{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx;width:180rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/question/question"],{"07a9":function(t,n,e){"use strict";e.r(n);var o=e("5f51"),r=e("281e");for(var u in r)"default"!==u&&function(t){e.d(n,t,(function(){return r[t]}))}(u);e("ae5b");var i,a=e("f0c5"),c=Object(a["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);n["default"]=c.exports},"0aa0":function(t,n,e){"use strict";var o=e("1604"),r=e.n(o);r.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var r=this,u=new Promise((function(u,i){var a=t.getStorageSync("token"),c={token:a||""};t.request({url:r.globalData.baseUrl+n,data:e,method:o,header:c,success:function(t){200==t.statusCode?u(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return u},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},1604:function(t,n,e){},"1f18":function(t,n,e){"use strict";e.r(n);var o=e("0c9c"),r=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,(function(){return o[t]}))}(u);n["default"]=r.a},"281e":function(t,n,e){"use strict";e.r(n);var o=e("9200"),r=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,(function(){return o[t]}))}(u);n["default"]=r.a},"30b9":function(t,n,e){"use strict";e.r(n);var o=e("1f18");for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);e("0aa0");var u,i,a,c,l=e("f0c5"),f=Object(l["a"])(o["default"],u,i,!1,null,null,null,!1,a,c);n["default"]=f.exports},"5f51":function(t,n,e){"use strict";var o,r=function(){var t=this,n=t.$createElement;t._self._c},u=[];e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return u})),e.d(n,"a",(function(){return o}))},9200:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=r(e("30b9"));function r(t){return t&&t.__esModule?t:{default:t}}function u(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=i(t))){var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,u=!0,a=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return u=t.done,t},e:function(t){a=!0,r=t},f:function(){try{u||null==o.return||o.return()}finally{if(a)throw r}}}}function i(t,n){if(t){if("string"===typeof t)return a(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?a(t,n):void 0}}function a(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var c={data:function(){return{zixunlist:[],keyword:"",querylist:[],quesprojectid:""}},onLoad:function(t){},methods:{xiangmuzufen:function(n){var e=JSON.stringify(n);t.navigateTo({url:"../seequestion/seequestion?item="+e})},getquestionlist:function(){var n=this,e="project/Select_Question",r={qid:"",userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:n.quesprojectid};console.log("8877665544",r),o.default.post(e,r,"get").then((function(t){console.log("问题列表",t),n.zixunlist=t.data,n.querylist=t.data})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value},chaxun:function(){if(""==this.keyword)this.getdanweilist();else{console.log(9988776655);var t,n=[],e=this.querylist,o=[],r=u(e);try{for(r.s();!(t=r.n()).done;){var i=t.value;o.push(i.fname)}}catch(l){r.e(l)}finally{r.f()}console.log("名称",o);for(var a=0;a<e.length;a++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==a&&n.push(e[a]);console.log("9999000777",n),this.zixunlist=n}}},onShow:function(){console.log(2838398),this.quesprojectid=t.getStorageSync("questionid"),this.getquestionlist(),this.getdanweilist()}};n.default=c}).call(this,e("543d")["default"])},"9ec6":function(t,n,e){},ae5b:function(t,n,e){"use strict";var o=e("9ec6"),r=e.n(o);r.a},d4ac:function(t,n,e){"use strict";(function(t){e("a237"),e("921b");o(e("66fd"));var n=o(e("07a9"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])}},[["d4ac","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/question/question"],{"19fb":function(t,n,e){"use strict";var o,r=function(){var t=this,n=t.$createElement;t._self._c},u=[];e.d(n,"b",(function(){return r})),e.d(n,"c",(function(){return u})),e.d(n,"a",(function(){return o}))},2166:function(t,n,e){"use strict";e.r(n);var o=e("593d"),r=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,(function(){return o[t]}))}(u);n["default"]=r.a},"455f":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var o=r(e("59df"));function r(t){return t&&t.__esModule?t:{default:t}}function u(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=i(t))){var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,u=!0,a=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return u=t.done,t},e:function(t){a=!0,r=t},f:function(){try{u||null==o.return||o.return()}finally{if(a)throw r}}}}function i(t,n){if(t){if("string"===typeof t)return a(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);return"Object"===e&&t.constructor&&(e=t.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?a(t,n):void 0}}function a(t,n){(null==n||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var c={data:function(){return{zixunlist:[],keyword:"",querylist:[],quesprojectid:""}},onLoad:function(t){},methods:{xiangmuzufen:function(n){var e=JSON.stringify(n);t.navigateTo({url:"../seequestion/seequestion?item="+e})},getquestionlist:function(){var n=this,e="project/Select_Question",r={qid:"",userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:n.quesprojectid};console.log("8877665544",r),o.default.post(e,r,"get").then((function(t){console.log("问题列表",t),n.zixunlist=t.data,n.querylist=t.data})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){console.log(t),this.keyword=t.target.value},chaxun:function(){if(""==this.keyword)this.getquestionlist();else{console.log(9988776655);var t,n=[],e=this.querylist,o=[],r=u(e);try{for(r.s();!(t=r.n()).done;){var i=t.value;o.push(i.fname)}}catch(l){r.e(l)}finally{r.f()}console.log("名称",o);for(var a=0;a<e.length;a++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==a&&n.push(e[a]);console.log("9999000777",n),this.zixunlist=n}}},onShow:function(){console.log(2838398),this.quesprojectid=t.getStorageSync("questionid"),this.getquestionlist()}};n.default=c}).call(this,e("543d")["default"])},"4e90":function(t,n,e){"use strict";var o=e("d869"),r=e.n(o);r.a},"56e7":function(t,n,e){"use strict";e.r(n);var o=e("455f"),r=e.n(o);for(var u in o)"default"!==u&&function(t){e.d(n,t,(function(){return o[t]}))}(u);n["default"]=r.a},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,o){var r=this,u=new Promise((function(u,i){var a=t.getStorageSync("token"),c={token:a||""};t.request({url:r.globalData.baseUrl+n,data:e,method:o,header:c,success:function(t){200==t.statusCode?u(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return u},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var o=e("2166");for(var r in o)"default"!==r&&function(t){e.d(n,t,(function(){return o[t]}))}(r);e("4e90");var u,i,a,c,l=e("f0c5"),f=Object(l["a"])(o["default"],u,i,!1,null,null,null,!1,a,c);n["default"]=f.exports},"5ee7":function(t,n,e){"use strict";var o=e("9bf9"),r=e.n(o);r.a},"86c1":function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");o(e("66fd"));var n=o(e("c45c"));function o(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},"9bf9":function(t,n,e){},c45c:function(t,n,e){"use strict";e.r(n);var o=e("19fb"),r=e("56e7");for(var u in r)"default"!==u&&function(t){e.d(n,t,(function(){return r[t]}))}(u);e("5ee7");var i,a=e("f0c5"),c=Object(a["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);n["default"]=c.exports},d869:function(t,n,e){}},[["86c1","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0}.fenzulist{margin-top:100rpx}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:felex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:126rpx;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0}.fenzulist{margin-top:100rpx}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:felex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:126rpx;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/renwu/renwu"],{"0aa0":function(n,t,e){"use strict";var u=e("1604"),a=e.n(u);a.a},"0c9c":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,u){var a=this,o=new Promise((function(o,i){var c=n.getStorageSync("token"),r={token:c||""};n.request({url:a.globalData.baseUrl+t,data:e,method:u,header:r,success:function(n){200==n.statusCode?o(n):i(n.data)},fail:function(n){console.log(n),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},1604:function(n,t,e){},"1f18":function(n,t,e){"use strict";e.r(t);var u=e("0c9c"),a=e.n(u);for(var o in u)"default"!==o&&function(n){e.d(t,n,(function(){return u[n]}))}(o);t["default"]=a.a},2665:function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;u(e("30b9"));function u(n){return n&&n.__esModule?n:{default:n}}var a={data:function(){return{selshow:!1,showhide:""}},onLoad:function(){this.showhideproject()},methods:{xiangmufen:function(){n.navigateTo({url:"../zixunfen/zixunfen"})},danweifen:function(){n.navigateTo({url:"../danweizixun/danweizixun"})},zhuanjia:function(){n.navigateTo({url:"../zhuanjiafenpei/zhuanjiafenpei"})}}};t.default=a}).call(this,e("543d")["default"])},"30b9":function(n,t,e){"use strict";e.r(t);var u=e("1f18");for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);e("0aa0");var o,i,c,r,f=e("f0c5"),l=Object(f["a"])(u["default"],o,i,!1,null,null,null,!1,c,r);t["default"]=l.exports},"86dd":function(n,t,e){"use strict";var u=e("d4d6"),a=e.n(u);a.a},d4d6:function(n,t,e){},de5e:function(n,t,e){"use strict";e.r(t);var u=e("e26a"),a=e("e861");for(var o in a)"default"!==o&&function(n){e.d(t,n,(function(){return a[n]}))}(o);e("86dd");var i,c=e("f0c5"),r=Object(c["a"])(a["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],i);t["default"]=r.exports},e26a:function(n,t,e){"use strict";var u,a=function(){var n=this,t=n.$createElement;n._self._c},o=[];e.d(t,"b",(function(){return a})),e.d(t,"c",(function(){return o})),e.d(t,"a",(function(){return u}))},e861:function(n,t,e){"use strict";e.r(t);var u=e("2665"),a=e.n(u);for(var o in u)"default"!==o&&function(n){e.d(t,n,(function(){return u[n]}))}(o);t["default"]=a.a},fbc8:function(n,t,e){"use strict";(function(n){e("a237"),e("921b");u(e("66fd"));var t=u(e("de5e"));function u(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])}},[["fbc8","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/renwu/renwu"],{"00d7":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;u(e("59df"));function u(n){return n&&n.__esModule?n:{default:n}}var o={data:function(){return{selshow:!1,showhide:""}},onLoad:function(){this.showhideproject()},methods:{xiangmufen:function(){n.navigateTo({url:"../zixunfen/zixunfen"})},danweifen:function(){n.navigateTo({url:"../danweizixun/danweizixun"})},zhuanjia:function(){n.navigateTo({url:"../zhuanjiafenpei/zhuanjiafenpei"})}}};t.default=o}).call(this,e("543d")["default"])},"112f":function(n,t,e){"use strict";(function(n){e("bdbd"),e("921b");u(e("66fd"));var t=u(e("7559"));function u(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},2166:function(n,t,e){"use strict";e.r(t);var u=e("593d"),o=e.n(u);for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);t["default"]=o.a},"4e6c":function(n,t,e){},"4e90":function(n,t,e){"use strict";var u=e("d869"),o=e.n(u);o.a},"593d":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,u){var o=this,a=new Promise((function(a,i){var r=n.getStorageSync("token"),c={token:r||""};n.request({url:o.globalData.baseUrl+t,data:e,method:u,header:c,success:function(n){200==n.statusCode?a(n):i(n.data)},fail:function(n){console.log(n),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},"59df":function(n,t,e){"use strict";e.r(t);var u=e("2166");for(var o in u)"default"!==o&&function(n){e.d(t,n,(function(){return u[n]}))}(o);e("4e90");var a,i,r,c,f=e("f0c5"),l=Object(f["a"])(u["default"],a,i,!1,null,null,null,!1,r,c);t["default"]=l.exports},7559:function(n,t,e){"use strict";e.r(t);var u=e("78e3"),o=e("b615");for(var a in o)"default"!==a&&function(n){e.d(t,n,(function(){return o[n]}))}(a);e("a426");var i,r=e("f0c5"),c=Object(r["a"])(o["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],i);t["default"]=c.exports},"78e3":function(n,t,e){"use strict";var u,o=function(){var n=this,t=n.$createElement;n._self._c},a=[];e.d(t,"b",(function(){return o})),e.d(t,"c",(function(){return a})),e.d(t,"a",(function(){return u}))},a426:function(n,t,e){"use strict";var u=e("4e6c"),o=e.n(u);o.a},b615:function(n,t,e){"use strict";e.r(t);var u=e("00d7"),o=e.n(u);for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);t["default"]=o.a},d869:function(n,t,e){}},[["112f","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.renwulimg{width:68rpx;height:68rpx;font-size:0}.renwulimg image{width:100%;height:100%}.renwuright{width:13rpx;height:23rpx;font-size:0}.renwuright image{width:100%;height:100%}.renwulist{padding:0 32rpx;box-sizing:border-box}.renwulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.renwuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renwuname{color:#3d444d;font-size:28rpx;margin-left:20rpx;letter-spacing:2rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.renwulimg{width:68rpx;height:68rpx;font-size:0}.renwulimg image{width:100%;height:100%}.renwuright{width:13rpx;height:23rpx;font-size:0}.renwuright image{width:100%;height:100%}.renwulist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.renwulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.renwuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renwuname{color:#3d444d;font-size:28rpx;margin-left:20rpx;letter-spacing:2rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/reviewreport/reviewreport"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),r=n.n(o);r.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var r=this,a=new Promise((function(a,i){var c=t.getStorageSync("token"),u={token:c||""};t.request({url:r.globalData.baseUrl+e,data:n,method:o,header:u,success:function(t){200==t.statusCode?a(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"187a":function(t,e,n){"use strict";var o,r=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return o}))},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),r=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=r.a},2972:function(t,e,n){"use strict";var o=n("b7a5"),r=n.n(o);r.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);n("0aa0");var a,i,c,u,l=n("f0c5"),f=Object(l["a"])(o["default"],a,i,!1,null,null,null,!1,c,u);e["default"]=f.exports},"39e0":function(t,e,n){},"5b77":function(t,e,n){"use strict";var o=n("39e0"),r=n.n(o);r.a},"80bc":function(t,e,n){"use strict";n.r(e);var o=n("8c91"),r=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=r.a},"8c91":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("30b9")),r=a(n("079c"));function a(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,a=!0,i=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){i=!0,r=t},f:function(){try{a||null==o.return||o.return()}finally{if(i)throw r}}}}function c(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var l={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",receive:-1}},onLoad:function(t){console.log(t.item),this.item=JSON.parse(t.item),console.log("评审报告",this.item);var e=this.item;e.ftoauditamt=r.default.change(e.ftoauditamt),this.item=e,this.getprojectkind(),console.log(r.default.unction(45622111))},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{isreceive:function(t){console.log(t),console.log(t.currentTarget.dataset.id),this.receive=t.currentTarget.dataset.id,console.log(this.receive)},downloadfile:function(e){var n=this;if(null==e)return t.showToast({title:"文件不存在",icon:"none"}),!1;var r="project/Select_FileInfo",a={};o.default.post(r,a,"get").then((function(o){console.log("下载文件",o),n.singgleurl=o.data[0].file;var r=o.data[0].file+"?fileId="+e;t.setStorageSync("url",r),plus.runtime.openURL(r)})).catch((function(t){console.log(t)}))},detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,r=i(t.projectarr);try{for(r.s();!(o=r.n()).done;){var a=o.value;a.fid==e.item.finorgid&&(t.fprjleader=a.fprjleader,t.fprjleadertwo=a.fprjleadertwo,t.fname=a.fname,t.finorgid=a.fid)}}catch(c){r.e(c)}finally{r.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(-1==e.receive)return t.showToast({title:"请选择邮寄情况",icon:"none"}),!1;var n="project/Save_Rptconfirm",r={userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fdisid:e.item.fdisid,fservicestatus:e.item.fservicestatus,mailstatus:e.receive};console.log("8877665544",r),o.default.post(n,r,"get").then((function(e){console.log(e),"提交成功"==e.data[0].message?(t.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)):t.showToast({title:e.data[0].message,icon:"none"})})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=l}).call(this,n("543d")["default"])},b7a5:function(t,e,n){},e1ba:function(t,e,n){"use strict";n.r(e);var o=n("187a"),r=n("80bc");for(var a in r)"default"!==a&&function(t){n.d(e,t,(function(){return r[t]}))}(a);n("2972"),n("5b77");var i,c=n("f0c5"),u=Object(c["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);e["default"]=u.exports},e4bd:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("e1ba"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["e4bd","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/reviewreport/reviewreport"],{"0cb9":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return o}))},"10d1":function(t,e,n){"use strict";n.r(e);var o=n("0cb9"),i=n("eacb");for(var r in i)"default"!==r&&function(t){n.d(e,t,(function(){return i[t]}))}(r);n("45da"),n("2480");var a,c=n("f0c5"),l=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);e["default"]=l.exports},2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},"23b2":function(t,e,n){},2480:function(t,e,n){"use strict";var o=n("6d33"),i=n.n(o);i.a},"33a0":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("10d1"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"45da":function(t,e,n){"use strict";var o=n("23b2"),i=n.n(o);i.a},"4e90":function(t,e,n){"use strict";var o=n("d869"),i=n.n(o);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,r=new Promise((function(r,a){var c=t.getStorageSync("token"),l={token:c||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:l,success:function(t){200==t.statusCode?r(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("4e90");var r,a,c,l,u=n("f0c5"),f=Object(u["a"])(o["default"],r,a,!1,null,null,null,!1,c,l);e["default"]=f.exports},"6d33":function(t,e,n){},"8b82":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("59df")),i=r(n("b86c"));function r(t){return t&&t.__esModule?t:{default:t}}function a(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,a=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){a=!0,i=t},f:function(){try{r||null==o.return||o.return()}finally{if(a)throw i}}}}function c(t,e){if(t){if("string"===typeof t)return l(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(t,e):void 0}}function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",receive:-1}},onLoad:function(t){console.log(t.item),this.item=JSON.parse(t.item),console.log("评审报告",this.item);var e=this.item;e.ftoauditamt=i.default.change(e.ftoauditamt),this.item=e,"已确认"==this.item.freporttatus?this.receive=0:this.receive=1,this.getprojectkind(),console.log(i.default.unction(45622111))},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{isreceive:function(t){console.log(t),console.log(t.currentTarget.dataset.id),this.receive=t.currentTarget.dataset.id,console.log(this.receive)},downloadfile:function(e){var n=this;console.log(e);e.fauditrptfile;var i=e.fauditrptfile_txt,r="project/Select_FileInfo",a={};o.default.post(r,a,"get").then((function(e){console.log("下载文件",e),n.singgleurl=e.data[0].file;e.data[0].file;var o="https://39.105.61.115:8111/FileInfo/GetFile?fileId=4759b12f38ba6bdb71586065c64c42c5";console.log(wx.env.USER_DATA_PATH+"/"+i),t.downloadFile({url:o,header:{},success:function(t){},fail:function(t){},complete:function(e){console.log(e);var n=wx.getFileSystemManager();200===e.statusCode&&(n.saveFile({tempFilePath:e.tempFilePath,filePath:wx.env.USER_DATA_PATH+"/wenjian.doc",success:function(t){console.log(t)}}),t.openDocument({filePath:wx.env.USER_DATA_PATH+"/wenjian.doc",success:function(t){console.log("打开文档成功")},fail:function(){console.log("打开失败")}}))}})})).catch((function(t){console.log(t)}))},detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,i=a(t.projectarr);try{for(i.s();!(o=i.n()).done;){var r=o.value;r.fid==e.item.finorgid&&(t.fprjleader=r.fprjleader,t.fprjleadertwo=r.fprjleadertwo,t.fname=r.fname,t.finorgid=r.fid)}}catch(c){i.e(c)}finally{i.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(-1==e.receive)return t.showToast({title:"请选择邮寄情况",icon:"none"}),!1;var n="project/Save_Rptconfirm",i={userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fdisid:e.item.fdisid,fservicestatus:e.item.fservicestatus,mailstatus:e.receive};console.log("8877665544",i),o.default.post(n,i,"get").then((function(e){console.log(e),"提交成功"==e.data[0].message?(t.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)):(t.showToast({title:e.data[0].message,icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3))})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},d869:function(t,e,n){},eacb:function(t,e,n){"use strict";n.r(e);var o=n("8b82"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a}},[["33a0","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
<view class="box"><view class="renyuan"><view class="projectinfo"><view class="projectname">项目信息</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">项目名称:</view><view class="projectitemright">{{item.fname}}</view></view><view class="projectitem"><view class="projectitemleft">项目编号:</view><view class="projectitemright">{{item.fnumber}}</view></view><view class="projectitem"><view class="projectitemleft">评审类型:</view><view class="projectitemright">{{item.freviewtype}}</view></view></view></view><view class="renyaoqiu"><view class="projectinfo"><view class="projectname">评审报告</view></view><view class="projectlist"><view data-event-opts="{{[['tap',[['downloadfile',['$0'],['item.fauditrptfile']]]]]}}" class="queslist" bindtap="__e"><view class="qusetionimg flex"><view class="bigquestion"><image src="../../static/img/zhiyi.png" mode></image></view><view class="smallimg"><image src="../../static/img/download.png" mode></image></view></view></view></view></view><view class="mail"><view class="mailstate">邮寄情况:</view><view class="mailist"><view class="mailitem flexone" data-id="{{0}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==0}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">是,线下收到纸质版评审报告</view></view><view class="mailitem flexone" data-id="{{1}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==1}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">否,线下没有收到纸质版评审报告</view></view></view></view><view class="zixunbottom"><view data-event-opts="{{[['tap',[['submit',['$event']]]]]}}" class="zixunbotright" bindtap="__e">确认</view></view></view>
\ No newline at end of file
<view class="box"><view class="renyuan"><view class="projectinfo"><view class="projectname">项目信息</view></view><view class="projectlist"><view class="projectitem"><view class="projectitemleft">项目名称:</view><view class="projectitemright">{{item.fname}}</view></view><view class="projectitem"><view class="projectitemleft">项目编号:</view><view class="projectitemright">{{item.fnumber}}</view></view><view class="projectitem"><view class="projectitemleft">评审类型:</view><view class="projectitemright">{{item.freviewtype}}</view></view></view></view><view class="renyaoqiu"><view class="projectinfo"><view class="projectname">评审报告</view></view><view class="projectlist"><view data-event-opts="{{[['tap',[['downloadfile',['$0'],['item']]]]]}}" class="queslist" bindtap="__e"><view class="qusetionimg flex"><view class="bigquestion"><image src="../../static/img/zhiyi.png" mode></image></view><view class="smallimg"><image src="../../static/img/download.png" mode></image></view></view></view></view></view><view class="mail"><view class="mailstate">邮寄情况:</view><view class="mailist"><view class="mailitem flexone" data-id="{{0}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==0}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">是,线下收到纸质版评审报告</view></view><view class="mailitem flexone" data-id="{{1}}" data-event-opts="{{[['tap',[['isreceive',['$event']]]]]}}" bindtap="__e"><view class="mailitemimg"><block wx:if="{{receive==1}}"><image src="../../static/img/selshi.png" mode></image></block><block wx:else><image src="../../static/img/sel.png" mode></image></block></view><view class="mailname">否,线下没有收到纸质版评审报告</view></view></view></view><view class="zixunbottom"><view data-event-opts="{{[['tap',[['submit',['$event']]]]]}}" class="zixunbotright" bindtap="__e">确认</view></view></view>
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden}image{width:100%;height:100%}.box{background:#f9f9f9}.mailitemimg{width:32rpx;height:32rpx;font-size:0}.mail{padding:0 32rpx;box-sizing:border-box;margin-top:114rpx}.mailist{margin-top:12rpx}.mailitem{margin-top:20rpx}.mailstate{color:#8c9198;font-size:28rpx}.mailname{color:#06121e;font-size:28rpx;margin-left:12rpx}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{width:750rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx;box-sizing:border-box;position:fixed;bottom:0;left:0}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin:0 auto}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden}image{width:100%;height:100%}.box{background:#f9f9f9}.mailitemimg{width:32rpx;height:32rpx;font-size:0}.mail{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:114rpx}.mailist{margin-top:12rpx}.mailitem{margin-top:20rpx}.mailstate{color:#8c9198;font-size:28rpx}.mailname{color:#06121e;font-size:28rpx;margin-left:12rpx}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{width:750rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box;position:fixed;bottom:0;left:0}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin:0 auto}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx;width:180rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/seequestion/seequestion"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),i=n.n(o);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,a=new Promise((function(a,r){var c=t.getStorageSync("token"),u={token:c||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:u,success:function(t){200==t.statusCode?a(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("0aa0");var a,r,c,u,s=n("f0c5"),l=Object(s["a"])(o["default"],a,r,!1,null,null,null,!1,c,u);e["default"]=l.exports},"30d3":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return o}))},4623:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("4e5c"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"49d4":function(t,e,n){},"4e5c":function(t,e,n){"use strict";n.r(e);var o=n("30d3"),i=n("b723");for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);n("943d"),n("64a6");var r,c=n("f0c5"),u=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=u.exports},"64a6":function(t,e,n){"use strict";var o=n("9994"),i=n.n(o);i.a},"943d":function(t,e,n){"use strict";var o=n("49d4"),i=n.n(o);i.a},9994:function(t,e,n){},b723:function(t,e,n){"use strict";n.r(e);var o=n("f3ea"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},f3ea:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("30b9")),i=a(n("079c"));function a(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,a=!0,r=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){r=!0,i=t},f:function(){try{a||null==o.return||o.return()}finally{if(r)throw i}}}}function c(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var s={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",qid:""}},onLoad:function(t){if(void 0!=t.projectid)this.qid=t.projectid,this.getquestionlist();else{this.item=JSON.parse(t.item),console.log(this.item);var e=this.item;e.ftoauditamt=i.default.change(e.ftoauditamt),this.item=e}this.getprojectkind()},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{getquestionlist:function(){var e=this,n="project/Select_Question",i={qid:e.qid,userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:""};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log("问题列表",t),e.item=t.data[0]})).catch((function(t){console.log(t)}))},subquestion:function(){var e=this,n="project/Save_Replysubmit",i={userid:t.getStorageSync("userid"),qid:e.item.qid,role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fproblemstatus:e.item.fproblemstatus};console.log("8877665544",i),o.default.post(n,i,"get").then((function(e){console.log("提交回复",e),t.showToast({title:e.data[0].message,icon:"none"}),"提交成功"==e.data[0].message&&setTimeout((function(){t.navigateBack({checked:!0})}),1500)})).catch((function(t){console.log(t)}))},endquestion:function(){var e=this,n="project/Save_Replyclosejs",i={qid:e.item.qid,role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fproblemstatus:e.item.fproblemstatus};o.default.post(n,i,"get").then((function(e){console.log("终止回复回复",e),t.showToast({title:e.data[0].message,icon:"none"}),"提交成功"==e.data[0].message&&setTimeout((function(){t.navigateBack({checked:!0})}),1500)})).catch((function(t){console.log(t)}))},downloadfile:function(e){var n=this,i="project/Select_FileInfo",a={};o.default.post(i,a,"get").then((function(o){console.log("下载文件",o),n.singgleurl=o.data[0].file;var i=o.data[0].file+"?fileId="+e;t.setStorageSync("url",i),plus.runtime.openURL(i)})).catch((function(t){console.log(t)}))},detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,i=r(t.projectarr);try{for(i.s();!(o=i.n()).done;){var a=o.value;a.fid==e.item.finorgid&&(t.fprjleader=a.fprjleader,t.fprjleadertwo=a.fprjleadertwo,t.fname=a.fname,t.finorgid=a.fid)}}catch(c){i.e(c)}finally{i.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(""==e.fname)return t.showToast({title:"请选择项目组",icon:"none"}),!1;var n="project/Submit_Disfteam",i={ftaskprocess:e.item.ftaskprocess,fuserid:t.getStorageSync("userid"),fteamid:e.finorgid,fdisid:e.item.disid,fprojectid:e.item.fprojectid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(n){console.log(n),"成功"==n.data[0].message?t.showToast({title:"提交成功",icon:"none"}):t.showToast({title:n.data[0].message,icon:"none"}),e.changestate(),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=s}).call(this,n("543d")["default"])}},[["4623","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/seequestion/seequestion"],{"019a":function(t,e,n){"use strict";n.r(e);var o=n("4cc4"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},"20dd":function(t,e,n){"use strict";n.r(e);var o=n("837d"),i=n("019a");for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);n("3e1f"),n("7bc4");var r,c=n("f0c5"),u=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=u.exports},2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},3661:function(t,e,n){},"3e1f":function(t,e,n){"use strict";var o=n("3661"),i=n.n(o);i.a},"4cc4":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("59df")),i=a(n("b86c"));function a(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,a=!0,r=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){r=!0,i=t},f:function(){try{a||null==o.return||o.return()}finally{if(r)throw i}}}}function c(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var s={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",qid:""}},onLoad:function(t){if(void 0!=t.projectid)this.qid=t.projectid,this.getquestionlist();else{this.item=JSON.parse(t.item),console.log(this.item);var e=this.item;e.ftoauditamt=i.default.change(e.ftoauditamt),this.item=e}this.getprojectkind()},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{getquestionlist:function(){var e=this,n="project/Select_Question",i={qid:e.qid,userid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:""};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log("问题列表",t),e.item=t.data[0]})).catch((function(t){console.log(t)}))},subquestion:function(){var e=this,n="project/Save_Replysubmit",i={userid:t.getStorageSync("userid"),qid:e.item.qid,role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fproblemstatus:e.item.fproblemstatus};console.log("8877665544",i),o.default.post(n,i,"get").then((function(e){console.log("提交回复",e),t.showToast({title:e.data[0].message,icon:"none"}),"提交成功"==e.data[0].message&&setTimeout((function(){t.navigateBack({checked:!0})}),1500)})).catch((function(t){console.log(t)}))},endquestion:function(){var e=this,n="project/Save_Replyclosejs",i={qid:e.item.qid,role:t.getStorageSync("role"),fprojectid:e.item.fprojectid,fproblemstatus:e.item.fproblemstatus};o.default.post(n,i,"get").then((function(e){console.log("终止回复回复",e),t.showToast({title:e.data[0].message,icon:"none"}),"提交成功"==e.data[0].message&&setTimeout((function(){t.navigateBack({checked:!0})}),1500)})).catch((function(t){console.log(t)}))},downloadfile:function(e){var n=this,i="project/Select_FileInfo",a={};o.default.post(i,a,"get").then((function(o){console.log("下载文件",o),n.singgleurl=o.data[0].file;var i=o.data[0].file+"?fileId="+e;t.setStorageSync("url",i),console.log(i),plus.runtime.openURL(i)})).catch((function(t){console.log(t)}))},detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,i=r(t.projectarr);try{for(i.s();!(o=i.n()).done;){var a=o.value;a.fid==e.item.finorgid&&(t.fprjleader=a.fprjleader,t.fprjleadertwo=a.fprjleadertwo,t.fname=a.fname,t.finorgid=a.fid)}}catch(c){i.e(c)}finally{i.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(""==e.fname)return t.showToast({title:"请选择项目组",icon:"none"}),!1;var n="project/Submit_Disfteam",i={ftaskprocess:e.item.ftaskprocess,fuserid:t.getStorageSync("userid"),fteamid:e.finorgid,fdisid:e.item.disid,fprojectid:e.item.fprojectid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(n){console.log(n),"成功"==n.data[0].message?t.showToast({title:"提交成功",icon:"none"}):t.showToast({title:n.data[0].message,icon:"none"}),e.changestate(),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=s}).call(this,n("543d")["default"])},"4e90":function(t,e,n){"use strict";var o=n("d869"),i=n.n(o);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,a=new Promise((function(a,r){var c=t.getStorageSync("token"),u={token:c||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:u,success:function(t){200==t.statusCode?a(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("4e90");var a,r,c,u,s=n("f0c5"),l=Object(s["a"])(o["default"],a,r,!1,null,null,null,!1,c,u);e["default"]=l.exports},"5ec6":function(t,e,n){},"7bc4":function(t,e,n){"use strict";var o=n("5ec6"),i=n.n(o);i.a},"837d":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return o}))},d72c:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("20dd"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},d869:function(t,e,n){}},[["d72c","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden}image{width:100%;height:100%}.quesbot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;text-align:right;padding:32rpx;box-sizing:border-box}.quesbotleft{width:200rpx;height:64rpx;border:1rpx solid #0393fa;opacity:1;border-radius:8rpx;color:#0093ff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:28rpx}.quesbotright{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx}.box{background:#f9f9f9}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{overflow-x:hidden}image{width:100%;height:100%}.quesbot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;text-align:right;padding:32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.quesbotleft{width:200rpx;height:64rpx;border:1rpx solid #0393fa;opacity:1;border-radius:8rpx;color:#0093ff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:28rpx}.quesbotright{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx}.box{background:#f9f9f9}.questiondescribe{color:#8c9198;font-size:28rpx;width:686rpx;height:180rpx;margin:20rpx auto 0}.questiondescribe textarea{width:100%;height:180rpx}.enterword{color:#8c9198;font-size:28rpx}.qusetionimg{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end;margin-top:28rpx}.bigquestion{width:88rpx;height:88rpx;font-size:0}.smallimg{width:32rpx;height:32rpx;font-size:0;margin-left:10rpx}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.itemk{border-bottom:none}.queslist{padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}.box{background:#fff}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}.itemk{border-bottom:none}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/seesongshen/seesongshen"],{"2bfa":function(n,t,e){},"363f":function(n,t,e){"use strict";e.r(t);var u=e("d6fe"),f=e("3e4e");for(var a in f)"default"!==a&&function(n){e.d(t,n,(function(){return f[n]}))}(a);e("560f");var r,c=e("f0c5"),o=Object(c["a"])(f["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],r);t["default"]=o.exports},"3e4e":function(n,t,e){"use strict";e.r(t);var u=e("9348"),f=e.n(u);for(var a in u)"default"!==a&&function(n){e.d(t,n,(function(){return u[n]}))}(a);t["default"]=f.a},"560f":function(n,t,e){"use strict";var u=e("2bfa"),f=e.n(u);f.a},9348:function(n,t){},a055:function(n,t,e){"use strict";(function(n){e("a237"),e("921b");u(e("66fd"));var t=u(e("363f"));function u(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},d6fe:function(n,t,e){"use strict";var u,f=function(){var n=this,t=n.$createElement;n._self._c},a=[];e.d(t,"b",(function(){return f})),e.d(t,"c",(function(){return a})),e.d(t,"a",(function(){return u}))}},[["a055","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/seesongshen/seesongshen"],{"36ed":function(n,e,t){"use strict";t.r(e);var u=t("c5fd"),c=t.n(u);for(var r in u)"default"!==r&&function(n){t.d(e,n,(function(){return u[n]}))}(r);e["default"]=c.a},"3e6b":function(n,e,t){"use strict";var u=t("8b4b"),c=t.n(u);c.a},"6c9d":function(n,e,t){"use strict";(function(n){t("bdbd"),t("921b");u(t("66fd"));var e=u(t("9e69"));function u(n){return n&&n.__esModule?n:{default:n}}n(e.default)}).call(this,t("543d")["createPage"])},"8b4b":function(n,e,t){},"9e69":function(n,e,t){"use strict";t.r(e);var u=t("efd4"),c=t("36ed");for(var r in c)"default"!==r&&function(n){t.d(e,n,(function(){return c[n]}))}(r);t("3e6b");var f,o=t("f0c5"),a=Object(o["a"])(c["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],f);e["default"]=a.exports},c5fd:function(n,e){},efd4:function(n,e,t){"use strict";var u,c=function(){var n=this,e=n.$createElement;n._self._c},r=[];t.d(e,"b",(function(){return c})),t.d(e,"c",(function(){return r})),t.d(e,"a",(function(){return u}))}},[["6c9d","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.box{background:#fff}.verfy{padding-bottom:16rpx;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}
\ No newline at end of file
.box{background:#fff}.verfy{padding-bottom:16rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.touren{margin-left:10rpx}.number{width:120rpx;text-align:center}.ziliao{width:280rpx;text-align:center}.ziliaok{width:320rpx;text-align:center}.timek{width:210rpx;text-align:center}.fujian{width:180rpx;text-align:center}.caozuo{width:120rpx;text-align:center}.viewpoint{color:#d12324;font-size:22rpx;margin-top:20rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.fujiandown{width:120rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff!important;font-size:24rpx;text-align:center;line-height:40rpx}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx;position:relative}.projectname:before{display:block;content:"";width:10rpx;height:26rpx;background:#0292ff;position:absolute;top:8rpx;left:-20rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zitou{padding:20rpx 0}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.download{width:136rpx;height:40rpx;line-height:40rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}.shending{width:430rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/shenjianhuidetail/shenjianhuidetail"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"33f0":function(t,e,n){"use strict";var a=n("d50d"),o=n.n(a);o.a},"76fc":function(t,e,n){"use strict";n.r(e);var a=n("868e"),o=n("8db2");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("33f0");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},"853c":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("76fc"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"868e":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},"8db2":function(t,e,n){"use strict";n.r(e);var a=n("f3d5"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},d50d:function(t,e,n){},f3d5:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("30b9")),o=i(n("079c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!1,fid:""}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.startdate="开始时间",this.endate="结束时间",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_Descpercategorysum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../shenjianhuidetail/shenjianhuidetail?fid="+this.fid})},getdetailist:function(){var t=this;console.log(9988776655);var e="project/Get_Descpercategory",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Descpercategory",i={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=o.default.change(s.fauditamount),s.fshenjianmoney=o.default.change(s.fshenjianmoney),s.ftoauditamt=o.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])}},[["853c","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/shenjianhuidetail/shenjianhuidetail"],{"1a33":function(t,e,n){"use strict";var a=n("3923"),o=n.n(a);o.a},"1d67":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("f735"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},3923:function(t,e,n){},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"87e4":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},cd75:function(t,e,n){"use strict";n.r(e);var a=n("e159"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},d869:function(t,e,n){},e159:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("59df")),o=i(n("b86c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!1,fid:""}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.startdate="开始时间",this.endate="结束时间",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_Descpercategorysum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../shenjianhuidetail/shenjianhuidetail?fid="+this.fid})},getdetailist:function(){var t=this;console.log(9988776655);var e="project/Get_Descpercategory",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Descpercategory",i={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=o.default.change(s.fauditamount),s.fshenjianmoney=o.default.change(s.fshenjianmoney),s.ftoauditamt=o.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},f735:function(t,e,n){"use strict";n.r(e);var a=n("87e4"),o=n("cd75");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("1a33");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports}},[["1d67","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx;margin-left:10rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.leixing{width:180rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx;margin-left:10rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.leixing{width:180rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.detailname{width:120rpx;text-align:center;color:#0093ff;fotn-size:24rpx;margin-left:20rpx}.danwei{width:200rpx;text-align:center;margin-left:5rpx}.date{width:200rpx;text-align:center}.jine{width:200rpx;text-align:center}.songshenlv{width:200rpx;text-align:center;margin-left:10rpx}.shenyear{width:120rpx;text-align:center;margin-left:1rpx}.shenlvze{width:320rpx;text-align:center;margin-left:20rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.detailname{width:120rpx;text-align:center;color:#0093ff;fotn-size:24rpx;margin-left:20rpx}.danwei{width:200rpx;text-align:center;margin-left:5rpx}.date{width:200rpx;text-align:center}.jine{width:200rpx;text-align:center}.songshenlv{width:200rpx;text-align:center;margin-left:10rpx}.shenyear{width:120rpx;text-align:center;margin-left:1rpx}.shenlvze{width:320rpx;text-align:center;margin-left:20rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/shenjianhuizong/shenjianhuizong"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1bdb":function(t,e,n){"use strict";n.r(e);var a=n("4f1e"),o=n("da43");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("9488");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"2a11":function(t,e,n){},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"48f1":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("1bdb"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"4f1e":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},"539b":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("30b9")),o=i(n("079c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],danweiname:"评审类型",projectname:"项目类型",startdate:"开始时间",endate:"结束时间",danweinamez:"咨询单位",yearindex:-1,index:0,yeararr:[],danweilistz:[],danweiindexz:0,toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!0,fid:""}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.startdate="开始时间",this.endate="结束时间",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Descpercategorysum",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=o.default.change(s.auduitsum),s.amountsum=o.default.change(s.amountsum),s.freesum=o.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../shenjianhuidetail/shenjianhuidetail?fid="+this.fid})},getdetailist:function(){var t=this;console.log(9988776655);var e="project/Get_Descpercategory",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetailist(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},9488:function(t,e,n){"use strict";var a=n("2a11"),o=n.n(a);o.a},da43:function(t,e,n){"use strict";n.r(e);var a=n("539b"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a}},[["48f1","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/shenjianhuizong/shenjianhuizong"],{"13c3":function(t,e,n){"use strict";n.r(e);var a=n("22f6"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"22f6":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("59df")),o=i(n("b86c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],danweiname:"评审类型",projectname:"项目类型",startdate:"开始时间",endate:"结束时间",danweinamez:"咨询单位",yearindex:-1,index:0,yeararr:[],danweilistz:[],danweiindexz:0,toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!0,fid:""}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.startdate="开始时间",this.endate="结束时间",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Descpercategorysum",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=o.default.change(s.auduitsum),s.amountsum=o.default.change(s.amountsum),s.freesum=o.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../shenjianhuidetail/shenjianhuidetail?fid="+this.fid})},getdetailist:function(){var t=this;console.log(9988776655);var e="project/Get_Descpercategory",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetailist(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"903c":function(t,e,n){"use strict";n.r(e);var a=n("b08c"),o=n("13c3");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("df54");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},a6bb:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("903c"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},b08c:function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},c020:function(t,e,n){},d869:function(t,e,n){},df54:function(t,e,n){"use strict";var a=n("c020"),o=n.n(a);o.a}},[["a6bb","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:85rpx}.songshen{width:200rpx;text-align:center;margin-left:40rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:85rpx}.songshen{width:200rpx;text-align:center;margin-left:40rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.detailname{width:120rpx;text-align:center;color:#0093ff;fotn-size:24rpx;margin-left:20rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.detailname{width:120rpx;text-align:center;color:#0093ff;fotn-size:24rpx;margin-left:20rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/songshenjine/songshenjine"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},2152:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("30b9")),o=i(n("079c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],danweiname:"评审类型",projectname:"项目类型",yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!0,fid:""}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_AuditamtcategOrySum",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=o.default.change(s.auduitsum),s.amountsum=o.default.change(s.amountsum),s.freesum=o.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../songshenjinedetail/songshenjinedetail?fid="+this.fid})},getdetail:function(){var t=this;console.log(9988776655);var e="project/Get_AuditamtcategOry",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"4d29":function(t,e,n){"use strict";n.r(e);var a=n("e200"),o=n("6eba");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("e8d8");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},"566d":function(t,e,n){},"6eba":function(t,e,n){"use strict";n.r(e);var a=n("2152"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},ca53:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("4d29"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},e200:function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},e8d8:function(t,e,n){"use strict";var a=n("566d"),o=n.n(a);o.a}},[["ca53","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/songshenjine/songshenjine"],{2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},3235:function(t,e,n){},4808:function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"5f59":function(t,e,n){"use strict";n.r(e);var a=n("f5c7"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},6981:function(t,e,n){"use strict";var a=n("3235"),o=n.n(a);o.a},a7cf:function(t,e,n){"use strict";n.r(e);var a=n("4808"),o=n("5f59");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("6981");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},a958:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("a7cf"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},d869:function(t,e,n){},f5c7:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("59df")),o=i(n("b86c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],danweiname:"评审类型",projectname:"项目类型",yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!0,fid:""}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_AuditamtcategOrySum",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=o.default.change(s.auduitsum),s.amountsum=o.default.change(s.amountsum),s.freesum=o.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../songshenjinedetail/songshenjinedetail?fid="+this.fid})},getdetail:function(){var t=this;console.log(9988776655);var e="project/Get_AuditamtcategOry",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])}},[["a958","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:112rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:112rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;text-align:center;margin-left:30rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.shenlvde{width:200rpx;text-align:center;margin-left:120rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;text-align:center;margin-left:30rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.shenlvde{width:200rpx;text-align:center;margin-left:120rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/songshenjinedetail/songshenjinedetail"],{"05cf":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9")),i=o(n("079c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!1,fid:""}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_AuditamtcategOrySum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(t){this.fid=t.target.dataset.id,this.huizong=!1,this.getdetail()},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_AuditamtcategOry",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c},"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"388b":function(t,e,n){"use strict";var a=n("fcd8"),i=n.n(a);i.a},"3fe5":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},"5bd8":function(t,e,n){"use strict";n.r(e);var a=n("05cf"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},d9ad:function(t,e,n){"use strict";n.r(e);var a=n("3fe5"),i=n("5bd8");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("388b");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},fcd8:function(t,e,n){},fe26:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("d9ad"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["fe26","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/songshenjinedetail/songshenjinedetail"],{2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"89aa":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("d4c9"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},b125:function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},d4c9:function(t,e,n){"use strict";n.r(e);var a=n("b125"),i=n("dd90");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("e241");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},d702:function(t,e,n){},d869:function(t,e,n){},dd90:function(t,e,n){"use strict";n.r(e);var a=n("f3b0"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},e241:function(t,e,n){"use strict";var a=n("d702"),i=n.n(a);i.a},f3b0:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df")),i=o(n("b86c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!1,fid:""}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.danweiname="评审类型",this.projectname="项目类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_AuditamtcategOrySum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(t){this.fid=t.target.dataset.id,this.huizong=!1,this.getdetail()},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_AuditamtcategOry",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}},[["89aa","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{width:120rpx;color:#0093ff;font-size:24rpx;width:120rpx;margin-left:20rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.itemnamedate{width:200rpx;text-align:center;margin-left:10rpx}.shenlvlei{width:200rpx;margin-left:1rpx;text-align:center}.itemshumoney{width:200rpx;text-align:center;margin-left:1rpx}.shenjiandan{width:100rpx;text-align:center;margin-left:10rpx}.shenlvyear{width:300rpx;text-align:center;margin-left:180rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{width:120rpx;color:#0093ff;font-size:24rpx;width:120rpx;margin-left:20rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.itemnamedate{width:200rpx;text-align:center;margin-left:10rpx}.shenlvlei{width:200rpx;margin-left:1rpx;text-align:center}.itemshumoney{width:200rpx;text-align:center;margin-left:1rpx}.shenjiandan{width:100rpx;text-align:center;margin-left:10rpx}.shenlvyear{width:300rpx;text-align:center;margin-left:180rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/taizhang/taizhang"],{"0663":function(n,a,t){},"0aa0":function(n,a,t){"use strict";var e=t("1604"),u=t.n(e);u.a},"0c9c":function(n,a,t){"use strict";(function(n){Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var t={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(a,t,e){var u=this,i=new Promise((function(i,o){var c=n.getStorageSync("token"),r={token:c||""};n.request({url:u.globalData.baseUrl+a,data:t,method:e,header:r,success:function(n){200==n.statusCode?i(n):o(n.data)},fail:function(n){console.log(n),o("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};a.default=t}).call(this,t("543d")["default"])},1604:function(n,a,t){},"1f18":function(n,a,t){"use strict";t.r(a);var e=t("0c9c"),u=t.n(e);for(var i in e)"default"!==i&&function(n){t.d(a,n,(function(){return e[n]}))}(i);a["default"]=u.a},"30b9":function(n,a,t){"use strict";t.r(a);var e=t("1f18");for(var u in e)"default"!==u&&function(n){t.d(a,n,(function(){return e[n]}))}(u);t("0aa0");var i,o,c,r,l=t("f0c5"),f=Object(l["a"])(e["default"],i,o,!1,null,null,null,!1,c,r);a["default"]=f.exports},3673:function(n,a,t){"use strict";t.r(a);var e=t("dc50"),u=t.n(e);for(var i in e)"default"!==i&&function(n){t.d(a,n,(function(){return e[n]}))}(i);a["default"]=u.a},aae3:function(n,a,t){"use strict";(function(n){t("a237"),t("921b");e(t("66fd"));var a=e(t("e658"));function e(n){return n&&n.__esModule?n:{default:n}}n(a.default)}).call(this,t("543d")["createPage"])},dc50:function(n,a,t){"use strict";(function(n){Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var e=u(t("30b9"));function u(n){return n&&n.__esModule?n:{default:n}}var i={data:function(){return{showhide:[]}},onLoad:function(){this.showhideproject()},methods:{examine:function(a){var t=a.currentTarget.dataset.id;n.navigateTo({url:"/pages/budgetshenhe/budgetshenhe?type="+t})},showhideproject:function(){var a=this;console.log(9988776655);var t="project/Get_Menuhiding",u={fuserid:n.getStorageSync("userid"),role:n.getStorageSync("role")};console.log("8877665544",u),e.default.post(t,u,"get").then((function(t){console.log(t),a.showhide=t.data,n.setStorageSync("showhide",t.data),console.log(a.showhide)})).catch((function(n){console.log(n)}))},xiangmufen:function(){n.navigateTo({url:"../zixunfen/zixunfen"})},danweifen:function(){n.navigateTo({url:"../danweizixun/danweizixun"})},zhuanjiafen:function(){n.navigateTo({url:"../zhuanjiafenpei/zhuanjiafenpei"})},progressproject:function(){n.navigateTo({url:"../guocheng/guocheng"})},xiangmutai:function(){n.navigateTo({url:"../xiangmutaizhang/xiangmutaizhang"})},yusuan:function(a){console.log(a),n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=1"})},jiesuan:function(){n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=2"})},juesuan:function(){n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=3"})},land:function(){n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=4"})},zhuguan:function(){n.navigateTo({url:"../zhuguantaizhang/zhugauntaizhang?type=5"})},xiangmuzu:function(){n.navigateTo({url:"../xiangmuzutaizhang/xiangmuzutaizhang"})},zixundanei:function(){n.navigateTo({url:"../zixundanweihuizong/zixundanweihuizong"})},shenjian:function(){n.navigateTo({url:"../shenjianhuizong/shenjianhuizong?type=1"})},songshen:function(){n.navigateTo({url:"../songshenjine/songshenjine?type=2"})},leixing:function(){n.navigateTo({url:"../xiangmuleixinghui/xiangmuleixinghui"})},zhuanjia:function(){n.navigateTo({url:"../zhuanjiahui/zhuanjiahui"})},qushi:function(){n.navigateTo({url:"../tubiao/tubiao"})},tuichulogin:function(){n.navigateTo({url:"../index/index"})},gocenter:function(){n.navigateTo({url:"../daiban/daiban"})}}};a.default=i}).call(this,t("543d")["default"])},e450:function(n,a,t){"use strict";var e=t("0663"),u=t.n(e);u.a},e62e:function(n,a,t){"use strict";var e,u=function(){var n=this,a=n.$createElement;n._self._c},i=[];t.d(a,"b",(function(){return u})),t.d(a,"c",(function(){return i})),t.d(a,"a",(function(){return e}))},e658:function(n,a,t){"use strict";t.r(a);var e=t("e62e"),u=t("3673");for(var i in u)"default"!==i&&function(n){t.d(a,n,(function(){return u[n]}))}(i);t("e450");var o,c=t("f0c5"),r=Object(c["a"])(u["default"],e["b"],e["c"],!1,null,null,null,!1,e["a"],o);a["default"]=r.exports}},[["aae3","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/taizhang/taizhang"],{2166:function(n,a,t){"use strict";t.r(a);var u=t("593d"),e=t.n(u);for(var i in u)"default"!==i&&function(n){t.d(a,n,(function(){return u[n]}))}(i);a["default"]=e.a},"4e90":function(n,a,t){"use strict";var u=t("d869"),e=t.n(u);e.a},"593d":function(n,a,t){"use strict";(function(n){Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var t={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(a,t,u){var e=this,i=new Promise((function(i,o){var c=n.getStorageSync("token"),r={token:c||""};n.request({url:e.globalData.baseUrl+a,data:t,method:u,header:r,success:function(n){200==n.statusCode?i(n):o(n.data)},fail:function(n){console.log(n),o("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};a.default=t}).call(this,t("543d")["default"])},"59df":function(n,a,t){"use strict";t.r(a);var u=t("2166");for(var e in u)"default"!==e&&function(n){t.d(a,n,(function(){return u[n]}))}(e);t("4e90");var i,o,c,r,l=t("f0c5"),f=Object(l["a"])(u["default"],i,o,!1,null,null,null,!1,c,r);a["default"]=f.exports},"63dd":function(n,a,t){},"6c16":function(n,a,t){"use strict";(function(n){Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var u=e(t("59df"));function e(n){return n&&n.__esModule?n:{default:n}}var i={data:function(){return{showhide:[]}},onLoad:function(){this.showhideproject()},methods:{examine:function(a){var t=a.currentTarget.dataset.id;n.navigateTo({url:"/pages/budgetshenhe/budgetshenhe?type="+t})},showhideproject:function(){var a=this;console.log(9988776655);var t="project/Get_Menuhiding",e={fuserid:n.getStorageSync("userid"),role:n.getStorageSync("role")};console.log("8877665544",e),u.default.post(t,e,"get").then((function(t){console.log(t),a.showhide=t.data,n.setStorageSync("showhide",t.data),console.log(a.showhide)})).catch((function(n){console.log(n)}))},xiangmufen:function(){n.navigateTo({url:"../zixunfen/zixunfen"})},danweifen:function(){n.navigateTo({url:"../danweizixun/danweizixun"})},zhuanjiafen:function(){n.navigateTo({url:"../zhuanjiafenpei/zhuanjiafenpei"})},progressproject:function(){n.navigateTo({url:"../guocheng/guocheng"})},xiangmutai:function(){n.navigateTo({url:"../xiangmutaizhang/xiangmutaizhang"})},yusuan:function(a){console.log(a),n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=1"})},jiesuan:function(){n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=2"})},juesuan:function(){n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=3"})},land:function(){n.navigateTo({url:"../yusuantaizhang/yusuantaizhang?type=4"})},zhuguan:function(){n.navigateTo({url:"../zhuguantaizhang/zhugauntaizhang?type=5"})},xiangmuzu:function(){n.navigateTo({url:"../xiangmuzutaizhang/xiangmuzutaizhang"})},zixundanei:function(){n.navigateTo({url:"../zixundanweihuizong/zixundanweihuizong"})},shenjian:function(){n.navigateTo({url:"../shenjianhuizong/shenjianhuizong?type=1"})},songshen:function(){n.navigateTo({url:"../songshenjine/songshenjine?type=2"})},leixing:function(){n.navigateTo({url:"../xiangmuleixinghui/xiangmuleixinghui"})},zhuanjia:function(){n.navigateTo({url:"../zhuanjiahui/zhuanjiahui"})},qushi:function(){n.navigateTo({url:"../tubiao/tubiao"})},tuichulogin:function(){n.navigateTo({url:"../index/index"})},gocenter:function(){n.navigateTo({url:"../daiban/daiban"})}}};a.default=i}).call(this,t("543d")["default"])},"79ce":function(n,a,t){"use strict";t.r(a);var u=t("6c16"),e=t.n(u);for(var i in u)"default"!==i&&function(n){t.d(a,n,(function(){return u[n]}))}(i);a["default"]=e.a},a674:function(n,a,t){"use strict";(function(n){t("bdbd"),t("921b");u(t("66fd"));var a=u(t("c681"));function u(n){return n&&n.__esModule?n:{default:n}}n(a.default)}).call(this,t("543d")["createPage"])},bb6e:function(n,a,t){"use strict";var u=t("63dd"),e=t.n(u);e.a},c681:function(n,a,t){"use strict";t.r(a);var u=t("f50b"),e=t("79ce");for(var i in e)"default"!==i&&function(n){t.d(a,n,(function(){return e[n]}))}(i);t("bb6e");var o,c=t("f0c5"),r=Object(c["a"])(e["default"],u["b"],u["c"],!1,null,null,null,!1,u["a"],o);a["default"]=r.exports},d869:function(n,a,t){},f50b:function(n,a,t){"use strict";var u,e=function(){var n=this,a=n.$createElement;n._self._c},i=[];t.d(a,"b",(function(){return e})),t.d(a,"c",(function(){return i})),t.d(a,"a",(function(){return u}))}},[["a674","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.unlogin{width:150rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;position:absolute;right:0;top:40rpx}.fenxiname{padding:44rpx 32rpx 28rpx;box-sizing:border-box;color:#3d444d;font-size:36rpx;font-weight:700}.renwulimg{width:68rpx;height:68rpx;font-size:0}.renwulimg image{width:100%;height:100%}.renwuright{width:13rpx;height:23rpx;font-size:0}.renwuright image{width:100%;height:100%}.renwulist{padding:0 32rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap}.renwulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box;margin-right:35rpx}.renwuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renwuname{color:#3d444d;font-size:28rpx;margin-left:20rpx;letter-spacing:2rpx;margin-top:15rpx}.taiitem1{width:226rpx;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin-right:0}.shenjieitem{width:280rpx;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.zimg{margin-left:20rpx}.taizhangpage{margin-bottom:150rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.unlogin{width:150rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;position:absolute;right:0;top:40rpx}.fenxiname{padding:44rpx 32rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#3d444d;font-size:36rpx;font-weight:700}.renwulimg{width:68rpx;height:68rpx;font-size:0}.renwulimg image{width:100%;height:100%}.renwuright{width:13rpx;height:23rpx;font-size:0}.renwuright image{width:100%;height:100%}.renwulist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap}.renwulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;margin-right:35rpx}.renwuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renwuname{color:#3d444d;font-size:28rpx;margin-left:20rpx;letter-spacing:2rpx;margin-top:15rpx}.taiitem1{width:226rpx;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin-right:0}.shenjieitem{width:280rpx;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.zimg{margin-left:20rpx}.taizhangpage{margin-bottom:150rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/tubiao/tubiao"],{"0aa0":function(e,t,a){"use strict";var n=a("1604"),r=a.n(n);r.a},"0c9c":function(e,t,a){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,a,n){var r=this,i=new Promise((function(i,o){var s=e.getStorageSync("token"),l={token:s||""};e.request({url:r.globalData.baseUrl+t,data:a,method:n,header:l,success:function(e){200==e.statusCode?i(e):o(e.data)},fail:function(e){console.log(e),o("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=a}).call(this,a("543d")["default"])},"0f6e":function(e,t,a){"use strict";a.r(t);var n=a("86e4"),r=a("4a43");for(var i in r)"default"!==i&&function(e){a.d(t,e,(function(){return r[e]}))}(i);a("68e5");var o,s=a("f0c5"),l=Object(s["a"])(r["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],o);t["default"]=l.exports},1604:function(e,t,a){},"1f18":function(e,t,a){"use strict";a.r(t);var n=a("0c9c"),r=a.n(n);for(var i in n)"default"!==i&&function(e){a.d(t,e,(function(){return n[e]}))}(i);t["default"]=r.a},"30b9":function(e,t,a){"use strict";a.r(t);var n=a("1f18");for(var r in n)"default"!==r&&function(e){a.d(t,e,(function(){return n[e]}))}(r);a("0aa0");var i,o,s,l,u=a("f0c5"),c=Object(u["a"])(n["default"],i,o,!1,null,null,null,!1,s,l);t["default"]=c.exports},"4a43":function(e,t,a){"use strict";a.r(t);var n=a("8236"),r=a.n(n);for(var i in n)"default"!==i&&function(e){a.d(t,e,(function(){return n[e]}))}(i);t["default"]=r.a},"68e5":function(e,t,a){"use strict";var n=a("e5db"),r=a.n(n);r.a},8236:function(e,t,a){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;o(a("30b9"));var n,r=o(a("b047")),i=a("d8f1");function o(e){return e&&e.__esModule?e:{default:e}}function s(e){if("undefined"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=l(e))){var t=0,a=function(){};return{s:a,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,r,i=!0,o=!1;return{s:function(){n=e[Symbol.iterator]()},n:function(){var e=n.next();return i=e.done,e},e:function(e){o=!0,r=e},f:function(){try{i||null==n.return||n.return()}finally{if(o)throw r}}}}function l(e,t){if(e){if("string"===typeof e)return u(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(a):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?u(e,t):void 0}}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,n=new Array(t);a<t;a++)n[a]=e[a];return n}var c=null,d=null,f=null,h={data:function(){return{cWidth:"",cHeight:"",pixelRatio:1,textarea:"",ordinatearr:[],montharr:[],monthmin:"",monthmax:"",monthnum:"",quartermax:"",quartermin:"",quarternum:"",yearnum:"",yearmax:"",yearmin:"",yeararr:[],ordinateyeararr:[]}},onLoad:function(){n=this,this.cWidth=e.upx2px(750),this.cHeight=e.upx2px(500),this.getServerDatamonth(),this.getServerData(),this.getServerDatayear()},methods:{getServerDatamonth:function(){var t=this,a=e.getStorageSync("userid");console.log(a),e.request({url:"http://39.105.61.115:1912/api/project/Get_RptDataaudit?fuserid="+a+"&type=month",data:{},success:function(e){console.log(e);var a=new Date,r=a.getMonth()+1,i=[];if(console.log(r),1==r||3==r||5==r||7==r||8==r||10==r||12==r)for(var o=1;o<=31;o++)o<10?i.push("0"+o):i.push(o);else if(28==r)for(o=1;o<=28;o++)o<10?i.push("0"+o):i.push(o);else if(29==r)for(o=1;o<=29;o++)o<10?i.push("0"+o):i.push(o);else for(o=1;o<=30;o++)o<10?i.push("0"+o):i.push(o);t.ordinatearr=i;var l,u=e.data,c=s(u);try{for(c.s();!(l=c.n()).done;){var d=l.value;d.data=d.data.split("-"),d.value=d.data[2]}}catch(y){c.e(y)}finally{c.f()}console.log(u.length);var f=[];for(o=0;o<t.ordinatearr.length;o++){f[o]=0;for(var h=0;h<u.length;h++)u[h].value==t.ordinatearr[o]&&(console.log(u[h].value),f[o]=u[h].count)}console.log(f);var g=Math.max.apply(this,f),p=Math.min.apply(this,f);if(0==p)var m=Number(g-p);else m=Number(g-p)+1;t.monthnum=m,t.monthnum>=20&&(t.monthnum=8),t.monthmax=g,t.monthmin=p,t.montharr=f;var v={categories:[],series:[]};d={categories:t.ordinatearr,series:[{name:"本月",data:t.montharr}]};v.categories=d.categories,v.series=d.series,n.textarea=JSON.stringify(d),n.showLineA("canvasLineA",v)},fail:function(){n.tips="网络错误,小程序端请检查合法域名"}})},getServerData:function(){var t=this,a=e.getStorageSync("userid");console.log(a),e.request({url:"http://39.105.61.115:1912/api/project/Get_RptDataaudit?fuserid=13240379243&type=quarter",data:{},success:function(e){console.log("本季度",e);var a=new Date,r=a.getMonth()+1,i=[];console.log(r);var o,l=s(e.data);try{for(l.s();!(o=l.n()).done;){var u=o.value;i.push(u.data)}}catch(y){l.e(y)}finally{l.f()}t.ordinatearr=i;var c,d=[],f=e.data,h=s(f);try{for(h.s();!(c=h.n()).done;){u=c.value;d.push(u.count)}}catch(y){h.e(y)}finally{h.f()}var g=Math.max.apply(this,d),p=Math.min.apply(this,d);if(0==p)var m=Number(g-p);else m=Number(g-p)+1;t.quarternum=m,t.quarternum>=20&&(t.quarternum=8),console.log("00998877",t.quarternum),console.log(p),t.quartermax=g,t.quartermin=p,t.montharr=d;var v={categories:[],series:[]};u={categories:t.ordinatearr,series:[{name:"本季度",data:t.montharr}]};v.categories=u.categories,v.series=u.series,n.textarea=JSON.stringify(u),n.showLineB("canvasLineB",v)},fail:function(){n.tips="网络错误,小程序端请检查合法域名"}})},getServerDatayear:function(){var t=this,a=e.getStorageSync("userid");e.request({url:"http://39.105.61.115:1912/api/project/Get_RptDataaudit?fuserid="+a+"&type=year",data:{},success:function(e){console.log("本年",e);for(var a=[],r=1;r<=12;r++)r<10?a.push("0"+r):a.push(r);t.ordinateyeararr=a;var i,o=e.data,l=s(o);try{for(l.s();!(i=l.n()).done;){var u=i.value;u.data=u.data.split("-"),u.value=u.data[1]}}catch(m){l.e(m)}finally{l.f()}var c=[];for(r=0;r<t.ordinateyeararr.length;r++){c[r]=0;for(var d=0;d<o.length;d++)o[d].value==t.ordinateyeararr[r]&&(console.log(o[d].value),c[r]=o[d].count)}console.log("年度",c);var f=Math.max.apply(this,c),h=Math.min.apply(this,c),g="";g=0==h?Number(f-h):Number(f-h)+1,console.log("0998766",g),t.yearnum=g,t.yearnum>=20&&(t.yearnum=8),console.log(f),console.log(h),t.yearmax=f,t.yearmin=h,t.yeararr=c;var p={categories:[],series:[]};u={categories:t.ordinateyeararr,series:[{name:"本年",data:t.yeararr}]};p.categories=u.categories,p.series=u.series,n.textarea=JSON.stringify(u),n.showLineC("canvasLineC",p)},fail:function(){n.tips="网络错误,小程序端请检查合法域名"}})},showLineA:function(e,t){var a=this;c=new r.default({$this:n,canvasId:e,type:"line",fontSize:11,padding:[15,15,0,15],legend:{show:!0,padding:5,lineHeight:11,margin:15},dataLabel:!0,dataPointShape:!0,dataPointShapeType:"hollow",background:"#FFFFFF",pixelRatio:n.pixelRatio,categories:t.categories,series:t.series,animation:!0,enableScroll:!0,xAxis:{disableGrid:!1,type:"grid",gridType:"dash",itemCount:4,scrollShow:!0,scrollAlign:"left"},yAxis:{gridType:"dash",splitNumber:a.monthnum,min:a.monthmin,max:a.monthmax,format:function(e){return e.toFixed(0)}},width:n.cWidth*n.pixelRatio,height:n.cHeight*n.pixelRatio,extra:{line:{type:"straight"}}})},touchLineA:function(e){c.scrollStart(e)},moveLineA:function(e){c.scroll(e)},touchEndLineA:function(e){c.scrollEnd(e),c.touchLegend(e),c.showToolTip(e,{format:function(e,t){return t+" "+e.name+":"+e.data}})},changeDataF:function(){if((0,i.isJSON)(n.textarea)){var t=JSON.parse(n.textarea);c.updateData({series:t.series,categories:t.categories,scrollPosition:"right",animation:!1})}else e.showToast({title:"数据格式错误",image:"../../../static/images/alert-warning.png"})},showLineB:function(e,t){var a=this;d=new r.default({$this:n,canvasId:e,type:"line",fontSize:11,padding:[15,15,0,15],legend:{show:!0,padding:5,lineHeight:11,margin:15},dataLabel:!0,dataPointShape:!0,dataPointShapeType:"hollow",background:"#FFFFFF",pixelRatio:n.pixelRatio,categories:t.categories,series:t.series,animation:!0,enableScroll:!0,xAxis:{disableGrid:!1,type:"grid",gridType:"dash",itemCount:4,scrollShow:!0,scrollAlign:"left"},yAxis:{gridType:"dash",splitNumber:a.quarternum,min:a.quartermin,max:a.quartermax,format:function(e){return e.toFixed(0)}},width:n.cWidth*n.pixelRatio,height:n.cHeight*n.pixelRatio,extra:{line:{type:"straight"}}})},touchLineB:function(e){d.scrollStart(e)},moveLineB:function(e){d.scroll(e)},touchEndLineB:function(e){d.scrollEnd(e),d.touchLegend(e),d.showToolTip(e,{format:function(e,t){return t+" "+e.name+":"+e.data}})},changeDataH:function(){if((0,i.isJSON)(n.textarea)){var t=JSON.parse(n.textarea);d.updateData({series:t.series,categories:t.categories,scrollPosition:"right",animation:!1})}else e.showToast({title:"数据格式错误",image:"../../../static/images/alert-warning.png"})},showLineC:function(e,t){var a=this;f=new r.default({$this:n,canvasId:e,type:"line",fontSize:11,padding:[15,15,0,15],legend:{show:!0,padding:5,lineHeight:11,margin:15},dataLabel:!0,dataPointShape:!0,dataPointShapeType:"hollow",background:"#FFFFFF",pixelRatio:n.pixelRatio,categories:t.categories,series:t.series,animation:!0,enableScroll:!0,xAxis:{disableGrid:!1,type:"grid",gridType:"dash",itemCount:6,scrollShow:!0,scrollAlign:"left"},yAxis:{gridType:"dash",splitNumber:a.yearnum,min:a.yearmin,max:a.yearmax,format:function(e){return e.toFixed(0)}},width:n.cWidth*n.pixelRatio,height:n.cHeight*n.pixelRatio,extra:{line:{type:"straight"}}})},touchLineC:function(e){f.scrollStart(e)},moveLineC:function(e){f.scroll(e)},touchEndLineC:function(e){f.scrollEnd(e),f.touchLegend(e),f.showToolTip(e,{format:function(e,t){return t+" "+e.name+":"+e.data}})},changeDatak:function(){if((0,i.isJSON)(n.textarea)){var t=JSON.parse(n.textarea);f.updateData({series:t.series,categories:t.categories,scrollPosition:"right",animation:!1})}else e.showToast({title:"数据格式错误",image:"../../../static/images/alert-warning.png"})}}};t.default=h}).call(this,a("543d")["default"])},"86e4":function(e,t,a){"use strict";var n,r=function(){var e=this,t=e.$createElement;e._self._c},i=[];a.d(t,"b",(function(){return r})),a.d(t,"c",(function(){return i})),a.d(t,"a",(function(){return n}))},"8c5a":function(e,t,a){"use strict";(function(e){a("a237"),a("921b");n(a("66fd"));var t=n(a("0f6e"));function n(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,a("543d")["createPage"])},e5db:function(e,t,a){}},[["8c5a","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/tubiao/tubiao"],{2166:function(e,t,a){"use strict";a.r(t);var n=a("593d"),r=a.n(n);for(var i in n)"default"!==i&&function(e){a.d(t,e,(function(){return n[e]}))}(i);t["default"]=r.a},4834:function(e,t,a){"use strict";a.r(t);var n=a("588e"),r=a("5120");for(var i in r)"default"!==i&&function(e){a.d(t,e,(function(){return r[e]}))}(i);a("b52b");var o,s=a("f0c5"),l=Object(s["a"])(r["default"],n["b"],n["c"],!1,null,null,null,!1,n["a"],o);t["default"]=l.exports},"4e90":function(e,t,a){"use strict";var n=a("d869"),r=a.n(n);r.a},5120:function(e,t,a){"use strict";a.r(t);var n=a("9a68"),r=a.n(n);for(var i in n)"default"!==i&&function(e){a.d(t,e,(function(){return n[e]}))}(i);t["default"]=r.a},"588e":function(e,t,a){"use strict";var n,r=function(){var e=this,t=e.$createElement;e._self._c},i=[];a.d(t,"b",(function(){return r})),a.d(t,"c",(function(){return i})),a.d(t,"a",(function(){return n}))},"593d":function(e,t,a){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,a,n){var r=this,i=new Promise((function(i,o){var s=e.getStorageSync("token"),l={token:s||""};e.request({url:r.globalData.baseUrl+t,data:a,method:n,header:l,success:function(e){200==e.statusCode?i(e):o(e.data)},fail:function(e){console.log(e),o("网络出错"),wx.hideNavigationBarLoading()},complete:function(e){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=a}).call(this,a("543d")["default"])},"59df":function(e,t,a){"use strict";a.r(t);var n=a("2166");for(var r in n)"default"!==r&&function(e){a.d(t,e,(function(){return n[e]}))}(r);a("4e90");var i,o,s,l,u=a("f0c5"),c=Object(u["a"])(n["default"],i,o,!1,null,null,null,!1,s,l);t["default"]=c.exports},"802f":function(e,t,a){"use strict";(function(e){a("bdbd"),a("921b");n(a("66fd"));var t=n(a("4834"));function n(e){return e&&e.__esModule?e:{default:e}}e(t.default)}).call(this,a("543d")["createPage"])},"9a68":function(e,t,a){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;o(a("59df"));var n,r=o(a("b5cf")),i=a("0dee");function o(e){return e&&e.__esModule?e:{default:e}}function s(e){if("undefined"===typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=l(e))){var t=0,a=function(){};return{s:a,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,r,i=!0,o=!1;return{s:function(){n=e[Symbol.iterator]()},n:function(){var e=n.next();return i=e.done,e},e:function(e){o=!0,r=e},f:function(){try{i||null==n.return||n.return()}finally{if(o)throw r}}}}function l(e,t){if(e){if("string"===typeof e)return u(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(a):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?u(e,t):void 0}}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,n=new Array(t);a<t;a++)n[a]=e[a];return n}var c=null,d=null,f=null,h={data:function(){return{cWidth:"",cHeight:"",pixelRatio:1,textarea:"",ordinatearr:[],montharr:[],monthmin:"",monthmax:"",monthnum:"",quartermax:"",quartermin:"",quarternum:"",yearnum:"",yearmax:"",yearmin:"",yeararr:[],ordinateyeararr:[]}},onLoad:function(){n=this,this.cWidth=e.upx2px(750),this.cHeight=e.upx2px(500),this.getServerDatamonth(),this.getServerData(),this.getServerDatayear()},methods:{getServerDatamonth:function(){var t=this,a=e.getStorageSync("userid");console.log(a),e.request({url:"http://39.105.61.115:1912/api/project/Get_RptDataaudit?fuserid="+a+"&type=month",data:{},success:function(e){console.log(e);var a=new Date,r=a.getMonth()+1,i=[];if(console.log(r),1==r||3==r||5==r||7==r||8==r||10==r||12==r)for(var o=1;o<=31;o++)o<10?i.push("0"+o):i.push(o);else if(28==r)for(o=1;o<=28;o++)o<10?i.push("0"+o):i.push(o);else if(29==r)for(o=1;o<=29;o++)o<10?i.push("0"+o):i.push(o);else for(o=1;o<=30;o++)o<10?i.push("0"+o):i.push(o);t.ordinatearr=i;var l,u=e.data,c=s(u);try{for(c.s();!(l=c.n()).done;){var d=l.value;d.data=d.data.split("-"),d.value=d.data[2]}}catch(y){c.e(y)}finally{c.f()}console.log(u.length);var f=[];for(o=0;o<t.ordinatearr.length;o++){f[o]=0;for(var h=0;h<u.length;h++)u[h].value==t.ordinatearr[o]&&(console.log(u[h].value),f[o]=u[h].count)}console.log(f);var g=Math.max.apply(this,f),p=Math.min.apply(this,f);if(0==p)var m=Number(g-p);else m=Number(g-p)+1;t.monthnum=m,t.monthnum>=20&&(t.monthnum=8),t.monthmax=g,t.monthmin=p,t.montharr=f;var v={categories:[],series:[]};d={categories:t.ordinatearr,series:[{name:"本月",data:t.montharr}]};v.categories=d.categories,v.series=d.series,n.textarea=JSON.stringify(d),n.showLineA("canvasLineA",v)},fail:function(){n.tips="网络错误,小程序端请检查合法域名"}})},getServerData:function(){var t=this,a=e.getStorageSync("userid");console.log(a),e.request({url:"http://39.105.61.115:1912/api/project/Get_RptDataaudit?fuserid=13240379243&type=quarter",data:{},success:function(e){console.log("本季度",e);var a=new Date,r=a.getMonth()+1,i=[];console.log(r);var o,l=s(e.data);try{for(l.s();!(o=l.n()).done;){var u=o.value;i.push(u.data)}}catch(y){l.e(y)}finally{l.f()}t.ordinatearr=i;var c,d=[],f=e.data,h=s(f);try{for(h.s();!(c=h.n()).done;){u=c.value;d.push(u.count)}}catch(y){h.e(y)}finally{h.f()}var g=Math.max.apply(this,d),p=Math.min.apply(this,d);if(0==p)var m=Number(g-p);else m=Number(g-p)+1;t.quarternum=m,t.quarternum>=20&&(t.quarternum=8),console.log("00998877",t.quarternum),console.log(p),t.quartermax=g,t.quartermin=p,t.montharr=d;var v={categories:[],series:[]};u={categories:t.ordinatearr,series:[{name:"本季度",data:t.montharr}]};v.categories=u.categories,v.series=u.series,n.textarea=JSON.stringify(u),n.showLineB("canvasLineB",v)},fail:function(){n.tips="网络错误,小程序端请检查合法域名"}})},getServerDatayear:function(){var t=this,a=e.getStorageSync("userid");e.request({url:"http://39.105.61.115:1912/api/project/Get_RptDataaudit?fuserid="+a+"&type=year",data:{},success:function(e){console.log("本年",e);for(var a=[],r=1;r<=12;r++)r<10?a.push("0"+r):a.push(r);t.ordinateyeararr=a;var i,o=e.data,l=s(o);try{for(l.s();!(i=l.n()).done;){var u=i.value;u.data=u.data.split("-"),u.value=u.data[1]}}catch(m){l.e(m)}finally{l.f()}var c=[];for(r=0;r<t.ordinateyeararr.length;r++){c[r]=0;for(var d=0;d<o.length;d++)o[d].value==t.ordinateyeararr[r]&&(console.log(o[d].value),c[r]=o[d].count)}console.log("年度",c);var f=Math.max.apply(this,c),h=Math.min.apply(this,c),g="";g=0==h?Number(f-h):Number(f-h)+1,console.log("0998766",g),t.yearnum=g,t.yearnum>=20&&(t.yearnum=8),console.log(f),console.log(h),t.yearmax=f,t.yearmin=h,t.yeararr=c;var p={categories:[],series:[]};u={categories:t.ordinateyeararr,series:[{name:"本年",data:t.yeararr}]};p.categories=u.categories,p.series=u.series,n.textarea=JSON.stringify(u),n.showLineC("canvasLineC",p)},fail:function(){n.tips="网络错误,小程序端请检查合法域名"}})},showLineA:function(e,t){var a=this;c=new r.default({$this:n,canvasId:e,type:"line",fontSize:11,padding:[15,15,0,15],legend:{show:!0,padding:5,lineHeight:11,margin:15},dataLabel:!0,dataPointShape:!0,dataPointShapeType:"hollow",background:"#FFFFFF",pixelRatio:n.pixelRatio,categories:t.categories,series:t.series,animation:!0,enableScroll:!0,xAxis:{disableGrid:!1,type:"grid",gridType:"dash",itemCount:4,scrollShow:!0,scrollAlign:"left"},yAxis:{gridType:"dash",splitNumber:a.monthnum,min:a.monthmin,max:a.monthmax,format:function(e){return e.toFixed(0)}},width:n.cWidth*n.pixelRatio,height:n.cHeight*n.pixelRatio,extra:{line:{type:"straight"}}})},touchLineA:function(e){c.scrollStart(e)},moveLineA:function(e){c.scroll(e)},touchEndLineA:function(e){c.scrollEnd(e),c.touchLegend(e),c.showToolTip(e,{format:function(e,t){return t+" "+e.name+":"+e.data}})},changeDataF:function(){if((0,i.isJSON)(n.textarea)){var t=JSON.parse(n.textarea);c.updateData({series:t.series,categories:t.categories,scrollPosition:"right",animation:!1})}else e.showToast({title:"数据格式错误",image:"../../../static/images/alert-warning.png"})},showLineB:function(e,t){var a=this;d=new r.default({$this:n,canvasId:e,type:"line",fontSize:11,padding:[15,15,0,15],legend:{show:!0,padding:5,lineHeight:11,margin:15},dataLabel:!0,dataPointShape:!0,dataPointShapeType:"hollow",background:"#FFFFFF",pixelRatio:n.pixelRatio,categories:t.categories,series:t.series,animation:!0,enableScroll:!0,xAxis:{disableGrid:!1,type:"grid",gridType:"dash",itemCount:4,scrollShow:!0,scrollAlign:"left"},yAxis:{gridType:"dash",splitNumber:a.quarternum,min:a.quartermin,max:a.quartermax,format:function(e){return e.toFixed(0)}},width:n.cWidth*n.pixelRatio,height:n.cHeight*n.pixelRatio,extra:{line:{type:"straight"}}})},touchLineB:function(e){d.scrollStart(e)},moveLineB:function(e){d.scroll(e)},touchEndLineB:function(e){d.scrollEnd(e),d.touchLegend(e),d.showToolTip(e,{format:function(e,t){return t+" "+e.name+":"+e.data}})},changeDataH:function(){if((0,i.isJSON)(n.textarea)){var t=JSON.parse(n.textarea);d.updateData({series:t.series,categories:t.categories,scrollPosition:"right",animation:!1})}else e.showToast({title:"数据格式错误",image:"../../../static/images/alert-warning.png"})},showLineC:function(e,t){var a=this;f=new r.default({$this:n,canvasId:e,type:"line",fontSize:11,padding:[15,15,0,15],legend:{show:!0,padding:5,lineHeight:11,margin:15},dataLabel:!0,dataPointShape:!0,dataPointShapeType:"hollow",background:"#FFFFFF",pixelRatio:n.pixelRatio,categories:t.categories,series:t.series,animation:!0,enableScroll:!0,xAxis:{disableGrid:!1,type:"grid",gridType:"dash",itemCount:6,scrollShow:!0,scrollAlign:"left"},yAxis:{gridType:"dash",splitNumber:a.yearnum,min:a.yearmin,max:a.yearmax,format:function(e){return e.toFixed(0)}},width:n.cWidth*n.pixelRatio,height:n.cHeight*n.pixelRatio,extra:{line:{type:"straight"}}})},touchLineC:function(e){f.scrollStart(e)},moveLineC:function(e){f.scroll(e)},touchEndLineC:function(e){f.scrollEnd(e),f.touchLegend(e),f.showToolTip(e,{format:function(e,t){return t+" "+e.name+":"+e.data}})},changeDatak:function(){if((0,i.isJSON)(n.textarea)){var t=JSON.parse(n.textarea);f.updateData({series:t.series,categories:t.categories,scrollPosition:"right",animation:!1})}else e.showToast({title:"数据格式错误",image:"../../../static/images/alert-warning.png"})}}};t.default=h}).call(this,a("543d")["default"])},b52b:function(e,t,a){"use strict";var n=a("dd33"),r=a.n(n);r.a},d869:function(e,t,a){},dd33:function(e,t,a){}},[["802f","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.qiun-charts{width:750rpx;height:500rpx;background-color:#fff}.charts{width:750rpx;height:500rpx;background-color:#fff}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.qiun-charts{width:750rpx;height:500rpx;background-color:#fff}.charts{width:750rpx;height:500rpx;background-color:#fff}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuleixinghui/xiangmuleixinghui"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"15ca":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9")),i=o(n("079c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return c(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(t,e):void 0}}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var s={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],projectname:"项目类型",danweiname:"评审类型",yearindex:-1,startdate:"开始时间",endate:"结束时间",index:0,yeararr:[],danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!0,fid:""}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_PrjtypecategorySum",o={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;c.auduitsum=i.default.change(c.auduitsum),c.amountsum=i.default.change(c.amountsum),c.freesum=i.default.change(c.freesum)}}catch(s){u.e(s)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},detail:function(e){console.log(e),this.fid=e.target.dataset.id,t.navigateTo({url:"../xiangmuleixinghuidetail/xiangmuleixinghuidetail?fid="+this.fid})},getdetail:function(){var t=this;console.log(9988776655);var e="project/Get_Prjtypecategory",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=s}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1ce2":function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},3061:function(t,e,n){"use strict";var a=n("1ce2"),i=n.n(a);i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,c,s=n("f0c5"),l=Object(s["a"])(a["default"],o,r,!1,null,null,null,!1,u,c);e["default"]=l.exports},"59f0":function(t,e,n){"use strict";n.r(e);var a=n("abfa"),i=n("62f5");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("3061");var r,u=n("f0c5"),c=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},"62f5":function(t,e,n){"use strict";n.r(e);var a=n("15ca"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"89e6":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("59f0"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},abfa:function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))}},[["89e6","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuleixinghui/xiangmuleixinghui"],{"1bdc":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df")),i=o(n("b86c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],projectname:"项目类型",danweiname:"评审类型",yearindex:-1,startdate:"开始时间",endate:"结束时间",index:0,yeararr:[],danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!0,fid:""}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_PrjtypecategorySum",o={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=i.default.change(s.auduitsum),s.amountsum=i.default.change(s.amountsum),s.freesum=i.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},detail:function(e){console.log(e),this.fid=e.target.dataset.id,t.navigateTo({url:"../xiangmuleixinghuidetail/xiangmuleixinghuidetail?fid="+this.fid})},getdetail:function(){var t=this;console.log(9988776655);var e="project/Get_Prjtypecategory",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},5078:function(t,e,n){"use strict";var a=n("d72b"),i=n.n(a);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"658f":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("ae63"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"762a":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},a142:function(t,e,n){"use strict";n.r(e);var a=n("1bdc"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},ae63:function(t,e,n){"use strict";n.r(e);var a=n("762a"),i=n("a142");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("5078");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},d72b:function(t,e,n){},d869:function(t,e,n){}},[["658f","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:100rpx;text-align:center;margin-left:92rpx}.songshen{width:200rpx;text-align:center;margin-left:60rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:100rpx;text-align:center;margin-left:92rpx}.songshen{width:200rpx;text-align:center;margin-left:60rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;margin-left:65rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;margin-left:65rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuleixinghuidetail/xiangmuleixinghuidetail"],{"0678":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1be4":function(t,e,n){"use strict";n.r(e);var a=n("b872"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,c,s=n("f0c5"),l=Object(s["a"])(a["default"],o,r,!1,null,null,null,!1,u,c);e["default"]=l.exports},"53c7":function(t,e,n){},5931:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("cc39"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"862f":function(t,e,n){"use strict";var a=n("53c7"),i=n.n(a);i.a},b872:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9")),i=o(n("079c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return c(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(t,e):void 0}}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var s={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!1,fid:""}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_PrjtypecategorySum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../zixundanweihuitail/zixundanweihuidetail?fid="+this.fid})},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Prjtypecategory",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log("9988776655",o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;c.fauditamount=i.default.change(c.fauditamount),c.fshenjianmoney=i.default.change(c.fshenjianmoney),c.ftoauditamt=i.default.change(c.ftoauditamt),c.fsubmitfindate=c.fsubmitfindate.split("T"),c.fsubmitfindate=c.fsubmitfindate[0]}}catch(s){u.e(s)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=s}).call(this,n("543d")["default"])},cc39:function(t,e,n){"use strict";n.r(e);var a=n("0678"),i=n("1be4");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("862f");var r,u=n("f0c5"),c=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports}},[["5931","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuleixinghuidetail/xiangmuleixinghuidetail"],{"1c40":function(t,e,n){"use strict";n.r(e);var a=n("431e"),i=n("600d");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("5c69");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},3229:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df")),i=o(n("b86c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",huizong:!1,fid:""}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_PrjtypecategorySum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(e){this.fid=e.target.dataset.id,t.navigateTo({url:"../zixundanweihuitail/zixundanweihuidetail?fid="+this.fid})},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Prjtypecategory",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log("9988776655",o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},"431e":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"5c69":function(t,e,n){"use strict";var a=n("b555"),i=n.n(a);i.a},"600d":function(t,e,n){"use strict";n.r(e);var a=n("3229"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},b555:function(t,e,n){},c510:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("1c40"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},d869:function(t,e,n){}},[["c510","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.detailname{width:120rpx;text-align:center;color:#0093ff;fotn-size:24rpx;margin-left:20rpx}.itemdate{width:180rpx;text-align:center;margin-left:10rpx}.shenmoney{width:140rpx;text-align:center;margin-left:1rpx}.shenyear{width:100rpx;text-align:center;margin-left:10rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.detailname{width:120rpx;text-align:center;color:#0093ff;fotn-size:24rpx;margin-left:20rpx}.itemdate{width:180rpx;text-align:center;margin-left:10rpx}.shenmoney{width:140rpx;text-align:center;margin-left:1rpx}.shenyear{width:100rpx;text-align:center;margin-left:10rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuprogress/xiangmuprogress"],{"0875":function(t,e,n){"use strict";var o,a=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return o}))},"0aa0":function(t,e,n){"use strict";var o=n("1604"),a=n.n(o);a.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var a=this,i=new Promise((function(i,r){var c=t.getStorageSync("token"),u={token:c||""};t.request({url:a.globalData.baseUrl+e,data:n,method:o,header:u,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},2810:function(t,e,n){"use strict";n.r(e);var o=n("381e"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("0aa0");var i,r,c,u,f=n("f0c5"),s=Object(f["a"])(o["default"],i,r,!1,null,null,null,!1,c,u);e["default"]=s.exports},"381e":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=i(n("30b9")),a=i(n("079c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,i=!0,r=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){r=!0,a=t},f:function(){try{i||null==o.return||o.return()}finally{if(r)throw a}}}}function c(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var f={data:function(){return{selshow:!1,statusBarH:this.statusBar,customBarH:this.customBar,item:"",projectjiejian:[],pingshenlist:[],projectbaogaolist:[],advice:""}},onLoad:function(t){var e=JSON.parse(t.item);e.fsubmitfindate=e.fsubmitfindate.split("T"),e.fsubmitfindate=e.fsubmitfindate[0],this.item=e;var n=this.item;n.ftoauditamt=a.default.change(n.ftoauditamt),n.fditoauditamt=a.default.change(n.fditoauditamt),n.fauditamount=a.default.change(n.fauditamount),n.fshenjianmoney=a.default.change(n.fshenjianmoney),n.fextoauditamt=a.default.change(n.fextoauditamt),n.fexauditamount=a.default.change(n.fexauditamount),n.fexshenjianmoney=a.default.change(n.fexshenjianmoney),this.item=n,console.log("数据显示",this.item),this.project(),this.pingshenproject(),this.projectbaogao(),this.getadvice()},onShow:function(){},onLaunch:function(){},methods:{selectxuan:function(){console.log(888),this.selshow=!this.selshow},getadvice:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_Processedtimedoc",n={fid:t.item.fid};o.default.post(e,n,"get").then((function(e){console.log("专家意见",e),t.advice=e.data,console.log(t.advice)})).catch((function(t){console.log(t)}))},project:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_bd_prjcomponentlv",n={fid:t.item.fid,fname:"项目接件"};o.default.post(e,n,"get").then((function(e){console.log(e),t.projectjiejian=e.data;var n,o=t.projectjiejian,a=r(o);try{for(a.s();!(n=a.n()).done;){var i=n.value;i.fprocessmemotime=i.fprocessmemotime.split("T"),i.fprocessmemotime=i.fprocessmemotime[0]}}catch(c){a.e(c)}finally{a.f()}t.projectjiejian=o,console.log(t.projectjiejian.length)})).catch((function(t){console.log(t)}))},pingshenproject:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_bd_prjcomponentlv",n={fid:t.item.fid,fname:"评审过程"};o.default.post(e,n,"get").then((function(e){t.pingshenlist=e.data,console.log("评审过程",e);var n,o=t.pingshenlist,a=r(o);try{for(a.s();!(n=a.n()).done;){var i=n.value;i.fprocessmemotime1=i.fprocessmemotime1.split("T"),i.fprocessmemotime1=i.fprocessmemotime1[0]}}catch(c){a.e(c)}finally{a.f()}t.pingshenlist=o})).catch((function(t){console.log(t)}))},projectbaogao:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_bd_prjcomponentlv",n={fid:t.item.fid,fname:"评审报告"};o.default.post(e,n,"get").then((function(e){t.projectbaogaolist=e.data;var n,o=t.projectbaogaolist,a=r(o);try{for(a.s();!(n=a.n()).done;){var i=n.value;i.fprocessmemotime3=i.fprocessmemotime3.split("T"),i.fprocessmemotime3=i.fprocessmemotime3[0]}}catch(c){a.e(c)}finally{a.f()}t.projectbaogaolist=o,console.log("评审报告",t.projectbaogaolist)})).catch((function(t){console.log(t)}))}}};e.default=f},"6d2f":function(t,e,n){},af60:function(t,e,n){"use strict";var o=n("6d2f"),a=n.n(o);a.a},bdbe:function(t,e,n){"use strict";n.r(e);var o=n("0875"),a=n("2810");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("af60");var r,c=n("f0c5"),u=Object(c["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=u.exports},cc95:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("bdbe"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["cc95","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuprogress/xiangmuprogress"],{"073d":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("ffdb"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"4e90":function(t,e,n){"use strict";var o=n("d869"),a=n.n(o);a.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var a=this,i=new Promise((function(i,r){var c=t.getStorageSync("token"),f={token:c||""};t.request({url:a.globalData.baseUrl+e,data:n,method:o,header:f,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("4e90");var i,r,c,f,u=n("f0c5"),s=Object(u["a"])(o["default"],i,r,!1,null,null,null,!1,c,f);e["default"]=s.exports},7478:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=i(n("59df")),a=i(n("b86c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,i=!0,r=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){r=!0,a=t},f:function(){try{i||null==o.return||o.return()}finally{if(r)throw a}}}}function c(t,e){if(t){if("string"===typeof t)return f(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(t,e):void 0}}function f(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{selshow:!1,statusBarH:this.statusBar,customBarH:this.customBar,item:"",projectjiejian:[],pingshenlist:[],projectbaogaolist:[],advice:""}},onLoad:function(t){var e=JSON.parse(t.item);e.fsubmitfindate=e.fsubmitfindate.split("T"),e.fsubmitfindate=e.fsubmitfindate[0],this.item=e;var n=this.item;n.ftoauditamt=a.default.change(n.ftoauditamt),n.fditoauditamt=a.default.change(n.fditoauditamt),n.fauditamount=a.default.change(n.fauditamount),n.fshenjianmoney=a.default.change(n.fshenjianmoney),n.fextoauditamt=a.default.change(n.fextoauditamt),n.fexauditamount=a.default.change(n.fexauditamount),n.fexshenjianmoney=a.default.change(n.fexshenjianmoney),this.item=n,console.log("数据显示",this.item),this.project(),this.pingshenproject(),this.projectbaogao(),this.getadvice()},onShow:function(){},onLaunch:function(){},methods:{selectxuan:function(){console.log(888),this.selshow=!this.selshow},getadvice:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_Processedtimedoc",n={fid:t.item.fid};o.default.post(e,n,"get").then((function(e){console.log("专家意见",e),t.advice=e.data,console.log(t.advice)})).catch((function(t){console.log(t)}))},project:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_bd_prjcomponentlv",n={fid:t.item.fid,fname:"项目接件"};o.default.post(e,n,"get").then((function(e){console.log(e),t.projectjiejian=e.data;var n,o=t.projectjiejian,a=r(o);try{for(a.s();!(n=a.n()).done;){var i=n.value;i.fprocessmemotime=i.fprocessmemotime.split("T"),i.fprocessmemotime=i.fprocessmemotime[0]}}catch(c){a.e(c)}finally{a.f()}t.projectjiejian=o,console.log(t.projectjiejian.length)})).catch((function(t){console.log(t)}))},pingshenproject:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_bd_prjcomponentlv",n={fid:t.item.fid,fname:"评审过程"};o.default.post(e,n,"get").then((function(e){t.pingshenlist=e.data,console.log("评审过程",e);var n,o=t.pingshenlist,a=r(o);try{for(a.s();!(n=a.n()).done;){var i=n.value;i.fprocessmemotime1=i.fprocessmemotime1.split("T"),i.fprocessmemotime1=i.fprocessmemotime1[0]}}catch(c){a.e(c)}finally{a.f()}t.pingshenlist=o})).catch((function(t){console.log(t)}))},projectbaogao:function(){var t=this;console.log(9988776655,t.item.fid);var e="project/Get_bd_prjcomponentlv",n={fid:t.item.fid,fname:"评审报告"};o.default.post(e,n,"get").then((function(e){t.projectbaogaolist=e.data;var n,o=t.projectbaogaolist,a=r(o);try{for(a.s();!(n=a.n()).done;){var i=n.value;i.fprocessmemotime3=i.fprocessmemotime3.split("T"),i.fprocessmemotime3=i.fprocessmemotime3[0]}}catch(c){a.e(c)}finally{a.f()}t.projectbaogaolist=o,console.log("评审报告",t.projectbaogaolist)})).catch((function(t){console.log(t)}))}}};e.default=u},9874:function(t,e,n){"use strict";var o,a=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return o}))},bddb:function(t,e,n){"use strict";var o=n("fac9"),a=n.n(o);a.a},d869:function(t,e,n){},e770:function(t,e,n){"use strict";n.r(e);var o=n("7478"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},fac9:function(t,e,n){},ffdb:function(t,e,n){"use strict";n.r(e);var o=n("9874"),a=n("e770");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("bddb");var r,c=n("f0c5"),f=Object(c["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=f.exports}},[["073d","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#fff}.box{background:#f9f9f9;padding:0 32rpx;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.advicetext{color:#3d444d;font-size:24rpx;padding:32rpx;box-sizing:border-box;line-height:1.5}.jibenhead{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.jibenleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.jibenright{width:88rpx;height:88rpx;fotn-size:0}.jibenright image{width:100%;height:100%}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:26rpx;font-weight:700}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:120rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center}.zixunshu{width:170rpx;margin-left:60rpx;text-align:left;color:#06121e;font-size:24rpx;line-height:1.4}.zixuntou{width:168rpx;height:40rpx;opacity:1;border-radius:8rpx;color:#06121e;font-size:24rpx;text-align:center;line-height:1.2;margin-left:40rpx}.zuxiangmu{color:#3d444d;font-size:26rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.caozuo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:20rpx}.caozuoleft{width:28rpx;height:28rpx;font-size:0}.caozuoleft image{width:100%;height:100%}.caozuoyou{margin-left:10rpx}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box;-webkit-justify-content:space-around;justify-content:space-around;border-bottom:2rpx solid #bdc4ce}.headitem{color:#06121e;font-size:28rpx;font-weight:700}.xiangmulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:22rpx 0 34rpx;box-sizing:border-box;border-bottom:1rpx solid #eee;background:#fff}.xiangmuhao{width:76rpx;color:#06121e;font-size:24rpx;text-align:center}.xiangming{width:150rpx;color:#06121e;font-size:24rpx;margin-left:4rpx;text-align:center;line-height:1.5}.pingshen{color:#06121e;font-size:24rpx;margin-left:10rpx;width:240rpx;text-align:center}.state{width:240rpx;color:#06121e;font-size:24rpx;margin-left:30rpx;line-height:1.4}.caozuoshuo{width:240rpx;text-align:center}.bianhao{width:15%;text-align:center;word-break:break-all}.jiedain{width:20%;text-align:center}.workcontent{width:30%;text-align:center}.worktime{width:20%;text-align:center}.workday{width:25%;text-align:center}.jiejian{padding:0 32rpx;box-sizing:border-box}.xiangmlist{box-sizing:border-box}.jiejian{background:#fff}.pjiedain{width:20%;margin-left:10rpx}.workcontentp{width:25%;text-align:center;margin-left:50rpx}.worktimep{width:25%;text-align:center}.noadvice{color:#999;font-size:30rpx;text-align:center;margin-top:40rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#fff}.box{background:#f9f9f9;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.advicetext{color:#3d444d;font-size:24rpx;padding:32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:1.5}.jibenhead{width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.jibenleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.jibenright{width:88rpx;height:88rpx;fotn-size:0}.jibenright image{width:100%;height:100%}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:26rpx;font-weight:700}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:120rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center}.zixunshu{width:170rpx;margin-left:60rpx;text-align:left;color:#06121e;font-size:24rpx;line-height:1.4}.zixuntou{width:168rpx;height:40rpx;opacity:1;border-radius:8rpx;color:#06121e;font-size:24rpx;text-align:center;line-height:1.2;margin-left:40rpx}.zuxiangmu{color:#3d444d;font-size:26rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.caozuo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:20rpx}.caozuoleft{width:28rpx;height:28rpx;font-size:0}.caozuoleft image{width:100%;height:100%}.caozuoyou{margin-left:10rpx}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-justify-content:space-around;justify-content:space-around;border-bottom:2rpx solid #bdc4ce}.headitem{color:#06121e;font-size:28rpx;font-weight:700}.xiangmulistitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:22rpx 0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee;background:#fff}.xiangmuhao{width:76rpx;color:#06121e;font-size:24rpx;text-align:center}.xiangming{width:150rpx;color:#06121e;font-size:24rpx;margin-left:4rpx;text-align:center;line-height:1.5}.pingshen{color:#06121e;font-size:24rpx;margin-left:10rpx;width:240rpx;text-align:center}.state{width:240rpx;color:#06121e;font-size:24rpx;margin-left:30rpx;line-height:1.4}.caozuoshuo{width:240rpx;text-align:center}.bianhao{width:15%;text-align:center;word-break:break-all}.jiedain{width:20%;text-align:center}.workcontent{width:30%;text-align:center}.worktime{width:20%;text-align:center}.workday{width:25%;text-align:center}.jiejian{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.xiangmlist{-webkit-box-sizing:border-box;box-sizing:border-box}.jiejian{background:#fff}.pjiedain{width:20%;margin-left:10rpx}.workcontentp{width:25%;text-align:center;margin-left:50rpx}.worktimep{width:25%;text-align:center}.noadvice{color:#999;font-size:30rpx;text-align:center;margin-top:40rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmutaizhang/xiangmutaizhang"],{"0387":function(t,e,n){"use strict";var a=n("de3f"),o=n.n(a);o.a},"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,c,l=n("f0c5"),s=Object(l["a"])(a["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=s.exports},"3de4":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},4831:function(t,e,n){"use strict";n.r(e);var a=n("3de4"),o=n("4c6d");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("0387");var r,u=n("f0c5"),c=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},"4c6d":function(t,e,n){"use strict";n.r(e);var a=n("a80e"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},a80e:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9"));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){u=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(u)throw o}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"咨询单位"}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{reset:function(){this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="咨询单位",this.yearindex=-1,this.fprojectcategory="",this.fintorg="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){t.danweilist=e.data,console.log(t.danweilist)})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",o={toaudit:"",fprojectcategory:e.fprojectcategory,fintorg:e.fintorg,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,document:"",fteam:""};console.log("8877665544",o),console.log(n),a.default.post(n,o,"get").then((function(n){console.log(n),t.xiangmulist=n.data;var a,o=t.xiangmulist,r=[],u=i(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;r.push(c)}}catch(s){u.e(s)}finally{u.f()}console.log("项目",r);var l=r.splice(-1);e.end=l;r.length;t.xiangmulist=r,console.log("显示数据源",t.xiangmulist)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;console.log(n),n=JSON.stringify(n),t.navigateTo({url:"../jieduantaizhang/jieduantaizhang?item="+n})}},onReachBottom:function(){console.log(999)}};e.default=c}).call(this,n("543d")["default"])},de3f:function(t,e,n){},e5d3:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("4831"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["e5d3","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmutaizhang/xiangmutaizhang"],{2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},3582:function(t,e,n){"use strict";n.r(e);var a=n("4099"),o=n("f708");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("dd5c");var r,u=n("f0c5"),c=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},4099:function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,c,l=n("f0c5"),s=Object(l["a"])(a["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=s.exports},"5d27":function(t,e,n){},"5f5d":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("3582"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"87d1":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df"));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){u=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(u)throw o}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"咨询单位"}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{reset:function(){this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="咨询单位",this.yearindex=-1,this.fprojectcategory="",this.fintorg="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){t.danweilist=e.data,console.log(t.danweilist)})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",o={toaudit:"",fprojectcategory:e.fprojectcategory,fintorg:e.fintorg,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,document:"",fteam:""};console.log("8877665544",o),console.log(n),a.default.post(n,o,"get").then((function(n){console.log(n),t.xiangmulist=n.data;var a,o=t.xiangmulist,r=[],u=i(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;r.push(c)}}catch(s){u.e(s)}finally{u.f()}console.log("项目",r);var l=r.splice(-1);e.end=l;r.length;t.xiangmulist=r,console.log("显示数据源",t.xiangmulist)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;console.log(n),n=JSON.stringify(n),t.navigateTo({url:"../jieduantaizhang/jieduantaizhang?item="+n})}},onReachBottom:function(){console.log(999)}};e.default=c}).call(this,n("543d")["default"])},d869:function(t,e,n){},dd5c:function(t,e,n){"use strict";var a=n("5d27"),o=n.n(a);o.a},f708:function(t,e,n){"use strict";n.r(e);var a=n("87d1"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a}},[["5f5d","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;-webkit-box-shadow:0 6px 6px rgba(0,0,0,.03);box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuzutaizhang/xiangmuzutaizhang"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"26fd":function(t,e,n){},"2a47":function(t,e,n){"use strict";var a=n("26fd"),o=n.n(a);o.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,c,l=n("f0c5"),s=Object(l["a"])(a["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=s.exports},5123:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9"));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){u=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(u)throw o}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"项目组"}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="项目组",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo="",this.fteam=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_Fteam";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data,console.log(t.danweilist)})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",o={toaudit:"fteam",document:"",fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fteam:e.fintorg,fintorg:""};console.log("8877665544",o),a.default.post(n,o,"get").then((function(n){console.log(n),t.xiangmulist=n.data;var a,o=t.xiangmulist,r=[],u=i(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;r.push(c)}}catch(s){u.e(s)}finally{u.f()}var l=r.splice(-1);e.end=l,t.xiangmulist=r,console.log(typeof r)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;n=JSON.stringify(n),console.log(n),t.navigateTo({url:"../zhugauntaidetail/zhugauntaidetail?item="+n+"&type=6"})}},onReachBottom:function(){console.log(999)}};e.default=c}).call(this,n("543d")["default"])},"54bd":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},9503:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("af37"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},af37:function(t,e,n){"use strict";n.r(e);var a=n("54bd"),o=n("f1db");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("2a47");var r,u=n("f0c5"),c=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},f1db:function(t,e,n){"use strict";n.r(e);var a=n("5123"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a}},[["9503","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/xiangmuzutaizhang/xiangmuzutaizhang"],{"1ff0":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df"));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){u=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(u)throw o}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"项目组"}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="项目组",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo="",this.fteam=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_Fteam";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data,console.log(t.danweilist)})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",o={toaudit:"fteam",document:"",fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fteam:e.fintorg,fintorg:""};console.log("8877665544",o),a.default.post(n,o,"get").then((function(n){console.log(n),t.xiangmulist=n.data;var a,o=t.xiangmulist,r=[],u=i(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;r.push(c)}}catch(s){u.e(s)}finally{u.f()}var l=r.splice(-1);e.end=l,t.xiangmulist=r,console.log(typeof r)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;n=JSON.stringify(n),console.log(n),t.navigateTo({url:"../zhugauntaidetail/zhugauntaidetail?item="+n+"&type=6"})}},onReachBottom:function(){console.log(999)}};e.default=c}).call(this,n("543d")["default"])},2095:function(t,e,n){},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"3b0b":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("91ae"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,c,l=n("f0c5"),s=Object(l["a"])(a["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=s.exports},"69ab":function(t,e,n){"use strict";var a=n("2095"),o=n.n(a);o.a},"91ae":function(t,e,n){"use strict";n.r(e);var a=n("d48b"),o=n("d725");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("69ab");var r,u=n("f0c5"),c=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},d48b:function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},d725:function(t,e,n){"use strict";n.r(e);var a=n("1ff0"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},d869:function(t,e,n){}},[["3b0b","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;-webkit-box-shadow:0 6px 6px rgba(0,0,0,.03);box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/yinsi/yinsi"],{"16f6":function(n,t,o){"use strict";(function(n){o("a237"),o("921b");e(o("66fd"));var t=e(o("bd16"));function e(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,o("543d")["createPage"])},"2dad":function(n,t,o){},"4b28":function(n,t,o){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o={data:function(){return{}},methods:{},onLoad:function(t){1==t.id?n.setNavigationBarTitle({title:"用户协议",icon:"none"}):n.setNavigationBarTitle({title:"隐私政策",icon:"none"})},onLaunch:function(){console.log("App Launch,app启动")},onShow:function(){console.log("App Show,app展现在前台")},onHide:function(){console.log("App Hide,app不再展现在前台")}};t.default=o}).call(this,o("543d")["default"])},"5cd6":function(n,t,o){"use strict";o.r(t);var e=o("4b28"),u=o.n(e);for(var c in e)"default"!==c&&function(n){o.d(t,n,(function(){return e[n]}))}(c);t["default"]=u.a},7888:function(n,t,o){"use strict";var e=o("2dad"),u=o.n(e);u.a},bd16:function(n,t,o){"use strict";o.r(t);var e=o("c396"),u=o("5cd6");for(var c in u)"default"!==c&&function(n){o.d(t,n,(function(){return u[n]}))}(c);o("7888");var i,a=o("f0c5"),r=Object(a["a"])(u["default"],e["b"],e["c"],!1,null,null,null,!1,e["a"],i);t["default"]=r.exports},c396:function(n,t,o){"use strict";var e,u=function(){var n=this,t=n.$createElement;n._self._c},c=[];o.d(t,"b",(function(){return u})),o.d(t,"c",(function(){return c})),o.d(t,"a",(function(){return e}))}},[["16f6","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/yinsi/yinsi"],{"07f9":function(n,t,e){"use strict";e.r(t);var o=e("5d4b"),u=e.n(o);for(var c in o)"default"!==c&&function(n){e.d(t,n,(function(){return o[n]}))}(c);t["default"]=u.a},1168:function(n,t,e){"use strict";var o=e("f3be"),u=e.n(o);u.a},"5c42":function(n,t,e){"use strict";(function(n){e("bdbd"),e("921b");o(e("66fd"));var t=o(e("5e4c"));function o(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},"5d4b":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={data:function(){return{}},methods:{},onLoad:function(t){1==t.id?n.setNavigationBarTitle({title:"用户协议",icon:"none"}):n.setNavigationBarTitle({title:"隐私政策",icon:"none"})},onLaunch:function(){console.log("App Launch,app启动")},onShow:function(){console.log("App Show,app展现在前台")},onHide:function(){console.log("App Hide,app不再展现在前台")}};t.default=e}).call(this,e("543d")["default"])},"5e4c":function(n,t,e){"use strict";e.r(t);var o=e("68a3"),u=e("07f9");for(var c in u)"default"!==c&&function(n){e.d(t,n,(function(){return u[n]}))}(c);e("1168");var i,a=e("f0c5"),f=Object(a["a"])(u["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);t["default"]=f.exports},"68a3":function(n,t,e){"use strict";var o,u=function(){var n=this,t=n.$createElement;n._self._c},c=[];e.d(t,"b",(function(){return u})),e.d(t,"c",(function(){return c})),e.d(t,"a",(function(){return o}))},f3be:function(n,t,e){}},[["5c42","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/yusuantaidetail/yusuantaidetail"],{"0290":function(t,n,e){},"0aa0":function(t,n,e){"use strict";var a=e("1604"),u=e.n(a);u.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,a){var u=this,i=new Promise((function(i,o){var f=t.getStorageSync("token"),c={token:f||""};t.request({url:u.globalData.baseUrl+n,data:e,method:a,header:c,success:function(t){200==t.statusCode?i(t):o(t.data)},fail:function(t){console.log(t),o("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"14f0":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;u(e("30b9"));var a=u(e("079c"));function u(t){return t&&t.__esModule?t:{default:t}}var i={data:function(){return{item:""}},onLoad:function(n){console.log(n),this.item=JSON.parse(n.item);var e=this.item;e.ftoauditamt=a.default.change(e.ftoauditamt),e.fshenjianmoney=a.default.change(e.fshenjianmoney),e.fauditamount=a.default.change(e.fauditamount),e.fsubmitfindate=e.fsubmitfindate.split("T"),e.fsubmitfindate=e.fsubmitfindate[0],this.item=e,console.log(this.item),1==n.type?t.setNavigationBarTitle({title:"预算项目台账"}):2==n.type?t.setNavigationBarTitle({title:"结算项目台账"}):3==n.type&&t.setNavigationBarTitle({title:"决算项目台账"})},methods:{}};n.default=i}).call(this,e("543d")["default"])},1604:function(t,n,e){},"1f18":function(t,n,e){"use strict";e.r(n);var a=e("0c9c"),u=e.n(a);for(var i in a)"default"!==i&&function(t){e.d(n,t,(function(){return a[t]}))}(i);n["default"]=u.a},"258f":function(t,n,e){"use strict";var a,u=function(){var t=this,n=t.$createElement;t._self._c},i=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return i})),e.d(n,"a",(function(){return a}))},"30b9":function(t,n,e){"use strict";e.r(n);var a=e("1f18");for(var u in a)"default"!==u&&function(t){e.d(n,t,(function(){return a[t]}))}(u);e("0aa0");var i,o,f,c,l=e("f0c5"),r=Object(l["a"])(a["default"],i,o,!1,null,null,null,!1,f,c);n["default"]=r.exports},"8b8a":function(t,n,e){"use strict";(function(t){e("a237"),e("921b");a(e("66fd"));var n=a(e("fdb4"));function a(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},eaa4:function(t,n,e){"use strict";var a=e("0290"),u=e.n(a);u.a},f3ae:function(t,n,e){"use strict";e.r(n);var a=e("14f0"),u=e.n(a);for(var i in a)"default"!==i&&function(t){e.d(n,t,(function(){return a[t]}))}(i);n["default"]=u.a},fdb4:function(t,n,e){"use strict";e.r(n);var a=e("258f"),u=e("f3ae");for(var i in u)"default"!==i&&function(t){e.d(n,t,(function(){return u[t]}))}(i);e("eaa4");var o,f=e("f0c5"),c=Object(f["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],o);n["default"]=c.exports}},[["8b8a","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/yusuantaidetail/yusuantaidetail"],{"1f38":function(t,n,e){"use strict";e.r(n);var a=e("35d4"),u=e("a509");for(var i in u)"default"!==i&&function(t){e.d(n,t,(function(){return u[t]}))}(i);e("526f");var o,f=e("f0c5"),l=Object(f["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],o);n["default"]=l.exports},2166:function(t,n,e){"use strict";e.r(n);var a=e("593d"),u=e.n(a);for(var i in a)"default"!==i&&function(t){e.d(n,t,(function(){return a[t]}))}(i);n["default"]=u.a},"35d4":function(t,n,e){"use strict";var a,u=function(){var t=this,n=t.$createElement;t._self._c},i=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return i})),e.d(n,"a",(function(){return a}))},"3f93":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;u(e("59df"));var a=u(e("b86c"));function u(t){return t&&t.__esModule?t:{default:t}}var i={data:function(){return{item:""}},onLoad:function(n){console.log(n),this.item=JSON.parse(n.item);var e=this.item;e.ftoauditamt=a.default.change(e.ftoauditamt),e.fshenjianmoney=a.default.change(e.fshenjianmoney),e.fauditamount=a.default.change(e.fauditamount),e.fsubmitfindate=e.fsubmitfindate.split("T"),e.fsubmitfindate=e.fsubmitfindate[0],this.item=e,console.log(this.item),1==n.type?t.setNavigationBarTitle({title:"预算项目台账"}):2==n.type?t.setNavigationBarTitle({title:"结算项目台账"}):3==n.type&&t.setNavigationBarTitle({title:"决算项目台账"})},methods:{}};n.default=i}).call(this,e("543d")["default"])},"4e90":function(t,n,e){"use strict";var a=e("d869"),u=e.n(a);u.a},"526f":function(t,n,e){"use strict";var a=e("e158"),u=e.n(a);u.a},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,a){var u=this,i=new Promise((function(i,o){var f=t.getStorageSync("token"),l={token:f||""};t.request({url:u.globalData.baseUrl+n,data:e,method:a,header:l,success:function(t){200==t.statusCode?i(t):o(t.data)},fail:function(t){console.log(t),o("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var a=e("2166");for(var u in a)"default"!==u&&function(t){e.d(n,t,(function(){return a[t]}))}(u);e("4e90");var i,o,f,l,r=e("f0c5"),c=Object(r["a"])(a["default"],i,o,!1,null,null,null,!1,f,l);n["default"]=c.exports},a509:function(t,n,e){"use strict";e.r(n);var a=e("3f93"),u=e.n(a);for(var i in a)"default"!==i&&function(t){e.d(n,t,(function(){return a[t]}))}(i);n["default"]=u.a},d869:function(t,n,e){},e158:function(t,n,e){},eb2b:function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");a(e("66fd"));var n=a(e("1f38"));function a(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])}},[["eb2b","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:140rpx}.zuxiangmu{color:#3d444d;font-size:28rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:140rpx}.zuxiangmu{color:#3d444d;font-size:28rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/yusuantaizhang/yusuantaizhang"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"141d":function(t,e,n){"use strict";var a=n("1f15"),i=n.n(a);i.a},1604:function(t,e,n){},"1f15":function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"57ac":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("8bf3"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"8bf3":function(t,e,n){"use strict";n.r(e);var a=n("c730"),i=n("f46c");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("141d");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},"9e16":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("30b9"));function i(t){return t&&t.__esModule?t:{default:t}}function o(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){u=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(u)throw i}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var s={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"咨询单位",toaudit:"",type:""}},onLoad:function(e){this.type=e.type,1==e.type?(t.setNavigationBarTitle({title:"预算项目台账"}),this.toaudit="prj_toaudit_budget"):2==e.type?(t.setNavigationBarTitle({title:"结算项目台账"}),this.toaudit="prj_toaudit_settlement"):3==e.type?(t.setNavigationBarTitle({title:"决算项目台账"}),this.toaudit="prj_toaudit_change"):4==e.type&&(t.setNavigationBarTitle({title:"土地成本项目台帐"}),this.toaudit="prj_toaudit_land");var n=new Date,a=n.getFullYear();console.log(a);for(var i=a-19,o=i;o<=a;o++)this.yeararr.push(o);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="咨询单位",this.fprojectcategory="",this.fintorg="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){t.danweilist=e.data,console.log(JSON.stringify(t.danweilist))})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,fintorg:e.fintorg,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,document:"",fteam:""};console.log("8877665544",i),a.default.post(n,i,"get").then((function(n){t.xiangmulist=n.data;var a,i=t.xiangmulist,r=[],u=o(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;r.push(s)}}catch(l){u.e(l)}finally{u.f()}var c=r.splice(-1);e.end=c,t.xiangmulist=r,console.log(typeof r)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;console.log(n),n=JSON.stringify(n),t.navigateTo({url:"../yusuantaidetail/yusuantaidetail?item="+n+"&type="+this.type})}},onReachBottom:function(){console.log(999)}};e.default=s}).call(this,n("543d")["default"])},c730:function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},f46c:function(t,e,n){"use strict";n.r(e);var a=n("9e16"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a}},[["57ac","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/yusuantaizhang/yusuantaizhang"],{2073:function(t,e,n){"use strict";var a=n("acd8"),i=n.n(a);i.a},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},"4fb1":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("730f"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"730f":function(t,e,n){"use strict";n.r(e);var a=n("a353"),i=n("eb7f");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("2073");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},a353:function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},acd8:function(t,e,n){},c538:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("59df"));function i(t){return t&&t.__esModule?t:{default:t}}function o(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){u=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(u)throw i}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var s={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"咨询单位",toaudit:"",type:""}},onLoad:function(e){this.type=e.type,1==e.type?(t.setNavigationBarTitle({title:"预算项目台账"}),this.toaudit="prj_toaudit_budget"):2==e.type?(t.setNavigationBarTitle({title:"结算项目台账"}),this.toaudit="prj_toaudit_settlement"):3==e.type?(t.setNavigationBarTitle({title:"决算项目台账"}),this.toaudit="prj_toaudit_change"):4==e.type&&(t.setNavigationBarTitle({title:"土地成本项目台帐"}),this.toaudit="prj_toaudit_land");var n=new Date,a=n.getFullYear();console.log(a);for(var i=a-19,o=i;o<=a;o++)this.yeararr.push(o);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="咨询单位",this.fprojectcategory="",this.fintorg="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){t.danweilist=e.data,console.log(JSON.stringify(t.danweilist))})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,fintorg:e.fintorg,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,document:"",fteam:""};console.log("8877665544",i),a.default.post(n,i,"get").then((function(n){t.xiangmulist=n.data;var a,i=t.xiangmulist,r=[],u=o(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;r.push(s)}}catch(l){u.e(l)}finally{u.f()}var c=r.splice(-1);e.end=c,t.xiangmulist=r,console.log(typeof r)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;console.log(n),n=JSON.stringify(n),t.navigateTo({url:"../yusuantaidetail/yusuantaidetail?item="+n+"&type="+this.type})}},onReachBottom:function(){console.log(999)}};e.default=s}).call(this,n("543d")["default"])},d869:function(t,e,n){},eb7f:function(t,e,n){"use strict";n.r(e);var a=n("c538"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a}},[["4fb1","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;-webkit-box-shadow:0 6px 6px rgba(0,0,0,.03);box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiafenpei/zhuanjiafenpei"],{"00d9":function(n,t,e){},"0aa0":function(n,t,e){"use strict";var o=e("1604"),a=e.n(o);a.a},"0c9c":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,o){var a=this,r=new Promise((function(r,u){var i=n.getStorageSync("token"),c={token:i||""};n.request({url:a.globalData.baseUrl+t,data:e,method:o,header:c,success:function(n){200==n.statusCode?r(n):u(n.data)},fail:function(n){console.log(n),u("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},1604:function(n,t,e){},"1f18":function(n,t,e){"use strict";e.r(t);var o=e("0c9c"),a=e.n(o);for(var r in o)"default"!==r&&function(n){e.d(t,n,(function(){return o[n]}))}(r);t["default"]=a.a},"215e":function(n,t,e){"use strict";(function(n){e("a237"),e("921b");o(e("66fd"));var t=o(e("2d09"));function o(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},"2d09":function(n,t,e){"use strict";e.r(t);var o=e("782f"),a=e("85da");for(var r in a)"default"!==r&&function(n){e.d(t,n,(function(){return a[n]}))}(r);e("4191");var u,i=e("f0c5"),c=Object(i["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],u);t["default"]=c.exports},"30b9":function(n,t,e){"use strict";e.r(t);var o=e("1f18");for(var a in o)"default"!==a&&function(n){e.d(t,n,(function(){return o[n]}))}(a);e("0aa0");var r,u,i,c,f=e("f0c5"),l=Object(f["a"])(o["default"],r,u,!1,null,null,null,!1,i,c);t["default"]=l.exports},4191:function(n,t,e){"use strict";var o=e("00d9"),a=e.n(o);a.a},"432c":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=a(e("30b9"));function a(n){return n&&n.__esModule?n:{default:n}}function r(n){if("undefined"===typeof Symbol||null==n[Symbol.iterator]){if(Array.isArray(n)||(n=u(n))){var t=0,e=function(){};return{s:e,n:function(){return t>=n.length?{done:!0}:{done:!1,value:n[t++]}},e:function(n){throw n},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,r=!0,i=!1;return{s:function(){o=n[Symbol.iterator]()},n:function(){var n=o.next();return r=n.done,n},e:function(n){i=!0,a=n},f:function(){try{r||null==o.return||o.return()}finally{if(i)throw a}}}}function u(n,t){if(n){if("string"===typeof n)return i(n,t);var e=Object.prototype.toString.call(n).slice(8,-1);return"Object"===e&&n.constructor&&(e=n.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?i(n,t):void 0}}function i(n,t){(null==t||t>n.length)&&(t=n.length);for(var e=0,o=new Array(t);e<t;e++)o[e]=n[e];return o}var c={data:function(){return{selshow:!1,zhuanjialist:[],keyword:"",querylist:[]}},onLoad:function(){this.getzhuanjialist()},onshow:function(){},methods:{zhuanjiafen:function(t){console.log(t);var e=t.target.dataset.item;e=JSON.stringify(e),console.log(e),n.navigateTo({url:"../zhuanjiafenpeisec/zhuanjiafenpeisec?item="+e})},zhuanjiafensec:function(){n.navigateTo({url:"../zhuanjiafenpeisec/zhuanjiafenpeisec"})},enterxiangmu:function(n){console.log(n),this.keyword=n.target.value},getzhuanjialist:function(){var t=this,e="project/Get_ExDistribution",a={fuserid:n.getStorageSync("userid")};o.default.post(e,a,"get").then((function(n){t.zhuanjialist=n.data,t.querylist=n.data})).catch((function(n){console.log(n)}))},chaxun:function(){if(""==this.keyword)this.getzhuanjialist();else{var n,t=[],e=this.querylist,o=[],a=r(e);try{for(a.s();!(n=a.n()).done;){var u=n.value;o.push(u.fname)}}catch(f){a.e(f)}finally{a.f()}console.log("名称",o);for(var i=0;i<e.length;i++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==i&&t.push(e[i]);console.log("9999000777",t),this.zhuanjialist=t}}}};t.default=c}).call(this,e("543d")["default"])},"782f":function(n,t,e){"use strict";var o,a=function(){var n=this,t=n.$createElement;n._self._c},r=[];e.d(t,"b",(function(){return a})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){return o}))},"85da":function(n,t,e){"use strict";e.r(t);var o=e("432c"),a=e.n(o);for(var r in o)"default"!==r&&function(n){e.d(t,n,(function(){return o[n]}))}(r);t["default"]=a.a}},[["215e","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiafenpei/zhuanjiafenpei"],{"1fd7":function(n,t,e){"use strict";var a,o=function(){var n=this,t=n.$createElement;n._self._c},r=[];e.d(t,"b",(function(){return o})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){return a}))},2166:function(n,t,e){"use strict";e.r(t);var a=e("593d"),o=e.n(a);for(var r in a)"default"!==r&&function(n){e.d(t,n,(function(){return a[n]}))}(r);t["default"]=o.a},"48cc":function(n,t,e){},"4e90":function(n,t,e){"use strict";var a=e("d869"),o=e.n(a);o.a},"593d":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,a){var o=this,r=new Promise((function(r,u){var i=n.getStorageSync("token"),c={token:i||""};n.request({url:o.globalData.baseUrl+t,data:e,method:a,header:c,success:function(n){200==n.statusCode?r(n):u(n.data)},fail:function(n){console.log(n),u("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},"59df":function(n,t,e){"use strict";e.r(t);var a=e("2166");for(var o in a)"default"!==o&&function(n){e.d(t,n,(function(){return a[n]}))}(o);e("4e90");var r,u,i,c,f=e("f0c5"),l=Object(f["a"])(a["default"],r,u,!1,null,null,null,!1,i,c);t["default"]=l.exports},"6a4a":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=o(e("59df"));function o(n){return n&&n.__esModule?n:{default:n}}function r(n){if("undefined"===typeof Symbol||null==n[Symbol.iterator]){if(Array.isArray(n)||(n=u(n))){var t=0,e=function(){};return{s:e,n:function(){return t>=n.length?{done:!0}:{done:!1,value:n[t++]}},e:function(n){throw n},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,r=!0,i=!1;return{s:function(){a=n[Symbol.iterator]()},n:function(){var n=a.next();return r=n.done,n},e:function(n){i=!0,o=n},f:function(){try{r||null==a.return||a.return()}finally{if(i)throw o}}}}function u(n,t){if(n){if("string"===typeof n)return i(n,t);var e=Object.prototype.toString.call(n).slice(8,-1);return"Object"===e&&n.constructor&&(e=n.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?i(n,t):void 0}}function i(n,t){(null==t||t>n.length)&&(t=n.length);for(var e=0,a=new Array(t);e<t;e++)a[e]=n[e];return a}var c={data:function(){return{selshow:!1,zhuanjialist:[],keyword:"",querylist:[]}},onLoad:function(){this.getzhuanjialist()},onshow:function(){},methods:{zhuanjiafen:function(t){console.log(t);var e=t.target.dataset.item;e=JSON.stringify(e),console.log(e),n.navigateTo({url:"../zhuanjiafenpeisec/zhuanjiafenpeisec?item="+e})},zhuanjiafensec:function(){n.navigateTo({url:"../zhuanjiafenpeisec/zhuanjiafenpeisec"})},enterxiangmu:function(n){console.log(n),this.keyword=n.target.value},getzhuanjialist:function(){var t=this,e="project/Get_ExDistribution",o={fuserid:n.getStorageSync("userid")};a.default.post(e,o,"get").then((function(n){t.zhuanjialist=n.data,t.querylist=n.data})).catch((function(n){console.log(n)}))},chaxun:function(){if(""==this.keyword)this.getzhuanjialist();else{var n,t=[],e=this.querylist,a=[],o=r(e);try{for(o.s();!(n=o.n()).done;){var u=n.value;a.push(u.fname)}}catch(f){o.e(f)}finally{o.f()}console.log("名称",a);for(var i=0;i<e.length;i++)for(var c=0;c<a.length;c++)a[c].indexOf(this.keyword)>=0&&c==i&&t.push(e[i]);console.log("9999000777",t),this.zhuanjialist=t}}}};t.default=c}).call(this,e("543d")["default"])},a986:function(n,t,e){"use strict";e.r(t);var a=e("6a4a"),o=e.n(a);for(var r in a)"default"!==r&&function(n){e.d(t,n,(function(){return a[n]}))}(r);t["default"]=o.a},b47a:function(n,t,e){"use strict";var a=e("48cc"),o=e.n(a);o.a},b664:function(n,t,e){"use strict";(function(n){e("bdbd"),e("921b");a(e("66fd"));var t=a(e("d6a8"));function a(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},d6a8:function(n,t,e){"use strict";e.r(t);var a=e("1fd7"),o=e("a986");for(var r in o)"default"!==r&&function(n){e.d(t,n,(function(){return o[n]}))}(r);e("b47a");var u,i=e("f0c5"),c=Object(i["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],u);t["default"]=c.exports},d869:function(n,t,e){}},[["b664","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;box-sizing:border-box;background:#fff;display:flex;align-items:center}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.fenzubtn:last-child{margin-right:0}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;display:flex;align-items:center}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.fenzubtn:last-child{margin-right:0}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiafenpeisec/zhuanjiafenpeisec"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),a=n.n(o);a.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var a=this,i=new Promise((function(i,r){var c=t.getStorageSync("token"),f={token:c||""};t.request({url:a.globalData.baseUrl+e,data:n,method:o,header:f,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("0aa0");var i,r,c,f,u=n("f0c5"),l=Object(u["a"])(o["default"],i,r,!1,null,null,null,!1,c,f);e["default"]=l.exports},"380e":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("fbec"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"39d3":function(t,e,n){"use strict";n.r(e);var o=n("c2a8"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},9510:function(t,e,n){"use strict";var o=n("f4d9"),a=n.n(o);a.a},c2a8:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=i(n("30b9")),a=i(n("079c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,i=!0,r=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){r=!0,a=t},f:function(){try{i||null==o.return||o.return()}finally{if(r)throw a}}}}function c(t,e){if(t){if("string"===typeof t)return f(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(t,e):void 0}}function f(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{item:"",detaildata:"",projectarr:[],index:0,fprjleader:"",fprjleadertwo:"",finorgid:"",fname:"",zhuanprojectarr:[],fexid:"",zfname:"",exid:""}},onLoad:function(t){console.log(t),this.item=JSON.parse(t.item);var e=this.item;e.ftoauditamt=a.default.change(e.ftoauditamt),this.item=e,console.log(this.item),this.getzhuanjialist(),this.getprojectkind(),this.getzhuanjia()},methods:{getdetail:function(){var t=this,e="project/Get_ExDisfteam",n={disid:t.item.disid,exid:t.fexid,fprojectid:t.item.fprojectid};console.log("00998877",n),o.default.post(e,n,"get").then((function(e){console.log("专家分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getzhuanjialist:function(){console.log("我是专家");var t=this,e="project/Get_DevelopmentOrg";o.default.post(e,"","get").then((function(e){console.log("握手",e),t.zhuanprojectarr=e.data,"未分配"==t.item.fexpertstatus?(t.fexid="",t.detaildata=[]):(t.fexid=t.item.fexid,t.zfname=t.item.fexname,t.getzhuanjia())})).catch((function(t){console.log(t)}))},getzhuanjia:function(){var t=this,e="project/Get_ExDisfteam",n={disid:t.item.disid,exid:t.fexid,fprojectid:t.item.fprojectid};console.log("no",n),o.default.post(e,n,"get").then((function(e){console.log("专家分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},bindzPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fexid=this.zhuanprojectarr[t.target.value].exid,this.zfname=this.zhuanprojectarr[t.target.value].fname,console.log("987654",this.fname),this.getdetail()},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log(n),t.projectarr=n.data,"未分配"==e.item.fexpertstatus)console.log(99887766554343),t.fprjleader="",t.fprjleadertwo="",t.fname="";else{console.log(999900999);var o,a=r(t.projectarr);try{for(a.s();!(o=a.n()).done;){var i=o.value;i.fid==e.item.finorgid&&(t.fprjleader=i.fprjleader,t.fprjleadertwo=i.fprjleadertwo,t.fname=i.fname)}}catch(c){a.e(c)}finally{a.f()}}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.finorgid=this.projectarr[t.target.value].fid,this.fname=this.projectarr[t.target.value].fname,console.log("987654",this.fname)},submit:function(){var e=this;if(""==this.fname)return wx.showToast({title:"请选择项目组",icon:"none"}),!1;if(""==e.zfname)return wx.showToast({title:"请选择专家",icon:"none"}),!1;console.log("998877665544",e.item);var n="project/Get_SubmitExDisfteam",a={fuserid:t.getStorageSync("userid"),finorgid:e.finorgid,fexid:e.fexid,fdisid:e.item.disid,fprojectid:e.item.fprojectid};console.log("00998877",a),o.default.post(n,a,"get").then((function(e){console.log(e),t.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},d15b:function(t,e,n){"use strict";var o,a=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return o}))},f4d9:function(t,e,n){},fbec:function(t,e,n){"use strict";n.r(e);var o=n("d15b"),a=n("39d3");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("9510");var r,c=n("f0c5"),f=Object(c["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=f.exports}},[["380e","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiafenpeisec/zhuanjiafenpeisec"],{2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"2aad":function(t,e,n){"use strict";var o,a=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return o}))},"2bb4":function(t,e,n){"use strict";n.r(e);var o=n("4fa5"),a=n.n(o);for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);e["default"]=a.a},"4e90":function(t,e,n){"use strict";var o=n("d869"),a=n.n(o);a.a},"4fa5":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=i(n("59df")),a=i(n("b86c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,a,i=!0,r=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return i=t.done,t},e:function(t){r=!0,a=t},f:function(){try{i||null==o.return||o.return()}finally{if(r)throw a}}}}function c(t,e){if(t){if("string"===typeof t)return f(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(t,e):void 0}}function f(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{item:"",detaildata:"",projectarr:[],index:0,fprjleader:"",fprjleadertwo:"",finorgid:"",fname:"",zhuanprojectarr:[],fexid:"",zfname:"",exid:""}},onLoad:function(t){console.log(t),this.item=JSON.parse(t.item);var e=this.item;e.ftoauditamt=a.default.change(e.ftoauditamt),this.item=e,console.log(this.item),this.getzhuanjialist(),this.getprojectkind(),this.getzhuanjia()},methods:{getdetail:function(){var t=this,e="project/Get_ExDisfteam",n={disid:t.item.disid,exid:t.fexid,fprojectid:t.item.fprojectid};console.log("00998877",n),o.default.post(e,n,"get").then((function(e){console.log("专家分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getzhuanjialist:function(){console.log("我是专家");var t=this,e="project/Get_DevelopmentOrg";o.default.post(e,"","get").then((function(e){console.log("握手",e),t.zhuanprojectarr=e.data,"未分配"==t.item.fexpertstatus?(t.fexid="",t.detaildata=[]):(t.fexid=t.item.fexid,t.zfname=t.item.fexname,t.getzhuanjia())})).catch((function(t){console.log(t)}))},getzhuanjia:function(){var t=this,e="project/Get_ExDisfteam",n={disid:t.item.disid,exid:t.fexid,fprojectid:t.item.fprojectid};console.log("no",n),o.default.post(e,n,"get").then((function(e){console.log("专家分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},bindzPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fexid=this.zhuanprojectarr[t.target.value].exid,this.zfname=this.zhuanprojectarr[t.target.value].fname,console.log("987654",this.fname),this.getdetail()},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log(n),t.projectarr=n.data,"未分配"==e.item.fexpertstatus)console.log(99887766554343),t.fprjleader="",t.fprjleadertwo="",t.fname="";else{console.log(999900999);var o,a=r(t.projectarr);try{for(a.s();!(o=a.n()).done;){var i=o.value;i.fid==e.item.finorgid&&(t.fprjleader=i.fprjleader,t.fprjleadertwo=i.fprjleadertwo,t.fname=i.fname)}}catch(c){a.e(c)}finally{a.f()}}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.finorgid=this.projectarr[t.target.value].fid,this.fname=this.projectarr[t.target.value].fname,console.log("987654",this.fname)},submit:function(){var e=this;if(""==this.fname)return wx.showToast({title:"请选择项目组",icon:"none"}),!1;if(""==e.zfname)return wx.showToast({title:"请选择专家",icon:"none"}),!1;console.log("998877665544",e.item);var n="project/Get_SubmitExDisfteam",a={fuserid:t.getStorageSync("userid"),finorgid:e.finorgid,fexid:e.fexid,fdisid:e.item.disid,fprojectid:e.item.fprojectid};console.log("00998877",a),o.default.post(n,a,"get").then((function(e){console.log(e),t.showToast({title:"提交成功",icon:"none"}),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},5196:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("82a8"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var a=this,i=new Promise((function(i,r){var c=t.getStorageSync("token"),f={token:c||""};t.request({url:a.globalData.baseUrl+e,data:n,method:o,header:f,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("4e90");var i,r,c,f,u=n("f0c5"),l=Object(u["a"])(o["default"],i,r,!1,null,null,null,!1,c,f);e["default"]=l.exports},"82a8":function(t,e,n){"use strict";n.r(e);var o=n("2aad"),a=n("2bb4");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("9c33");var r,c=n("f0c5"),f=Object(c["a"])(a["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],r);e["default"]=f.exports},"9c33":function(t,e,n){"use strict";var o=n("c33a"),a=n.n(o);a.a},c33a:function(t,e,n){},d869:function(t,e,n){}},[["5196","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#f9f9f9}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;padding:14rpx 28rpx;box-sizing:border-box;text-align:right;color:#3d444d;font-size:28rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.renyuanshuimg{width:14rpx;height:24rpx;font-size:0}.renyuanshuimg image{width:100%;height:100%}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#f9f9f9}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:right;color:#3d444d;font-size:28rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.renyuanshuimg{width:14rpx;height:24rpx;font-size:0}.renyuanshuimg image{width:100%;height:100%}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiahui/zhuanjiahui"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"349a":function(t,e,n){},b218:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("e11e"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},b34d:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("30b9")),o=i(n("079c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweiname:"评审类型",projectname:"项目类型",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",fid:"",huizong:!0}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.danweiname="评审类型",this.projectname="项目类型",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_ExpertgorprjySum",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=o.default.change(s.auduitsum),s.amountsum=o.default.change(s.amountsum),s.freesum=o.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},detail:function(e){console.log("专家",e),this.fid=e.target.dataset.id,t.navigateTo({url:"../zhuanjiahuidetail/zhuanjiahuidetail?fid="+this.fid})},getdetail:function(){var t=this;console.log(9988776655);var e="project/Get_Expertgorprjy",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},b45d:function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},e110:function(t,e,n){"use strict";n.r(e);var a=n("b34d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},e11e:function(t,e,n){"use strict";n.r(e);var a=n("b45d"),o=n("e110");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("e5f2");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},e5f2:function(t,e,n){"use strict";var a=n("349a"),o=n.n(a);o.a}},[["b218","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiahui/zhuanjiahui"],{"090c":function(t,e,n){"use strict";n.r(e);var a=n("8f3b"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"33be":function(t,e,n){"use strict";var a=n("5ec0"),o=n.n(a);o.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],i,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"5ec0":function(t,e,n){},"8a1d":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},"8f3b":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("59df")),o=i(n("b86c"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){r=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(r)throw o}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweiname:"评审类型",projectname:"项目类型",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",fid:"",huizong:!0}},onLoad:function(t){this.type=t.type;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,o=a;o<=n;o++)this.yeararr.push(o);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.danweiname="评审类型",this.projectname="项目类型",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_ExpertgorprjySum",i={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(i),a.default.post(n,i,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,i=e.huizonglist,u=r(i);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=o.default.change(s.auduitsum),s.amountsum=o.default.change(s.amountsum),s.freesum=o.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=i})).catch((function(t){console.log(t)}))},detail:function(e){console.log("专家",e),this.fid=e.target.dataset.id,t.navigateTo({url:"../zhuanjiahuidetail/zhuanjiahuidetail?fid="+this.fid})},getdetail:function(){var t=this;console.log(9988776655);var e="project/Get_Expertgorprjy",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c}).call(this,n("543d")["default"])},bce3:function(t,e,n){"use strict";n.r(e);var a=n("8a1d"),o=n("090c");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("33be");var r,u=n("f0c5"),s=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},c639:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("bce3"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},d869:function(t,e,n){}},[["c639","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx;text-align:center}.itemshu{width:150rpx;text-align:center;margin-left:22rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx;text-align:center}.itemshu{width:150rpx;text-align:center;margin-left:22rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;margin-left:70rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;margin-left:70rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiahuidetail/zhuanjiahuidetail"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1a71":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"5f2c":function(t,e,n){"use strict";n.r(e);var a=n("bea1"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},bb49:function(t,e,n){"use strict";n.r(e);var a=n("1a71"),i=n("5f2c");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("cd64");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},bd00:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("bb49"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},bea1:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9")),i=o(n("079c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweiname:"评审类型",projectname:"项目类型",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",fid:"",huizong:!1}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.danweiname="评审类型",this.projectname="项目类型",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_ExpertgorprjySum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(t){this.fid=t.target.dataset.id,this.huizong=!1,this.getdetail()},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Expertgorprjy",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c},cbd6:function(t,e,n){},cd64:function(t,e,n){"use strict";var a=n("cbd6"),i=n.n(a);i.a}},[["bd00","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuanjiahuidetail/zhuanjiahuidetail"],{"0098":function(t,e,n){"use strict";var a=n("8b6c"),i=n.n(a);i.a},"0cde":function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("2b44"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"153c":function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df")),i=o(n("b86c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweiname:"评审类型",projectname:"项目类型",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],type:"",fid:"",huizong:!1}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.yearindex=-1,this.startdate="开始时间",this.endate="结束时间",this.danweiname="评审类型",this.projectname="项目类型",this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_ExpertgorprjySum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(t){this.fid=t.target.dataset.id,this.huizong=!1,this.getdetail()},getdetail:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_Expertgorprjy",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1}}};e.default=c},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},2757:function(t,e,n){"use strict";n.r(e);var a=n("153c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"2b44":function(t,e,n){"use strict";n.r(e);var a=n("84e2"),i=n("2757");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("0098");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"84e2":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},"8b6c":function(t,e,n){},d869:function(t,e,n){}},[["0cde","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:86rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:1rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:86rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:1rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;margin-left:20rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.pingleixing{width:160rpx;text-align:center;margin-left:10rpx}.danwei{width:250rpx;margin-left:40rpx}.protype{width:100rpx}.shendingmoney{width:150rpx;text-align:center;margin-left:50rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.xiangmuzi{height:784rpx}.detailname{color:#0093ff;font-size:24rpx;width:120rpx;margin-left:20rpx}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.pingleixing{width:160rpx;text-align:center;margin-left:10rpx}.danwei{width:250rpx;margin-left:40rpx}.protype{width:100rpx}.shendingmoney{width:150rpx;text-align:center;margin-left:50rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhugauntaidetail/zhugauntaidetail"],{"0aa0":function(t,n,e){"use strict";var a=e("1604"),u=e.n(a);u.a},"0c9c":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,a){var u=this,o=new Promise((function(o,i){var c=t.getStorageSync("token"),f={token:c||""};t.request({url:u.globalData.baseUrl+n,data:e,method:a,header:f,success:function(t){200==t.statusCode?o(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},1604:function(t,n,e){},"1c0a":function(t,n,e){"use strict";e.r(n);var a=e("ca65"),u=e("3f2d");for(var o in u)"default"!==o&&function(t){e.d(n,t,(function(){return u[t]}))}(o);e("ef92");var i,c=e("f0c5"),f=Object(c["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],i);n["default"]=f.exports},"1f18":function(t,n,e){"use strict";e.r(n);var a=e("0c9c"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},"30b9":function(t,n,e){"use strict";e.r(n);var a=e("1f18");for(var u in a)"default"!==u&&function(t){e.d(n,t,(function(){return a[t]}))}(u);e("0aa0");var o,i,c,f,r=e("f0c5"),l=Object(r["a"])(a["default"],o,i,!1,null,null,null,!1,c,f);n["default"]=l.exports},"3f2d":function(t,n,e){"use strict";e.r(n);var a=e("bf73"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},"5b00":function(t,n,e){},"951a":function(t,n,e){"use strict";(function(t){e("a237"),e("921b");a(e("66fd"));var n=a(e("1c0a"));function a(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},bf73:function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;u(e("30b9"));var a=u(e("079c"));function u(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{item:"",type:""}},onLoad:function(n){console.log(n),this.item=JSON.parse(n.item);var e=this.item;e.ftoauditamt=a.default.change(e.ftoauditamt),e.fauditamount=a.default.change(e.fauditamount),e.fshenjianmoney=a.default.change(e.fshenjianmoney),this.item=e,console.log(this.item),this.type=n.type,5==n.type?t.setNavigationBarTitle({title:"主管部门台账"}):6==n.type&&t.setNavigationBarTitle({title:"项目组台账"})},methods:{}};n.default=o}).call(this,e("543d")["default"])},ca65:function(t,n,e){"use strict";var a,u=function(){var t=this,n=t.$createElement;t._self._c},o=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return o})),e.d(n,"a",(function(){return a}))},ef92:function(t,n,e){"use strict";var a=e("5b00"),u=e.n(a);u.a}},[["951a","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhugauntaidetail/zhugauntaidetail"],{1707:function(t,n,e){"use strict";var a,u=function(){var t=this,n=t.$createElement;t._self._c},o=[];e.d(n,"b",(function(){return u})),e.d(n,"c",(function(){return o})),e.d(n,"a",(function(){return a}))},2166:function(t,n,e){"use strict";e.r(n);var a=e("593d"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},"2ede":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;u(e("59df"));var a=u(e("b86c"));function u(t){return t&&t.__esModule?t:{default:t}}var o={data:function(){return{item:"",type:""}},onLoad:function(n){console.log(n),this.item=JSON.parse(n.item);var e=this.item;e.ftoauditamt=a.default.change(e.ftoauditamt),e.fauditamount=a.default.change(e.fauditamount),e.fshenjianmoney=a.default.change(e.fshenjianmoney),this.item=e,console.log(this.item),this.type=n.type,5==n.type?t.setNavigationBarTitle({title:"主管部门台账"}):6==n.type&&t.setNavigationBarTitle({title:"项目组台账"})},methods:{}};n.default=o}).call(this,e("543d")["default"])},"3d93":function(t,n,e){},"49d7":function(t,n,e){"use strict";var a=e("3d93"),u=e.n(a);u.a},"4e90":function(t,n,e){"use strict";var a=e("d869"),u=e.n(a);u.a},"54b4":function(t,n,e){"use strict";e.r(n);var a=e("1707"),u=e("6e88");for(var o in u)"default"!==o&&function(t){e.d(n,t,(function(){return u[t]}))}(o);e("49d7");var i,c=e("f0c5"),r=Object(c["a"])(u["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],i);n["default"]=r.exports},"593d":function(t,n,e){"use strict";(function(t){Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(n,e,a){var u=this,o=new Promise((function(o,i){var c=t.getStorageSync("token"),r={token:c||""};t.request({url:u.globalData.baseUrl+n,data:e,method:a,header:r,success:function(t){200==t.statusCode?o(t):i(t.data)},fail:function(t){console.log(t),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};n.default=e}).call(this,e("543d")["default"])},"59df":function(t,n,e){"use strict";e.r(n);var a=e("2166");for(var u in a)"default"!==u&&function(t){e.d(n,t,(function(){return a[t]}))}(u);e("4e90");var o,i,c,r,f=e("f0c5"),l=Object(f["a"])(a["default"],o,i,!1,null,null,null,!1,c,r);n["default"]=l.exports},"6e88":function(t,n,e){"use strict";e.r(n);var a=e("2ede"),u=e.n(a);for(var o in a)"default"!==o&&function(t){e.d(n,t,(function(){return a[t]}))}(o);n["default"]=u.a},b3db:function(t,n,e){"use strict";(function(t){e("bdbd"),e("921b");a(e("66fd"));var n=a(e("54b4"));function a(t){return t&&t.__esModule?t:{default:t}}t(n.default)}).call(this,e("543d")["createPage"])},d869:function(t,n,e){}},[["b3db","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:140rpx}.zuxiangmu{color:#3d444d;font-size:28rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{background:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:44rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:140rpx}.zuxiangmu{color:#3d444d;font-size:28rpx;font-weight:700}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuguantaizhang/zhugauntaizhang"],{"0333":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9"));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){u=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(u)throw o}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"主管部门"}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},reset:function(){this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="主管部门",this.yearindex=-1},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_Document";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data,console.log(t.danweilist)})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",o={toaudit:"document",fprojectcategory:e.fprojectcategory,document:e.fintorg,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fteam:"",fintorg:""};console.log("8877665544",o),a.default.post(n,o,"get").then((function(n){console.log(n),t.xiangmulist=n.data;var a,o=t.xiangmulist,r=[],u=i(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;r.push(c)}}catch(f){u.e(f)}finally{u.f()}var l=r.splice(-1);e.end=l;var s=r.length;s-=1,console.log(s),r.splice(s,1),console.log(r),t.xiangmulist=r,console.log(typeof r)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;console.log(n),n=JSON.stringify(n),t.navigateTo({url:"../zhugauntaidetail/zhugauntaidetail?item="+n+"&type=5"})}},onReachBottom:function(){console.log(999)}};e.default=c}).call(this,n("543d")["default"])},"0aa0":function(t,e,n){"use strict";var a=n("1604"),o=n.n(a);o.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"173a":function(t,e,n){"use strict";var a=n("c802"),o=n.n(a);o.a},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"2b0e":function(t,e,n){"use strict";n.r(e);var a=n("7f35"),o=n("ab23");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("173a");var r,u=n("f0c5"),c=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("0aa0");var i,r,u,c,l=n("f0c5"),s=Object(l["a"])(a["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=s.exports},6602:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("2b0e"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"7f35":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},ab23:function(t,e,n){"use strict";n.r(e);var a=n("0333"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},c802:function(t,e,n){}},[["6602","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zhuguantaizhang/zhugauntaizhang"],{"19b6":function(t,e,n){"use strict";var a,o=function(){var t=this,e=t.$createElement;t._self._c},i=[];n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return a}))},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},"2f46":function(t,e,n){"use strict";n.r(e);var a=n("19b6"),o=n("e7ae");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("3a46");var r,u=n("f0c5"),c=Object(u["a"])(o["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=c.exports},"3a46":function(t,e,n){"use strict";var a=n("ddb6"),o=n.n(a);o.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),o=n.n(a);o.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var o=this,i=new Promise((function(i,r){var u=t.getStorageSync("token"),c={token:u||""};t.request({url:o.globalData.baseUrl+e,data:n,method:a,header:c,success:function(t){200==t.statusCode?i(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return i},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("4e90");var i,r,u,c,l=n("f0c5"),s=Object(l["a"])(a["default"],i,r,!1,null,null,null,!1,u,c);e["default"]=s.exports},d869:function(t,e,n){},d96f:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df"));function o(t){return t&&t.__esModule?t:{default:t}}function i(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o,i=!0,u=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return i=t.done,t},e:function(t){u=!0,o=t},f:function(){try{i||null==a.return||a.return()}finally{if(u)throw o}}}}function r(t,e){if(t){if("string"===typeof t)return u(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(t,e):void 0}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{tizhangshow:!1,fprojectcategory:"",fintorg:"",sendyear:"",submitdateone:"",submitdatetwo:"",xiangmulist:[],projectlist:[],index:0,danweilist:[],danweiindex:0,end:"",yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"主管部门"}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getprojectkind(),this.getzixundanwei(),this.gettiazhanglist()},methods:{onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},reset:function(){this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="主管部门",this.yearindex=-1},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_Document";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data,console.log(t.danweilist)})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.fintorg=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},gettiazhanglist:function(){var t=this,e=this;console.log(9988776543);var n="project/Get_GetRptaudit",o={toaudit:"document",fprojectcategory:e.fprojectcategory,document:e.fintorg,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fteam:"",fintorg:""};console.log("8877665544",o),a.default.post(n,o,"get").then((function(n){console.log(n),t.xiangmulist=n.data;var a,o=t.xiangmulist,r=[],u=i(o);try{for(u.s();!(a=u.n()).done;){var c=a.value;r.push(c)}}catch(f){u.e(f)}finally{u.f()}var l=r.splice(-1);e.end=l;var s=r.length;s-=1,console.log(s),r.splice(s,1),console.log(r),t.xiangmulist=r,console.log(typeof r)})).catch((function(t){console.log(t)}))},search:function(){console.log(7766554),this.gettiazhanglist(),this.tizhangshow=!1},taizhangdetail:function(e){console.log(e);var n=e.target.dataset.item;console.log(n),n=JSON.stringify(n),t.navigateTo({url:"../zhugauntaidetail/zhugauntaidetail?item="+n+"&type=5"})}},onReachBottom:function(){console.log(999)}};e.default=c}).call(this,n("543d")["default"])},ddb6:function(t,e,n){},e7ae:function(t,e,n){"use strict";n.r(e);var a=n("d96f"),o=n.n(a);for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);e["default"]=o.a},f6f9:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("2f46"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["f6f9","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{width:750rpx;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.headitem{width:350rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-right:1rpx solid #bdc4ce}.headitem:last-child{border-right:none}.headitemtop{color:#06121e;font-size:28rpx}.headitembot{color:#0093ff;font-size:32rpx;margin-top:15rpx}.taizhangbox{padding:0 34rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.taizhang{width:686rpx;margin:32rpx auto 0;background:#fff;-webkit-box-shadow:0 6px 6px rgba(0,0,0,.03);box-shadow:0 6px 6px rgba(0,0,0,.03);opacity:1;border-radius:20px;padding-bottom:28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:200rpx}.taizhanghead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28rpx 50rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taizhangitem{color:#06121e;font-size:28rpx;font-weight:700}.taiboxitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.taiboxitem:last-child{border-bottom:none}.taizhangleft{color:#06121e;font-size:28rpx}.taizhangmiddle{color:#06121e;font-size:28rpx;width:284rpx;margin-left:62rpx;line-height:1.3;text-align:center}.taizhangright{color:#0093ff;font-size:28rpx;margin-left:56rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
.diburight{color:#06121e;font-size:28rpx}.dibuliteml{margin-right:36rpx}.dibulitemx{margin-left:36rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixundanweifen/zixundanweifen"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),i=n.n(o);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,a=new Promise((function(a,s){var r=t.getStorageSync("token"),c={token:r||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:c,success:function(t){200==t.statusCode?a(t):s(t.data)},fail:function(t){console.log(t),s("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"175f":function(t,e,n){"use strict";n.r(e);var o=n("afd1"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("0aa0");var a,s,r,c,u=n("f0c5"),l=Object(u["a"])(o["default"],a,s,!1,null,null,null,!1,r,c);e["default"]=l.exports},"5aeb":function(t,e,n){},"659b":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return o}))},6923:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("de50"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"9cc8":function(t,e,n){"use strict";var o=n("5aeb"),i=n.n(o);i.a},afd1:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("30b9")),i=a(n("079c"));function a(t){return t&&t.__esModule?t:{default:t}}function s(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,a=!0,s=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==o.return||o.return()}finally{if(s)throw i}}}}function r(t,e){if(t){if("string"===typeof t)return c(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(t,e):void 0}}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{disid:"",item:"",fteamid:"",fprojectid:"",ftrialnumber:"",fconcludenumber:"",votelist:[],danweilist:[],index:0,keyword:"",showhide:"",fuzepeople:"",fuzephone:"",status:"",subdisid:"",daibanfprojectid:"",touvotelist:[],fintorgid:" ",danweiname:"请选择咨询单位",state:""}},onLoad:function(e){if(this.showhide=t.getStorageSync("showhide"),console.log("传的参数",e.dfprojectid,e),void 0!=e.dfprojectid)this.daibanfprojectid=e.dfprojectid,this.disid=e.disid,this.status=this.showhide[4].status,this.getdaibandetail();else{this.item=JSON.parse(e.item),console.log("8888",this.item);var n=this.item;n.ftoauditamt=i.default.change(n.ftoauditamt),this.item=n,this.status=this.showhide[4].status,this.disid=e.disid,this.fteamid=e.fteamid,this.fprojectid=e.fprojectid,this.fintorgid=this.item.fintorgid,this.danweiname=this.item.fintorgname}this.getvotelist(),this.shenjienum(),this.getzixundanwei()},methods:{getdaibandetail:function(){var e=this;console.log(999);var n=this,a="project/Get_advisory",s={fuserid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:this.daibanfprojectid};console.log("canshu",s),o.default.post(a,s,"get").then((function(t){console.log("代办事宜",t),n.item=t.data[0];var o=e.item;o.ftoauditamt=i.default.change(o.ftoauditamt),e.item=o})).catch((function(t){console.log(t)}))},getvotelist:function(){var t=this,e="project/Get_intermediaryorg",n={disid:this.disid};console.log("8877665544",n),o.default.post(e,n,"get").then((function(e){console.log("投票列表",e),t.votelist=e.data,t.touvotelist=e.data})).catch((function(t){console.log(t)}))},toupiao:function(e){var n=this;console.log(e);var i=e.target.dataset.voiteitem;console.log(i.finteroryname);var a="project/Get_vote",s={fname:i.finteroryname,fid:n.item.disid,fprojectid:n.item.fprojectid,userid:t.getStorageSync("userid"),fadvisoryid:i.fadvisoryid,role:t.getStorageSync("role")};console.log("8877665544",s),o.default.post(a,s,"get").then((function(e){console.log(e),console.log(JSON.stringify(e.data)),t.showToast({title:e.data[0].message,icon:"none"}),n.getvotelist(),n.voicesuccess()})).catch((function(t){console.log(t)}))},voicesuccess:function(){var e=this,n="project/Upadte_Agencymatters",i={userid:t.getStorageSync("userid"),fdisid:e.item.disid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log("投票成功之后",t)})).catch((function(t){console.log(t)}))},shenjienum:function(){var t=this;console.log(9988776655);var e="project/Get_disnumber",n={fteamid:this.fteamid,fprojectid:this.fprojectid};o.default.post(e,n,"get").then((function(e){console.log(e),t.ftrialnumber=e.data[0].ftrialnumber,t.fconcludenumber=e.data[0].fconcludenumber})).catch((function(t){console.log(t)}))},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";o.default.post(e,"","get").then((function(e){console.log("咨询单位",e),t.danweilist=e.data,console.log(t.item.ftaskprocess),"投票中"==t.item.ftaskprocess?(t.danweiname="",t.fuzepeople="",t.fuzephone="",t.fintorgid=" "):(console.log(43848934),t.danweilist.forEach((function(e,n,o){e.fid==t.item.fintorgid&&(t.danweiname=e.fname,t.fuzepeople=e.fauthorizeman,t.fuzephone=e.fauthphone,t.fintorgid=e.fid,t.index=n,console.log("index",t.index))}))),console.log(t.danweilist)})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){this.keyword=t.target.value,console.log("776655443322",this.keyword)},chaxun:function(){if(""==this.keyword)this.getvotelist();else{var t,e=[],n=this.votelist,o=[],i=s(n);try{for(i.s();!(t=i.n()).done;){var a=t.value;o.push(a.finteroryname)}}catch(u){i.e(u)}finally{i.f()}console.log("项目",o);for(var r=0;r<n.length;r++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==r&&e.push(n[r]);console.log("9999000777",e),this.votelist=e}},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.danweiname=this.danweilist[t.target.value].fname,this.fuzepeople=this.danweilist[t.target.value].fauthorizeman,this.fuzephone=this.danweilist[t.target.value].fauthphone,this.fintorgid=this.danweilist[t.target.value].fid,console.log(JSON.stringify(this.danweilist)),console.log(this.fintorgid)},surefenpei:function(){var e=this,n=this;if(console.log("咨询单位",n.fintorgid)," "==n.fintorgid)return t.showToast({title:"请选择咨询单位",icon:"none"}),!1;var i="project/Get_SubmitAdvisoryDisfteam",a={fadvisorystatus:n.item.fadvisorystatus,fuserid:t.getStorageSync("userid"),disid:n.item.disid,fprojectid:n.item.fprojectid,fintorgid:n.fintorgid};console.log("咨询单位分配参数",a),o.default.post(i,a,"get").then((function(n){console.log(n),"成功"==n.data[0].message?(t.showToast({title:"提交成功",icon:"none"}),e.changestate(),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)):t.showToast({title:n.data[0].message,icon:"none"})})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},de50:function(t,e,n){"use strict";n.r(e);var o=n("659b"),i=n("175f");for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);n("9cc8");var s,r=n("f0c5"),c=Object(r["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],s);e["default"]=c.exports}},[["6923","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixundanweifen/zixundanweifen"],{"055d":function(t,e,n){},2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},"4e90":function(t,e,n){"use strict";var o=n("d869"),i=n.n(o);i.a},"571c":function(t,e,n){"use strict";n.r(e);var o=n("ce5e"),i=n("9daf");for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);n("73d5");var s,r=n("f0c5"),c=Object(r["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],s);e["default"]=c.exports},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,a=new Promise((function(a,s){var r=t.getStorageSync("token"),c={token:r||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:c,success:function(t){200==t.statusCode?a(t):s(t.data)},fail:function(t){console.log(t),s("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return a},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("4e90");var a,s,r,c,u=n("f0c5"),d=Object(u["a"])(o["default"],a,s,!1,null,null,null,!1,r,c);e["default"]=d.exports},"73d5":function(t,e,n){"use strict";var o=n("055d"),i=n.n(o);i.a},"9daf":function(t,e,n){"use strict";n.r(e);var o=n("d69e"),i=n.n(o);for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);e["default"]=i.a},ce5e:function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},a=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return o}))},d69e:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=a(n("59df")),i=a(n("b86c"));function a(t){return t&&t.__esModule?t:{default:t}}function s(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=r(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,a=!0,s=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return a=t.done,t},e:function(t){s=!0,i=t},f:function(){try{a||null==o.return||o.return()}finally{if(s)throw i}}}}function r(t,e){if(t){if("string"===typeof t)return c(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(t,e):void 0}}function c(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{disid:"",item:"",fteamid:"",fprojectid:"",ftrialnumber:"",fconcludenumber:"",votelist:[],danweilist:[],index:0,keyword:"",showhide:"",fuzepeople:"",fuzephone:"",status:"",subdisid:"",daibanfprojectid:"",touvotelist:[],fintorgid:" ",danweiname:"请选择咨询单位",state:""}},onLoad:function(e){if(this.showhide=t.getStorageSync("showhide"),console.log("传的参数",e.dfprojectid,e),void 0!=e.dfprojectid)this.daibanfprojectid=e.dfprojectid,this.disid=e.disid,this.status=this.showhide[4].status,this.getdaibandetail();else{this.item=JSON.parse(e.item),console.log("8888",this.item);var n=this.item;n.ftoauditamt=i.default.change(n.ftoauditamt),this.item=n,this.status=this.showhide[4].status,this.disid=e.disid,this.fteamid=e.fteamid,this.fprojectid=e.fprojectid,this.fintorgid=this.item.fintorgid,this.danweiname=this.item.fintorgname}this.getvotelist(),this.shenjienum(),this.getzixundanwei()},methods:{getdaibandetail:function(){var e=this;console.log(999);var n=this,a="project/Get_advisory",s={fuserid:t.getStorageSync("userid"),role:t.getStorageSync("role"),fprojectid:this.daibanfprojectid};console.log("canshu",s),o.default.post(a,s,"get").then((function(t){console.log("代办事宜",t),n.item=t.data[0];var o=e.item;o.ftoauditamt=i.default.change(o.ftoauditamt),e.item=o})).catch((function(t){console.log(t)}))},getvotelist:function(){var t=this,e="project/Get_intermediaryorg",n={disid:this.disid};console.log("8877665544",n),o.default.post(e,n,"get").then((function(e){console.log("投票列表",e),t.votelist=e.data,t.touvotelist=e.data})).catch((function(t){console.log(t)}))},toupiao:function(e){var n=this;console.log(e);var i=e.target.dataset.voiteitem;console.log(i.finteroryname);var a="project/Get_vote",s={fname:i.finteroryname,fid:n.item.disid,fprojectid:n.item.fprojectid,userid:t.getStorageSync("userid"),fadvisoryid:i.fadvisoryid,role:t.getStorageSync("role")};console.log("8877665544",s),o.default.post(a,s,"get").then((function(e){console.log(e),console.log(JSON.stringify(e.data)),t.showToast({title:e.data[0].message,icon:"none"}),n.voicesuccess(),setTimeout((function(){t.navigateBack({checked:!0})}),1500)})).catch((function(t){console.log(t)}))},voicesuccess:function(){var e=this,n="project/Upadte_Agencymatters",i={userid:t.getStorageSync("userid"),fdisid:e.item.disid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(t){console.log("投票成功之后",t)})).catch((function(t){console.log(t)}))},shenjienum:function(){var t=this;console.log(9988776655);var e="project/Get_disnumber",n={fteamid:this.fteamid,fprojectid:this.fprojectid};o.default.post(e,n,"get").then((function(e){console.log(e),t.ftrialnumber=e.data[0].ftrialnumber,t.fconcludenumber=e.data[0].fconcludenumber})).catch((function(t){console.log(t)}))},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";o.default.post(e,"","get").then((function(e){console.log("咨询单位",e),t.danweilist=e.data,console.log(t.item.ftaskprocess),"投票中"==t.item.ftaskprocess?(t.danweiname="",t.fuzepeople="",t.fuzephone="",t.fintorgid=" "):(console.log(43848934),t.danweilist.forEach((function(e,n,o){e.fid==t.item.fintorgid&&(t.danweiname=e.fname,t.fuzepeople=e.fauthorizeman,t.fuzephone=e.fauthphone,t.fintorgid=e.fid,t.index=n,console.log("index",t.index))}))),console.log(t.danweilist)})).catch((function(t){console.log(t)}))},enterxiangmu:function(t){this.keyword=t.target.value,console.log("776655443322",this.keyword)},chaxun:function(){if(""==this.keyword)this.getvotelist();else{var t,e=[],n=this.votelist,o=[],i=s(n);try{for(i.s();!(t=i.n()).done;){var a=t.value;o.push(a.finteroryname)}}catch(u){i.e(u)}finally{i.f()}console.log("项目",o);for(var r=0;r<n.length;r++)for(var c=0;c<o.length;c++)o[c].indexOf(this.keyword)>=0&&c==r&&e.push(n[r]);console.log("9999000777",e),this.votelist=e}},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.danweiname=this.danweilist[t.target.value].fname,this.fuzepeople=this.danweilist[t.target.value].fauthorizeman,this.fuzephone=this.danweilist[t.target.value].fauthphone,this.fintorgid=this.danweilist[t.target.value].fid,console.log(JSON.stringify(this.danweilist)),console.log(this.fintorgid)},surefenpei:function(){var e=this,n=this;if(console.log("咨询单位",n.fintorgid)," "==n.fintorgid)return t.showToast({title:"请选择咨询单位",icon:"none"}),!1;var i="project/Get_SubmitAdvisoryDisfteam",a={fadvisorystatus:n.item.fadvisorystatus,fuserid:t.getStorageSync("userid"),disid:n.item.disid,fprojectid:n.item.fprojectid,fintorgid:n.fintorgid};console.log("咨询单位分配参数",a),o.default.post(i,a,"get").then((function(n){console.log(n),"成功"==n.data[0].message?(t.showToast({title:"提交成功",icon:"none"}),e.changestate(),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)):t.showToast({title:n.data[0].message,icon:"none"})})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},d869:function(t,e,n){},fa9f:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("571c"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["fa9f","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;box-sizing:border-box}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:372rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#fff}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitem:last-child{border-bottom:none}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#8c9198;font-size:28rpx}.renyuanright{width:300rpx;height:60rpx;background:#eee;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.danweizi{width:500rpx;text-align:right}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.zixundan{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:24rpx 42rpx 16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanitem{color:#06121e;font-size:28rpx}.zixunbox{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zixundanboxlist{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box}.zixunname{width:320rpx;color:#06121e;font-size:24rpx;line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.zixunshu{width:105rpx;text-align:center;color:#06121e;font-size:24rpx}.zixuntou{width:108rpx;height:40rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:40rpx;margin-left:100rpx}.zuxiangmu{color:#3d444d;font-size:28rpx}.querenfen{width:686rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zidan{border-top:16rpx solid #f9f9f9}.danweizi{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 12rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzulist{margin-top:100rpx;padding-bottom:50rpx}.headleft{width:372rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:100rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:372rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.consult{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.consultdanwei{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.volistdata{color:#999;font-size:30rpx;text-align:center;margin-top:20rpx}.xuanlei{width:18rpx;height:25rpx;font-size:0}.xuanlei image{width:100%;height:100%}.voicehead{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:20rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.headitem{color:#06121e;font-size:28rpx}.piao{margin-left:20rpx}.danwei{width:50%;text-align:left}.piao{width:20%;text-align:center}.tou{width:30%;text-align:center}.wei{width:60%;text-align:left}.tpiao{width:10%;text-align:center;margin-left:30rpx}.votelist{height:500rpx;overflow-y:scroll}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixundanweihuitail/zixundanweihuidetail"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"599d":function(t,e,n){"use strict";n.r(e);var a=n("8121"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},8121:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9")),i=o(n("079c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],huizong:!1,fid:"",huizonglistdetail:[]}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.danweinamez="咨询单位",this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo="",this.fintorg=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_GetfintorgSum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo,fintorg:t.fintorg};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1},getdetail:function(){var t=this,e=this,n="project/Get_Getintcategoryprj",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fintorg:e.fintorg};console.log(o),a.default.post(n,o,"get").then((function(n){console.log("分类",n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},detail:function(t){var e=t.target.dataset.id;this.huizong=!1,this.fid=e,this.getdetail()}}};e.default=c},c209:function(t,e,n){"use strict";var a=n("eb13"),i=n.n(a);i.a},da7f:function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},e991:function(t,e,n){"use strict";n.r(e);var a=n("da7f"),i=n("599d");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("c209");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},eb13:function(t,e,n){},efaf:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("e991"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["efaf","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixundanweihuitail/zixundanweihuidetail"],{2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"44a9":function(t,e,n){"use strict";var a=n("85ee"),i=n.n(a);i.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},5554:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("e383"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"79fb":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},"852c":function(t,e,n){"use strict";n.r(e);var a=n("f9b9"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"85ee":function(t,e,n){},d869:function(t,e,n){},e383:function(t,e,n){"use strict";n.r(e);var a=n("79fb"),i=n("852c");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("44a9");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},f9b9:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df")),i=o(n("b86c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweiname:"评审类型",danweilist:[],projectlist:[],projectname:"项目类型",index:0,yeararr:[],yearindex:-1,startdate:"开始时间",endate:"结束时间",danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],huizong:!1,fid:"",huizonglistdetail:[]}},onLoad:function(t){this.fid=t.fid;var e=new Date,n=e.getFullYear();console.log(n);for(var a=n-19,i=a;i<=n;i++)this.yeararr.push(i);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getdetail()},methods:{reset:function(){this.danweinamez="咨询单位",this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo="",this.fintorg=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this;console.log(9988776655);var e="project/Get_GetfintorgSum",n={toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo,fintorg:t.fintorg};console.log(n),a.default.post(e,n,"get").then((function(e){console.log(e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1},getdetail:function(){var t=this,e=this,n="project/Get_Getintcategoryprj",o={fid:e.fid,toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fintorg:e.fintorg};console.log(o),a.default.post(n,o,"get").then((function(n){console.log("分类",n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.fauditamount=i.default.change(s.fauditamount),s.fshenjianmoney=i.default.change(s.fshenjianmoney),s.ftoauditamt=i.default.change(s.ftoauditamt),s.fsubmitfindate=s.fsubmitfindate.split("T"),s.fsubmitfindate=s.fsubmitfindate[0]}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},detail:function(t){var e=t.target.dataset.id;this.huizong=!1,this.fid=e,this.getdetail()}}};e.default=c}},[["5554","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1400rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1400rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixundanweihuizong/zixundanweihuizong"],{"0aa0":function(t,e,n){"use strict";var a=n("1604"),i=n.n(a);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var a=n("0c9c"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"30b9":function(t,e,n){"use strict";n.r(e);var a=n("1f18");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("0aa0");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},"3b34":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},4656:function(t,e,n){"use strict";n.r(e);var a=n("f656"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"6eff":function(t,e,n){},f5d9:function(t,e,n){"use strict";n.r(e);var a=n("3b34"),i=n("4656");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("fe47");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},f656:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("30b9")),i=o(n("079c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"评审类型",yearindex:-1,toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],huizong:!0,fid:"",huizonglistdetail:[]}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.danweinamez="咨询单位",this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo="",this.fintorg=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_GetfintorgSum",o={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fintorg:e.fintorg};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=i.default.change(s.auduitsum),s.amountsum=i.default.change(s.amountsum),s.freesum=i.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1},getdetail:function(){var t=this,e="project/Get_Getintcategoryprj",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo,fintorg:t.fintorg};console.log(n),a.default.post(e,n,"get").then((function(e){console.log("分类",e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(e){console.log("1122",e);var n=e.target.dataset.id;this.fid=n,t.navigateTo({url:"../zixundanweihuitail/zixundanweihuidetail?fid="+this.fid})}}};e.default=c}).call(this,n("543d")["default"])},fafb:function(t,e,n){"use strict";(function(t){n("a237"),n("921b");a(n("66fd"));var e=a(n("f5d9"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},fe47:function(t,e,n){"use strict";var a=n("6eff"),i=n.n(a);i.a}},[["fafb","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixundanweihuizong/zixundanweihuizong"],{"116e":function(t,e,n){"use strict";n.r(e);var a=n("7e19"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},2166:function(t,e,n){"use strict";n.r(e);var a=n("593d"),i=n.n(a);for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);e["default"]=i.a},"4e90":function(t,e,n){"use strict";var a=n("d869"),i=n.n(a);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,a){var i=this,o=new Promise((function(o,r){var u=t.getStorageSync("token"),s={token:u||""};t.request({url:i.globalData.baseUrl+e,data:n,method:a,header:s,success:function(t){200==t.statusCode?o(t):r(t.data)},fail:function(t){console.log(t),r("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return o},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var a=n("2166");for(var i in a)"default"!==i&&function(t){n.d(e,t,(function(){return a[t]}))}(i);n("4e90");var o,r,u,s,c=n("f0c5"),l=Object(c["a"])(a["default"],o,r,!1,null,null,null,!1,u,s);e["default"]=l.exports},7581:function(t,e,n){},"7e19":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=o(n("59df")),i=o(n("b86c"));function o(t){return t&&t.__esModule?t:{default:t}}function r(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=u(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i,o=!0,r=!1;return{s:function(){a=t[Symbol.iterator]()},n:function(){var t=a.next();return o=t.done,t},e:function(t){r=!0,i=t},f:function(){try{o||null==a.return||a.return()}finally{if(r)throw i}}}}function u(t,e){if(t){if("string"===typeof t)return s(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(t,e):void 0}}function s(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,a=new Array(e);n<e;n++)a[n]=t[n];return a}var c={data:function(){return{selact:1,tizhangshow:!1,danweiindex:0,danweilist:[],projectlist:[],index:0,yeararr:[],danweilistz:[],danweiindexz:0,danweinamez:"咨询单位",startdate:"开始时间",endate:"结束时间",projectname:"项目类型",danweiname:"评审类型",yearindex:-1,toaudit:"",fintorg:"",fprojectcategory:"",submitdateone:"",submitdatetwo:"",sendyear:"",huizonglist:[],huizong:!0,fid:"",huizonglistdetail:[]}},onLoad:function(){var t=new Date,e=t.getFullYear();console.log(e);for(var n=e-19,a=n;a<=e;a++)this.yeararr.push(a);this.getpingtype(),this.getprojectkind(),this.getzixundanwei(),this.getfenhuilist()},methods:{reset:function(){this.danweinamez="咨询单位",this.startdate="开始时间",this.endate="结束时间",this.projectname="项目类型",this.danweiname="评审类型",this.yearindex=-1,this.toaudit="",this.fprojectcategory="",this.sendyear="",this.submitdateone="",this.submitdatetwo="",this.fintorg=""},onNavigationBarButtonTap:function(){this.tizhangshow=!this.tizhangshow},yearchange:function(t){this.yearindex=t.target.value,this.sendyear=this.yeararr[t.target.value]},bindDateChange:function(t){this.startdate=t.target.value,this.submitdateone=t.target.value},endDateChange:function(t){this.endate=t.target.value,this.submitdatetwo=t.target.value},fenhui:function(t){console.log(t);var e=t.currentTarget.dataset.id;console.log(e),this.selact=e},screenheng:function(){console.log(999)},getzixundanwei:function(){var t=this;console.log(9988776655);var e="project/Get_IntermediaryOrg";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilistz=e.data})).catch((function(t){console.log(t)}))},danweichangez:function(t){console.log("picker发送选择改变,携带值为",t),console.log("998877654",this.danweilistz),console.log("09988776545",this.danweilistz[t.target.value].fname),this.danweiindexz=t.target.value,this.fintorg=this.danweilistz[t.target.value].fname,this.danweinamez=this.danweilistz[t.target.value].fname},getpingtype:function(){var t=this;console.log(9988776655);var e="project/Get_ToAuditType";a.default.post(e,"","get").then((function(e){console.log(e),t.danweilist=e.data})).catch((function(t){console.log(t)}))},danweichange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.danweiindex=t.target.value,this.toaudit=this.danweilist[t.target.value].fname,this.danweiname=this.danweilist[t.target.value].fname},getprojectkind:function(){var t=this,e="project/Get_ProjectType";a.default.post(e,"","get").then((function(e){console.log(e),t.projectlist=e.data,console.log(t.projectlist)})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fprojectcategory=this.projectlist[t.target.value].fname,this.projectname=this.projectlist[t.target.value].fname},getfenhuilist:function(){var t=this,e=this;console.log(9988776655);var n="project/Get_GetfintorgSum",o={toaudit:e.toaudit,fprojectcategory:e.fprojectcategory,sendyear:e.sendyear,submitdateone:e.submitdateone,submitdatetwo:e.submitdatetwo,fintorg:e.fintorg};console.log(o),a.default.post(n,o,"get").then((function(n){console.log(n),e.huizonglist=n.data;var a,o=e.huizonglist,u=r(o);try{for(u.s();!(a=u.n()).done;){var s=a.value;s.auduitsum=i.default.change(s.auduitsum),s.amountsum=i.default.change(s.amountsum),s.freesum=i.default.change(s.freesum)}}catch(c){u.e(c)}finally{u.f()}t.huizonglist=o})).catch((function(t){console.log(t)}))},search:function(){this.getfenhuilist(),this.tizhangshow=!1},searchdetail:function(){this.getdetail(),this.tizhangshow=!1},getdetail:function(){var t=this,e="project/Get_Getintcategoryprj",n={fid:t.fid,toaudit:t.toaudit,fprojectcategory:t.fprojectcategory,sendyear:t.sendyear,submitdateone:t.submitdateone,submitdatetwo:t.submitdatetwo,fintorg:t.fintorg};console.log(n),a.default.post(e,n,"get").then((function(e){console.log("分类",e),t.huizonglist=e.data})).catch((function(t){console.log(t)}))},detail:function(e){console.log("1122",e);var n=e.target.dataset.id;this.fid=n,t.navigateTo({url:"../zixundanweihuitail/zixundanweihuidetail?fid="+this.fid})}}};e.default=c}).call(this,n("543d")["default"])},"907a":function(t,e,n){"use strict";var a,i=function(){var t=this,e=t.$createElement;t._self._c},o=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return a}))},c0bc:function(t,e,n){"use strict";n.r(e);var a=n("907a"),i=n("116e");for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);n("d65c");var r,u=n("f0c5"),s=Object(u["a"])(i["default"],a["b"],a["c"],!1,null,null,null,!1,a["a"],r);e["default"]=s.exports},d65c:function(t,e,n){"use strict";var a=n("7581"),i=n.n(a);i.a},d869:function(t,e,n){},e951:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");a(n("66fd"));var e=a(n("c0bc"));function a(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["e951","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;box-sizing:border-box;background:#fff}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.headbox{background:#fff;height:100rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.headboxleft{width:350rpx;height:100rpx;line-height:100rpx;text-align:center;color:#06121e;font-size:28rpx}.headactive{color:#0093ff;border-bottom:1rpx solid #0093ff}.hengping{width:144rpx;color:#0093ff;font-size:24rpx;border-bottom:1rpx solid #0093ff;margin:34rpx auto 0}.taizhangbox{width:700rpx;overflow-x:scroll;margin:28rpx;padding:0 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff}.taizhanghead{width:1500rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangitem{color:#06121e;font-size:22rpx;margin-right:118rpx;font-weight:700}.shenjie{text-align:center;margin-top:5rpx;font-size:20rpx}.taizhangflistitem{width:1500rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taizhangheadde{width:3200rpx;overflow-x:scroll;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:16rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.taizhangflistitemde{width:3200rpx;overflow-x:scroll;padding:18rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;border-bottom:1rpx solid #bdc4ce}.taiitem{color:#06121e;font-size:24rpx}.itemname{width:96rpx}.itemshu{width:150rpx;text-align:center;margin-left:72rpx}.songshen{width:200rpx;text-align:center;margin-left:30rpx}.shending{width:200rpx;text-align:center;margin-left:5rpx}.shenjian{width:200rpx;text-align:center;margin-left:10rpx}.shenlv{width:200rpx;text-align:center;margin-left:15rpx}.dibu{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;width:750rpx;height:104rpx;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;bottom:0;left:0}.dibuleft{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-right:72rpx}.dibulitemm{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.dishu{width:40rpx;height:30rpx;border:1rpx solid #707070;border-radius:4rpx;margin:0 6rpx;font-size:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.dishu input{width:100%;height:30rpx;line-height:30rpx;padding:5rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;font-size:26rpx;color:#8c9198}.dibuliteml,
.di,
.ye,
.dibulitemx,
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixunfen/zixunfen"],{"0aa0":function(n,t,e){"use strict";var o=e("1604"),r=e.n(o);r.a},"0c9c":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,o){var r=this,u=new Promise((function(u,i){var a=n.getStorageSync("token"),f={token:a||""};n.request({url:r.globalData.baseUrl+t,data:e,method:o,header:f,success:function(n){200==n.statusCode?u(n):i(n.data)},fail:function(n){console.log(n),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return u},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},1604:function(n,t,e){},"1d66":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(e("30b9"));function r(n){return n&&n.__esModule?n:{default:n}}function u(n){if("undefined"===typeof Symbol||null==n[Symbol.iterator]){if(Array.isArray(n)||(n=i(n))){var t=0,e=function(){};return{s:e,n:function(){return t>=n.length?{done:!0}:{done:!1,value:n[t++]}},e:function(n){throw n},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,u=!0,a=!1;return{s:function(){o=n[Symbol.iterator]()},n:function(){var n=o.next();return u=n.done,n},e:function(n){a=!0,r=n},f:function(){try{u||null==o.return||o.return()}finally{if(a)throw r}}}}function i(n,t){if(n){if("string"===typeof n)return a(n,t);var e=Object.prototype.toString.call(n).slice(8,-1);return"Object"===e&&n.constructor&&(e=n.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?a(n,t):void 0}}function a(n,t){(null==t||t>n.length)&&(t=n.length);for(var e=0,o=new Array(t);e<t;e++)o[e]=n[e];return o}var f={data:function(){return{zixunlist:[],keyword:"",querylist:[]}},onLoad:function(){},methods:{xiangmuzufen:function(t){var e=JSON.stringify(t);console.log(t);t.finorgid,t.fprojectid;n.navigateTo({url:"../zixunfenpei/zixunfenpei?item="+e})},getdanweilist:function(){var t=this,e="project/Get_Distribution",r={fuserid:n.getStorageSync("userid"),fprojectid:""};console.log("8877665544",r),o.default.post(e,r,"get").then((function(n){console.log("项目组分配",n),t.zixunlist=n.data,t.querylist=n.data})).catch((function(n){console.log(n)}))},enterxiangmu:function(n){console.log(n),this.keyword=n.target.value},chaxun:function(){if(""==this.keyword)this.getdanweilist();else{console.log(9988776655);var n,t=[],e=this.querylist,o=[],r=u(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;o.push(i.fname)}}catch(l){r.e(l)}finally{r.f()}console.log("名称",o);for(var a=0;a<e.length;a++)for(var f=0;f<o.length;f++)o[f].indexOf(this.keyword)>=0&&f==a&&t.push(e[a]);console.log("9999000777",t),this.zixunlist=t}}},onShow:function(){console.log(2838398),this.getdanweilist()}};t.default=f}).call(this,e("543d")["default"])},"1d7d":function(n,t,e){"use strict";(function(n){e("a237"),e("921b");o(e("66fd"));var t=o(e("409b"));function o(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},"1f18":function(n,t,e){"use strict";e.r(t);var o=e("0c9c"),r=e.n(o);for(var u in o)"default"!==u&&function(n){e.d(t,n,(function(){return o[n]}))}(u);t["default"]=r.a},"2f0d":function(n,t,e){"use strict";var o,r=function(){var n=this,t=n.$createElement;n._self._c},u=[];e.d(t,"b",(function(){return r})),e.d(t,"c",(function(){return u})),e.d(t,"a",(function(){return o}))},"30b9":function(n,t,e){"use strict";e.r(t);var o=e("1f18");for(var r in o)"default"!==r&&function(n){e.d(t,n,(function(){return o[n]}))}(r);e("0aa0");var u,i,a,f,l=e("f0c5"),c=Object(l["a"])(o["default"],u,i,!1,null,null,null,!1,a,f);t["default"]=c.exports},"409b":function(n,t,e){"use strict";e.r(t);var o=e("2f0d"),r=e("98ff");for(var u in r)"default"!==u&&function(n){e.d(t,n,(function(){return r[n]}))}(u);e("bb09");var i,a=e("f0c5"),f=Object(a["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);t["default"]=f.exports},"4de3":function(n,t,e){},"98ff":function(n,t,e){"use strict";e.r(t);var o=e("1d66"),r=e.n(o);for(var u in o)"default"!==u&&function(n){e.d(t,n,(function(){return o[n]}))}(u);t["default"]=r.a},bb09:function(n,t,e){"use strict";var o=e("4de3"),r=e.n(o);r.a}},[["1d7d","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixunfen/zixunfen"],{2166:function(n,t,e){"use strict";e.r(t);var o=e("593d"),r=e.n(o);for(var u in o)"default"!==u&&function(n){e.d(t,n,(function(){return o[n]}))}(u);t["default"]=r.a},"3aa8":function(n,t,e){"use strict";e.r(t);var o=e("de7d"),r=e("8f92");for(var u in r)"default"!==u&&function(n){e.d(t,n,(function(){return r[n]}))}(u);e("ca82");var i,a=e("f0c5"),l=Object(a["a"])(r["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],i);t["default"]=l.exports},"4e90":function(n,t,e){"use strict";var o=e("d869"),r=e.n(o);r.a},"593d":function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var e={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(t,e,o){var r=this,u=new Promise((function(u,i){var a=n.getStorageSync("token"),l={token:a||""};n.request({url:r.globalData.baseUrl+t,data:e,method:o,header:l,success:function(n){200==n.statusCode?u(n):i(n.data)},fail:function(n){console.log(n),i("网络出错"),wx.hideNavigationBarLoading()},complete:function(n){}})}));return u},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};t.default=e}).call(this,e("543d")["default"])},"59df":function(n,t,e){"use strict";e.r(t);var o=e("2166");for(var r in o)"default"!==r&&function(n){e.d(t,n,(function(){return o[n]}))}(r);e("4e90");var u,i,a,l,f=e("f0c5"),c=Object(f["a"])(o["default"],u,i,!1,null,null,null,!1,a,l);t["default"]=c.exports},"8f92":function(n,t,e){"use strict";e.r(t);var o=e("be6d"),r=e.n(o);for(var u in o)"default"!==u&&function(n){e.d(t,n,(function(){return o[n]}))}(u);t["default"]=r.a},a501:function(n,t,e){"use strict";(function(n){e("bdbd"),e("921b");o(e("66fd"));var t=o(e("3aa8"));function o(n){return n&&n.__esModule?n:{default:n}}n(t.default)}).call(this,e("543d")["createPage"])},be6d:function(n,t,e){"use strict";(function(n){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var o=r(e("59df"));function r(n){return n&&n.__esModule?n:{default:n}}function u(n){if("undefined"===typeof Symbol||null==n[Symbol.iterator]){if(Array.isArray(n)||(n=i(n))){var t=0,e=function(){};return{s:e,n:function(){return t>=n.length?{done:!0}:{done:!1,value:n[t++]}},e:function(n){throw n},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,r,u=!0,a=!1;return{s:function(){o=n[Symbol.iterator]()},n:function(){var n=o.next();return u=n.done,n},e:function(n){a=!0,r=n},f:function(){try{u||null==o.return||o.return()}finally{if(a)throw r}}}}function i(n,t){if(n){if("string"===typeof n)return a(n,t);var e=Object.prototype.toString.call(n).slice(8,-1);return"Object"===e&&n.constructor&&(e=n.constructor.name),"Map"===e||"Set"===e?Array.from(e):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?a(n,t):void 0}}function a(n,t){(null==t||t>n.length)&&(t=n.length);for(var e=0,o=new Array(t);e<t;e++)o[e]=n[e];return o}var l={data:function(){return{zixunlist:[],keyword:"",querylist:[]}},onLoad:function(){},methods:{xiangmuzufen:function(t){var e=JSON.stringify(t);console.log(t);t.finorgid,t.fprojectid;n.navigateTo({url:"../zixunfenpei/zixunfenpei?item="+e})},getdanweilist:function(){var t=this,e="project/Get_Distribution",r={fuserid:n.getStorageSync("userid"),fprojectid:""};console.log("8877665544",r),o.default.post(e,r,"get").then((function(n){console.log("项目组分配",n),t.zixunlist=n.data,t.querylist=n.data})).catch((function(n){console.log(n)}))},enterxiangmu:function(n){console.log(n),this.keyword=n.target.value},chaxun:function(){if(""==this.keyword)this.getdanweilist();else{console.log(9988776655);var n,t=[],e=this.querylist,o=[],r=u(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;o.push(i.fname)}}catch(f){r.e(f)}finally{r.f()}console.log("名称",o);for(var a=0;a<e.length;a++)for(var l=0;l<o.length;l++)o[l].indexOf(this.keyword)>=0&&l==a&&t.push(e[a]);console.log("9999000777",t),this.zixunlist=t}}},onShow:function(){console.log(2838398),this.getdanweilist()}};t.default=l}).call(this,e("543d")["default"])},ca82:function(n,t,e){"use strict";var o=e("fb43"),r=e.n(o);r.a},d869:function(n,t,e){},de7d:function(n,t,e){"use strict";var o,r=function(){var n=this,t=n.$createElement;n._self._c},u=[];e.d(t,"b",(function(){return r})),e.d(t,"c",(function(){return u})),e.d(t,"a",(function(){return o}))},fb43:function(n,t,e){}},[["a501","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0}.fenzulist{margin-top:100rpx}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;box-sizing:border-box;display:felex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:126rpx;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}page{background:#f9f9f9}.head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;position:fixed;top:0;left:0}.fenzulist{margin-top:100rpx}.headleft{width:572rpx;height:60rpx;background:#eee;opacity:1;border-radius:8rpx;padding:10rpx 24rpx;-webkit-box-sizing:border-box;box-sizing:border-box;display:felex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;align-items:center}.headleft input{color:#bdc4ce;font-size:28rpx}.headright{width:98rpx;height:60rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:22rpx;text-align:center;line-height:60rpx;margin-left:16rpx}.fenzuitem{width:686rpx;background:#fff;-webkit-box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);box-shadow:0 6rpx 6rpx rgba(0,0,0,.03);opacity:1;border-radius:20rpx;margin:20rpx auto 0;padding:28rpx 32rpx 40rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:126rpx;height:48rpx;border:1rpx solid #bdc4ce;opacity:1;border-radius:8rpx;padding:0 5rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.fenzutop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding-bottom:16rpx;border-bottom:1rpx solid #f5f5f5}.fenzuobottom{margin-top:16rpx}.fenzubottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-top:16rpx}.fenzubtn{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}
\ No newline at end of file
... ...
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixunfenpei/zixunfenpei"],{"0aa0":function(t,e,n){"use strict";var o=n("1604"),i=n.n(o);i.a},"0c9c":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,r=new Promise((function(r,a){var c=t.getStorageSync("token"),f={token:c||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:f,success:function(t){200==t.statusCode?r(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},1604:function(t,e,n){},"1f18":function(t,e,n){"use strict";n.r(e);var o=n("0c9c"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},"2db3":function(t,e,n){"use strict";(function(t){n("a237"),n("921b");o(n("66fd"));var e=o(n("68e6"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])},"30b9":function(t,e,n){"use strict";n.r(e);var o=n("1f18");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("0aa0");var r,a,c,f,u=n("f0c5"),l=Object(u["a"])(o["default"],r,a,!1,null,null,null,!1,c,f);e["default"]=l.exports},"329c":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return o}))},"68e6":function(t,e,n){"use strict";n.r(e);var o=n("329c"),i=n("810c");for(var r in i)"default"!==r&&function(t){n.d(e,t,(function(){return i[t]}))}(r);n("e23c");var a,c=n("f0c5"),f=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);e["default"]=f.exports},"6e74":function(t,e,n){},"810c":function(t,e,n){"use strict";n.r(e);var o=n("bc89"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},bc89:function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("30b9")),i=r(n("079c"));function r(t){return t&&t.__esModule?t:{default:t}}function a(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,a=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){a=!0,i=t},f:function(){try{r||null==o.return||o.return()}finally{if(a)throw i}}}}function c(t,e){if(t){if("string"===typeof t)return f(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(t,e):void 0}}function f(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",fprojectid:""}},onLoad:function(t){if(void 0!=t.projectid)this.fprojectid=t.projectid,this.getdanweilist();else{this.item=JSON.parse(t.item),console.log(this.item);var e=this.item;e.ftoauditamt=i.default.change(e.ftoauditamt),this.item=e}this.getprojectkind()},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getdanweilist:function(){var e=this,n="project/Get_Distribution",i={fprojectid:e.fprojectid,fuserid:t.getStorageSync("userid")};o.default.post(n,i,"get").then((function(t){console.log("项目组分配kkkk",t),e.item=t.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,i=a(t.projectarr);try{for(i.s();!(o=i.n()).done;){var r=o.value;r.fid==e.item.finorgid&&(t.fprjleader=r.fprjleader,t.fprjleadertwo=r.fprjleadertwo,t.fname=r.fname,t.finorgid=r.fid)}}catch(c){i.e(c)}finally{i.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(""==e.fname)return t.showToast({title:"请选择项目组",icon:"none"}),!1;var n="project/Submit_Disfteam",i={ftaskprocess:e.item.ftaskprocess,fuserid:t.getStorageSync("userid"),fteamid:e.finorgid,fdisid:e.item.disid,fprojectid:e.item.fprojectid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(n){console.log(n),"成功"==n.data[0].message?t.showToast({title:"提交成功",icon:"none"}):t.showToast({title:n.data[0].message,icon:"none"}),e.changestate(),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},e23c:function(t,e,n){"use strict";var o=n("6e74"),i=n.n(o);i.a}},[["2db3","common/runtime","common/vendor"]]]);
\ No newline at end of file
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/zixunfenpei/zixunfenpei"],{"18a0":function(t,e,n){"use strict";n.r(e);var o=n("79c7"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},2166:function(t,e,n){"use strict";n.r(e);var o=n("593d"),i=n.n(o);for(var r in o)"default"!==r&&function(t){n.d(e,t,(function(){return o[t]}))}(r);e["default"]=i.a},"31a7":function(t,e,n){"use strict";n.r(e);var o=n("62af"),i=n("18a0");for(var r in i)"default"!==r&&function(t){n.d(e,t,(function(){return i[t]}))}(r);n("45c7");var a,c=n("f0c5"),f=Object(c["a"])(i["default"],o["b"],o["c"],!1,null,null,null,!1,o["a"],a);e["default"]=f.exports},"36fe":function(t,e,n){},"45c7":function(t,e,n){"use strict";var o=n("36fe"),i=n.n(o);i.a},"4e90":function(t,e,n){"use strict";var o=n("d869"),i=n.n(o);i.a},"593d":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},post:function(e,n,o){var i=this,r=new Promise((function(r,a){var c=t.getStorageSync("token"),f={token:c||""};t.request({url:i.globalData.baseUrl+e,data:n,method:o,header:f,success:function(t){200==t.statusCode?r(t):a(t.data)},fail:function(t){console.log(t),a("网络出错"),wx.hideNavigationBarLoading()},complete:function(t){}})}));return r},globalData:{userInfo:null,baseUrl:"https://www.bjzha.net/api/"}};e.default=n}).call(this,n("543d")["default"])},"59df":function(t,e,n){"use strict";n.r(e);var o=n("2166");for(var i in o)"default"!==i&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("4e90");var r,a,c,f,u=n("f0c5"),l=Object(u["a"])(o["default"],r,a,!1,null,null,null,!1,c,f);e["default"]=l.exports},"62af":function(t,e,n){"use strict";var o,i=function(){var t=this,e=t.$createElement;t._self._c},r=[];n.d(e,"b",(function(){return i})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return o}))},"79c7":function(t,e,n){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("59df")),i=r(n("b86c"));function r(t){return t&&t.__esModule?t:{default:t}}function a(t){if("undefined"===typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=c(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i,r=!0,a=!1;return{s:function(){o=t[Symbol.iterator]()},n:function(){var t=o.next();return r=t.done,t},e:function(t){a=!0,i=t},f:function(){try{r||null==o.return||o.return()}finally{if(a)throw i}}}}function c(t,e){if(t){if("string"===typeof t)return f(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return"Object"===n&&t.constructor&&(n=t.constructor.name),"Map"===n||"Set"===n?Array.from(n):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(t,e):void 0}}function f(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,o=new Array(e);n<e;n++)o[n]=t[n];return o}var u={data:function(){return{finorgid:"",finid:"",item:"",detaildata:"",projectarr:[],index:0,projectid:"",fprjleader:"",fprjleadertwo:"",fname:"",showhide:"",fprojectid:""}},onLoad:function(t){if(void 0!=t.projectid)this.fprojectid=t.projectid,this.getdanweilist();else{this.item=JSON.parse(t.item),console.log(this.item);var e=this.item;e.ftoauditamt=i.default.change(e.ftoauditamt),this.item=e}this.getprojectkind()},onShow:function(){this.showhide=t.getStorageSync("showhide")},methods:{detail:function(){var t=this,e="project/Get_Disfteam",n={finid:this.finorgid,fprojectid:this.item.projectid};o.default.post(e,n,"get").then((function(e){console.log("分配信息",e),t.detaildata=e.data[0]})).catch((function(t){console.log(t)}))},getdanweilist:function(){var e=this,n="project/Get_Distribution",i={fprojectid:e.fprojectid,fuserid:t.getStorageSync("userid")};o.default.post(n,i,"get").then((function(t){console.log("项目组分配kkkk",t),e.item=t.data[0]})).catch((function(t){console.log(t)}))},getprojectkind:function(){var t=this,e=this,n="project/Get_Fteam";o.default.post(n,"","get").then((function(n){if(console.log("获取项目组",n),t.projectarr=n.data,"未分配"==e.item.ftaskprocess)t.fprjleader="",t.fprjleadertwo="",t.fname="";else{var o,i=a(t.projectarr);try{for(i.s();!(o=i.n()).done;){var r=o.value;r.fid==e.item.finorgid&&(t.fprjleader=r.fprjleader,t.fprjleadertwo=r.fprjleadertwo,t.fname=r.fname,t.finorgid=r.fid)}}catch(c){i.e(c)}finally{i.f()}t.detail()}})).catch((function(t){console.log(t)}))},bindPickerChange:function(t){console.log("picker发送选择改变,携带值为",t.target.value),this.index=t.target.value,this.fname=this.projectarr[t.target.value].fname,this.finorgid=this.projectarr[t.target.value].fid,this.fprjleader=this.projectarr[t.target.value].fprjleader,this.fprjleadertwo=this.projectarr[t.target.value].fprjleadertwo,this.detail()},submit:function(){var e=this;if(""==e.fname)return t.showToast({title:"请选择项目组",icon:"none"}),!1;var n="project/Submit_Disfteam",i={ftaskprocess:e.item.ftaskprocess,fuserid:t.getStorageSync("userid"),fteamid:e.finorgid,fdisid:e.item.disid,fprojectid:e.item.fprojectid};console.log("8877665544",i),o.default.post(n,i,"get").then((function(n){console.log(n),"成功"==n.data[0].message?t.showToast({title:"提交成功",icon:"none"}):t.showToast({title:n.data[0].message,icon:"none"}),e.changestate(),setTimeout((function(){t.navigateBack({checked:!0})}),1e3)})).catch((function(t){console.log(t)}))},changestate:function(){var e=this,n="project/Get_Fteam";t.getStorageSync("userid"),e.item.disid;o.default.post(n,"","get").then((function(t){console.log("修改状态",t)})).catch((function(t){console.log(t)}))}}};e.default=u}).call(this,n("543d")["default"])},d869:function(t,e,n){},db2b:function(t,e,n){"use strict";(function(t){n("bdbd"),n("921b");o(n("66fd"));var e=o(n("31a7"));function o(t){return t&&t.__esModule?t:{default:t}}t(e.default)}).call(this,n("543d")["createPage"])}},[["db2b","common/runtime","common/vendor"]]]);
\ No newline at end of file
... ...
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#f9f9f9}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}
\ No newline at end of file
.flex{display:-webkit-box;display:-webkit-flex;display:flex}.flexone{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.flextwo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.flexthree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfour{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.flexfive{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-justify-content:space-around;justify-content:space-around}.register{width:100%;height:100%;background-color:rgba(0,0,0,.5);position:fixed;top:0;left:0;right:0;z-index:5}.taizhangwrap{width:750rpx;height:664rpx;background:#fff;position:absolute;top:0rpx;left:0;padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.zibot{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;margin:100rpx}.reset{width:200rpx;height:64rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:24rpx;text-align:center;line-height:64rpx;margin-right:24rpx}.nodata{color:#999;font-size:32rpx;text-align:center;margin-top:200rpx}.wrapitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:40rpx}.wrapitemleft{width:120rpx}.wrapitemleft{color:#06121e;font-size:28rpx}.wrapitemright{width:544rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;margin-left:18rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:20rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.wrapitemright input{width:100%;color:#8c9198;font-size:28rpx}.nianduright{width:14rpx;height:22rpx;font-size:0}.nianduleft{width:500rpx}.nianduright image{width:100%;height:100%}.time{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-left:18rpx}.timeleft{width:232rpx;height:76rpx;background:#eee;opacity:1;border-radius:8rpx;padding:15rpx 20rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#8c9198;font-size:28rpx}.timeleft input{width:100%;color:#8c9198;fotn-size:28rpx}.timemiddle{width:39rpx;background:#bdc4ce;border:1rpx solid #bdc4ce;opacity:1;margin:0 20rpx}.chaxun{width:200rpx;height:64rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#f9f9f9;font-size:24rpx;text-align:center;line-height:64rpx}.projectname{color:#8c9198;font-size:28rpx}.detailname{color:#0093ff;font-size:24rpx;margin-left:20rpx}.headleft input{width:100%;height:100%}.tabfooter{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;position:fixed;height:110rpx;width:750rpx;bottom:0;left:0;padding:14rpx 48rpx;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-top:1rpx solid #f9f9f9}.tabfooteritem{width:200rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.tabfooteritemimg{width:45rpx;height:48rpx;font-size:0}.tabfooteritemimg image{width:100%;height:100%}.tabfooteritemtop{width:100rpx;color:#bdc4ce;font-size:22rpx;text-align:center}.tabfooteritemtopactive{color:#2e85ed}.box{background:#f9f9f9}.projectinfo{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.projectinfoname{width:44rpx;height:44rpx;font-size:0}.projectinfoname image{width:100%;height:100%}.projectname{color:#3d444d;font-size:28rpx;font-weight:700;margin-left:16rpx}.projectinfo{padding:36rpx 32rpx 16rpx;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #bdc4ce}.projectlist{padding:0 32rpx;-webkit-box-sizing:border-box;box-sizing:border-box}.projectitem{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:32rpx 0;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1rpx solid #eee}.projectitemleft{color:#8c9198;font-size:28rpx}.projectitemright{color:#3d444d;font-size:28rpx}.renyuanleft{color:#06121e;font-size:28rpx}.renyuanright{width:260rpx;height:60rpx;padding:14rpx 28rpx;-webkit-box-sizing:border-box;box-sizing:border-box;color:#3d444d;font-size:28rpx;text-align:right;margin-left:200rpx}.renyuanright input{width:100%;height:40rpx;color:#8c9198;font-size:24rpx}.xiangmuyuan{color:#8c9198;font-size:24rpx}.zixunbottom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:28rpx 32rpx 34rpx}.zixunbotleft{width:130rpx;height:80rpx;background:#e85000;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx}.zixunbotright{width:532rpx;height:80rpx;background:#0093ff;opacity:1;border-radius:8rpx;color:#fff;font-size:28rpx;text-align:center;line-height:80rpx;margin-left:24rpx}.renyaoqiu{margin-top:12rpx}.danweizi{width:360rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background:#eee}.xuanlei{width:20rpx;height:22rpx;font-size:0}.xuanlei image{width:100%;height:100%}
\ No newline at end of file
... ...
{"version":3,"sources":["webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/main.js","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?1912","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?d032","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?7f10","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?431f"],"names":["Vue","config","productionTip","App","mpType","app","$mount","onLaunch","console","log","onShow","onHide","post","url","data","method","promise","Promise","resolve","reject","that","token","uni","getStorageSync","header","postData","request","globalData","baseUrl","success","res","statusCode","fail","e","wx","hideNavigationBarLoading","complete","daa","userInfo"],"mappings":";;;;;;;;;iDAAA,wCAAmB,iDAA4B;AAC/C,uE;;AAEAA,aAAIC,MAAJ,CAAWC,aAAX,GAA2B,KAA3B;;AAEAC,aAAIC,MAAJ,GAAa,KAAb;;AAEA,IAAMC,GAAG,GAAG,IAAIL,YAAJ;AACLG,YADK,EAAZ;;AAGA,UAAAE,GAAG,EAACC,MAAJ,G;;;;;;;;;;;;;;;;;;;;ACVA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACuD;AACL;AACa;;;AAG/D;AACqK;AACrK,gBAAgB,+KAAU;AAC1B,EAAE,yEAAM;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACe,gF;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAA6lB,CAAgB,unBAAG,EAAC,C;;;;;;;;;;;;ACClmB;AACdC,UAAQ,EAAE,oBAAW;AACpBC,WAAO,CAACC,GAAR,CAAY,YAAZ;AACA;AACA,GAJa;AAKdC,QAAM,EAAE,kBAAW;;AAElBF,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GARa;AASdE,QAAM,EAAE,kBAAW;AAClBH,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GAXa;AAYdG,MAAI,EAAE,cAASC,GAAT,EAAcC,IAAd,EAAoBC,MAApB,EAA4B;;AAEjC;AACA;AACA;AACA;AACA;AACA,QAAIC,OAAO,GAAG,IAAIC,OAAJ,CAAY,UAACC,OAAD,EAAUC,MAAV,EAAqB;AAC9C;AACA,UAAIC,IAAI,GAAG,KAAX;AACCC,WAAK,GAAGC,GAAG,CAACC,cAAJ,CAAmB,OAAnB,CADT;AAECC,YAAM,GAAG;AACRH,aAAK,EAAEA,KAAK,IAAI,EADR,EAFV;;AAKCI,cALD;;AAOA;AACA;AACAH,SAAG,CAACI,OAAJ,CAAY;AACXb,WAAG,EAAE,KAAI,CAACc,UAAL,CAAgBC,OAAhB,GAA0Bf,GADpB;AAEXC,YAAI,EAAEA,IAFK;AAGXC,cAAM,EAAEA,MAHG;AAIXS,cAAM,EAAEA,MAJG;AAKXK,eAAO,EAAE,iBAASC,GAAT,EAAc;AACtB;AACA;AACA,cAAIA,GAAG,CAACC,UAAJ,IAAkB,GAAtB,EAA2B;AAC1Bb,mBAAO,CAACY,GAAD,CAAP;AACA,WAFD,MAEO;AACN;AACA;AACA;AACA;AACAX,kBAAM,CAACW,GAAG,CAAChB,IAAL,CAAN;AACA;AACA;AACD;AACA;AACA,SApBU;AAqBXkB,YAAI,EAAE,cAASC,CAAT,EAAY;AACjBzB,iBAAO,CAACC,GAAR,CAAYwB,CAAZ;AACAd,gBAAM,CAAC,MAAD,CAAN;AACA;AACAe,YAAE,CAACC,wBAAH;AACA,SA1BU;AA2BXC,gBAAQ,EAAE,kBAASC,GAAT,EAAc;AACvB;AACA,SA7BU,EAAZ;;AA+BA,KA1Ca,CAAd;AA2CA,WAAOrB,OAAP;AACA,GA/Da;AAgEdW,YAAU,EAAE;AACXW,YAAQ,EAAE,IADC;AAEX;AACAV,WAAO,EAAE,4BAHE,EAhEE,E;;;;;;;;;;;;ACDf;AAAA;AAAA;AAAA;AAA+2B,CAAgB,g3BAAG,EAAC,C;;;;;;;;;;ACAn4B;AACA,OAAO,KAAU,EAAE,kBAKd","file":"common/main.js","sourcesContent":["import 'uni-pages';import '@dcloudio/uni-stat';import Vue from 'vue'\r\nimport App from './App'\r\n\r\nVue.config.productionTip = false\r\n\r\nApp.mpType = 'app'\r\n\r\nconst app = new Vue({\r\n ...App\r\n})\r\napp.$mount()","var render, staticRenderFns, recyclableRender, components\nvar renderjs\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue\"\nexport default component.exports","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"","\nexport default {\n\tonLaunch: function() {\n\t\tconsole.log('App Launch')\n\t\t// plus.screen.lockOrientation('portrait-primary');\n\t},\n\tonShow: function() {\n\n\t\tconsole.log('App Show')\n\t},\n\tonHide: function() {\n\t\tconsole.log('App Hide')\n\t},\n\tpost: function(url, data, method) {\n\n\t\t// (showLoad == undefined || showLoad) ?\n\t\t// wx.showLoading({\n\t\t// title: '加载中',\n\t\t// }) : ''\n\t\t// wx.showNavigationBarLoading()\n\t\tvar promise = new Promise((resolve, reject) => {\n\t\t\t//init\n\t\t\tlet that = this,\n\t\t\t\ttoken = uni.getStorageSync('token'),\n\t\t\t\theader = {\n\t\t\t\t\ttoken: token || ''\n\t\t\t\t},\n\t\t\t\tpostData;\n\n\t\t\t// console.log(token,\"token\")\n\t\t\t//网络请求 \n\t\t\tuni.request({\n\t\t\t\turl: this.globalData.baseUrl + url,\n\t\t\t\tdata: data,\n\t\t\t\tmethod: method,\n\t\t\t\theader: header,\n\t\t\t\tsuccess: function(res) {\n\t\t\t\t\t// console.log(res)//返回取得的数据\n\t\t\t\t\t// console.log(res)\n\t\t\t\t\tif (res.statusCode == 200) {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// uni.showToast({\n\t\t\t\t\t\t// \ttitle: res.data.msg,\n\t\t\t\t\t\t// \ticon: 'none',\n\t\t\t\t\t\t// })\n\t\t\t\t\t\treject(res.data)\n\t\t\t\t\t\t// if (res.data.code == '401') {}\n\t\t\t\t\t}\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading(): \"\";\n\t\t\t\t\t// wx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tfail: function(e) {\n\t\t\t\t\tconsole.log(e)\n\t\t\t\t\treject('网络出错');\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading() : \"\";\n\t\t\t\t\twx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tcomplete: function(daa) {\n\t\t\t\t\t// console.log(daa)\n\t\t\t\t}\n\t\t\t})\n\t\t});\n\t\treturn promise;\n\t},\n\tglobalData: {\n\t\tuserInfo: null,\n\t\t// baseUrl: 'http://icrgangjuren.w.brotop.cn/'\n\t\tbaseUrl: 'https://www.bjzha.net/api/'\n\t}\n}\n","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1587602393506\n var cssReload = require(\"F:/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
{"version":3,"sources":["webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/main.js","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?1912","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?d032","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?7f10","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?431f"],"names":["Vue","config","productionTip","App","mpType","app","$mount","onLaunch","console","log","onShow","onHide","post","url","data","method","promise","Promise","resolve","reject","that","token","uni","getStorageSync","header","postData","request","globalData","baseUrl","success","res","statusCode","fail","e","wx","hideNavigationBarLoading","complete","daa","userInfo"],"mappings":";;;;;;;;;iDAAA,wCAAmB,iDAA4B;AAC/C,uE;;AAEAA,aAAIC,MAAJ,CAAWC,aAAX,GAA2B,KAA3B;;AAEAC,aAAIC,MAAJ,GAAa,KAAb;;AAEA,IAAMC,GAAG,GAAG,IAAIL,YAAJ;AACLG,YADK,EAAZ;;AAGA,UAAAE,GAAG,EAACC,MAAJ,G;;;;;;;;;;;;;;;;;;;;ACVA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACuD;AACL;AACa;;;AAG/D;AACqK;AACrK,gBAAgB,+KAAU;AAC1B,EAAE,yEAAM;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACe,gF;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAA6lB,CAAgB,unBAAG,EAAC,C;;;;;;;;;;;;ACClmB;AACdC,UAAQ,EAAE,oBAAW;AACpBC,WAAO,CAACC,GAAR,CAAY,YAAZ;AACA;AACA,GAJa;AAKdC,QAAM,EAAE,kBAAW;;AAElBF,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GARa;AASdE,QAAM,EAAE,kBAAW;AAClBH,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GAXa;AAYdG,MAAI,EAAE,cAASC,GAAT,EAAcC,IAAd,EAAoBC,MAApB,EAA4B;;AAEjC;AACA;AACA;AACA;AACA;AACA,QAAIC,OAAO,GAAG,IAAIC,OAAJ,CAAY,UAACC,OAAD,EAAUC,MAAV,EAAqB;AAC9C;AACA,UAAIC,IAAI,GAAG,KAAX;AACCC,WAAK,GAAGC,GAAG,CAACC,cAAJ,CAAmB,OAAnB,CADT;AAECC,YAAM,GAAG;AACRH,aAAK,EAAEA,KAAK,IAAI,EADR,EAFV;;AAKCI,cALD;;AAOA;AACA;AACAH,SAAG,CAACI,OAAJ,CAAY;AACXb,WAAG,EAAE,KAAI,CAACc,UAAL,CAAgBC,OAAhB,GAA0Bf,GADpB;AAEXC,YAAI,EAAEA,IAFK;AAGXC,cAAM,EAAEA,MAHG;AAIXS,cAAM,EAAEA,MAJG;AAKXK,eAAO,EAAE,iBAASC,GAAT,EAAc;AACtB;AACA;AACA,cAAIA,GAAG,CAACC,UAAJ,IAAkB,GAAtB,EAA2B;AAC1Bb,mBAAO,CAACY,GAAD,CAAP;AACA,WAFD,MAEO;AACN;AACA;AACA;AACA;AACAX,kBAAM,CAACW,GAAG,CAAChB,IAAL,CAAN;AACA;AACA;AACD;AACA;AACA,SApBU;AAqBXkB,YAAI,EAAE,cAASC,CAAT,EAAY;AACjBzB,iBAAO,CAACC,GAAR,CAAYwB,CAAZ;AACAd,gBAAM,CAAC,MAAD,CAAN;AACA;AACAe,YAAE,CAACC,wBAAH;AACA,SA1BU;AA2BXC,gBAAQ,EAAE,kBAASC,GAAT,EAAc;AACvB;AACA,SA7BU,EAAZ;;AA+BA,KA1Ca,CAAd;AA2CA,WAAOrB,OAAP;AACA,GA/Da;AAgEdW,YAAU,EAAE;AACXW,YAAQ,EAAE,IADC;AAEX;AACAV,WAAO,EAAE,4BAHE,EAhEE,E;;;;;;;;;;;;ACDf;AAAA;AAAA;AAAA;AAA+2B,CAAgB,g3BAAG,EAAC,C;;;;;;;;;;ACAn4B;AACA,OAAO,KAAU,EAAE,kBAKd","file":"common/main.js","sourcesContent":["import 'uni-pages';import '@dcloudio/uni-stat';import Vue from 'vue'\r\nimport App from './App'\r\n\r\nVue.config.productionTip = false\r\n\r\nApp.mpType = 'app'\r\n\r\nconst app = new Vue({\r\n ...App\r\n})\r\napp.$mount()","var render, staticRenderFns, recyclableRender, components\nvar renderjs\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue\"\nexport default component.exports","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"","\nexport default {\n\tonLaunch: function() {\n\t\tconsole.log('App Launch')\n\t\t// plus.screen.lockOrientation('portrait-primary');\n\t},\n\tonShow: function() {\n\n\t\tconsole.log('App Show')\n\t},\n\tonHide: function() {\n\t\tconsole.log('App Hide')\n\t},\n\tpost: function(url, data, method) {\n\n\t\t// (showLoad == undefined || showLoad) ?\n\t\t// wx.showLoading({\n\t\t// title: '加载中',\n\t\t// }) : ''\n\t\t// wx.showNavigationBarLoading()\n\t\tvar promise = new Promise((resolve, reject) => {\n\t\t\t//init\n\t\t\tlet that = this,\n\t\t\t\ttoken = uni.getStorageSync('token'),\n\t\t\t\theader = {\n\t\t\t\t\ttoken: token || ''\n\t\t\t\t},\n\t\t\t\tpostData;\n\n\t\t\t// console.log(token,\"token\")\n\t\t\t//网络请求 \n\t\t\tuni.request({\n\t\t\t\turl: this.globalData.baseUrl + url,\n\t\t\t\tdata: data,\n\t\t\t\tmethod: method,\n\t\t\t\theader: header,\n\t\t\t\tsuccess: function(res) {\n\t\t\t\t\t// console.log(res)//返回取得的数据\n\t\t\t\t\t// console.log(res)\n\t\t\t\t\tif (res.statusCode == 200) {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// uni.showToast({\n\t\t\t\t\t\t// \ttitle: res.data.msg,\n\t\t\t\t\t\t// \ticon: 'none',\n\t\t\t\t\t\t// })\n\t\t\t\t\t\treject(res.data)\n\t\t\t\t\t\t// if (res.data.code == '401') {}\n\t\t\t\t\t}\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading(): \"\";\n\t\t\t\t\t// wx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tfail: function(e) {\n\t\t\t\t\tconsole.log(e)\n\t\t\t\t\treject('网络出错');\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading() : \"\";\n\t\t\t\t\twx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tcomplete: function(daa) {\n\t\t\t\t\t// console.log(daa)\n\t\t\t\t}\n\t\t\t})\n\t\t});\n\t\treturn promise;\n\t},\n\tglobalData: {\n\t\tuserInfo: null,\n\t\t// baseUrl: 'http://icrgangjuren.w.brotop.cn/'\n\t\tbaseUrl: 'https://www.bjzha.net/api/'\n\t}\n}\n","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1587698424531\n var cssReload = require(\"F:/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
... ...
{"version":3,"sources":["webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?d032","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/main.js","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?2359","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?9894","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?7c6b","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?a654","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?e5d6","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?579a","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?7f10","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?431f","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?1912"],"names":["createPage","Page","onLaunch","console","log","onShow","onHide","post","url","data","method","promise","Promise","resolve","reject","that","token","uni","getStorageSync","header","postData","request","globalData","baseUrl","success","res","statusCode","fail","e","wx","hideNavigationBarLoading","complete","daa","userInfo","zixunlist","keyword","querylist","type","showhide","onLoad","options","JSON","stringify","Number","setNavigationBarTitle","title","project","methods","xiangmuzufen","item","newitem","finorgid","fprojectid","navigateTo","question","questionid","setStorageSync","getbudgetlist","param","fprojectcategory","fuserid","role","app","then","r","catch","err","see","enterxiangmu","target","value","jingban","pingshen","concatsure","chaxun","newxiangmuarr","newzixunlist","name","obj","push","fname","i","length","j","indexOf"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAA6lB,CAAgB,unBAAG,EAAC,C;;;;;;;;;;;;kDCAjnB,wCAAmB;AACnB;AACA,kH;AACAA,UAAU,CAACC,qBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAyH;AACzH;AACgE;AACL;AACa;;;AAGxE;AACqK;AACrK,gBAAgB,+KAAU;AAC1B,EAAE,kFAAM;AACR,EAAE,uFAAM;AACR,EAAE,gGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,2FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;;ACtBA;AACdC,UAAQ,EAAE,oBAAW;AACpBC,WAAO,CAACC,GAAR,CAAY,YAAZ;AACA;AACA,GAJa;AAKdC,QAAM,EAAE,kBAAW;;AAElBF,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GARa;AASdE,QAAM,EAAE,kBAAW;AAClBH,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GAXa;AAYdG,MAAI,EAAE,cAASC,GAAT,EAAcC,IAAd,EAAoBC,MAApB,EAA4B;;AAEjC;AACA;AACA;AACA;AACA;AACA,QAAIC,OAAO,GAAG,IAAIC,OAAJ,CAAY,UAACC,OAAD,EAAUC,MAAV,EAAqB;AAC9C;AACA,UAAIC,IAAI,GAAG,KAAX;AACCC,WAAK,GAAGC,GAAG,CAACC,cAAJ,CAAmB,OAAnB,CADT;AAECC,YAAM,GAAG;AACRH,aAAK,EAAEA,KAAK,IAAI,EADR,EAFV;;AAKCI,cALD;;AAOA;AACA;AACAH,SAAG,CAACI,OAAJ,CAAY;AACXb,WAAG,EAAE,KAAI,CAACc,UAAL,CAAgBC,OAAhB,GAA0Bf,GADpB;AAEXC,YAAI,EAAEA,IAFK;AAGXC,cAAM,EAAEA,MAHG;AAIXS,cAAM,EAAEA,MAJG;AAKXK,eAAO,EAAE,iBAASC,GAAT,EAAc;AACtB;AACA;AACA,cAAIA,GAAG,CAACC,UAAJ,IAAkB,GAAtB,EAA2B;AAC1Bb,mBAAO,CAACY,GAAD,CAAP;AACA,WAFD,MAEO;AACN;AACA;AACA;AACA;AACAX,kBAAM,CAACW,GAAG,CAAChB,IAAL,CAAN;AACA;AACA;AACD;AACA;AACA,SApBU;AAqBXkB,YAAI,EAAE,cAASC,CAAT,EAAY;AACjBzB,iBAAO,CAACC,GAAR,CAAYwB,CAAZ;AACAd,gBAAM,CAAC,MAAD,CAAN;AACA;AACAe,YAAE,CAACC,wBAAH;AACA,SA1BU;AA2BXC,gBAAQ,EAAE,kBAASC,GAAT,EAAc;AACvB;AACA,SA7BU,EAAZ;;AA+BA,KA1Ca,CAAd;AA2CA,WAAOrB,OAAP;AACA,GA/Da;AAgEdW,YAAU,EAAE;AACXW,YAAQ,EAAE,IADC;AAEX;AACAV,WAAO,EAAE,4BAHE,EAhEE,E;;;;;;;;;;;;;ACDf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAsmB,CAAgB,goBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiN1nB,+E;AACe;AACdd,MADc,kBACP;AACN,WAAO;AACNyB,eAAS,EAAE,EADL;AAENC,aAAO,EAAE,EAFH;AAGNC,eAAS,EAAE,EAHL;AAINC,UAAI,EAAC,EAJC;AAKNC,cAAQ,EAAC,EALH,EAAP;;AAOA,GATa;AAUdC,QAVc,kBAUPC,OAVO,EAUE;AACd,SAAKF,QAAL,GAAgBrB,GAAG,CAACC,cAAJ,CAAmB,UAAnB,CAAhB;AACAf,WAAO,CAACC,GAAR,CAAY,SAAZ,EAAsBqC,IAAI,CAACC,SAAL,CAAe,KAAKJ,QAApB,CAAtB;AACD,SAAKD,IAAL,GAAUG,OAAO,CAACH,IAAlB;AACA,SAAKA,IAAL,GAAUM,MAAM,CAAC,KAAKN,IAAN,CAAhB;AACA,YAAO,KAAKA,IAAZ;AACC,WAAK,CAAL;AACAlC,eAAO,CAACC,GAAR,CAAY,KAAKiC,IAAjB;AACApB,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,QADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,oBAAb;AACA;AACA,WAAK,CAAL;AACA3C,eAAO,CAACC,GAAR,CAAY,KAAKiC,IAAjB;AACApB,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,QADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,wBAAb;AACA;AACA,WAAK,CAAL;AACA7B,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,QADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,oBAAb;AACA;AACA,WAAK,CAAL;AACA7B,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,UADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,kBAAb;AACA,cA1BD;;AA4BA,GA3Ca;AA4CdC,SAAO,EAAE;AACR;AACAC,gBAFQ,wBAEKC,IAFL,EAEW;AAClB;AACC,UAAIC,OAAO,GAAGT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAd;AACD9C,aAAO,CAACC,GAAR,CAAY6C,IAAZ;AACA,UAAIE,QAAQ,GAAGF,IAAI,CAACE,QAApB;AACA,UAAIC,UAAU,GAAGH,IAAI,CAACG,UAAtB;;AAEAnC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAE,qCAAqC0C,OAD5B,EAAf;;AAGA,KAZO;;AAcRI,YAdQ,oBAcCL,IAdD,EAcM;AACb9C,aAAO,CAACC,GAAR,CAAY6C,IAAZ;AACA,UAAIM,UAAU,GAACN,IAAI,CAACG,UAApB;AACAnC,SAAG,CAACuC,cAAJ,CAAmB,YAAnB,EAAgCD,UAAhC;AACAtC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,4CAA0C+C,UADhC,EAAf;;AAGA,KArBO;AAsBRE,iBAtBQ,2BAsBQ;AACf,UAAI1C,IAAI,GAAG,IAAX;AACA,UAAIP,GAAG,GAAG,8BAAV;;AAEA,UAAIkD,KAAK,GAAG;AACXC,wBAAgB,EAAC5C,IAAI,CAAC+B,OADX;AAEXc,eAAO,EAAE3C,GAAG,CAACC,cAAJ,CAAmB,QAAnB,CAFE;AAGXkC,kBAAU,EAAC,EAHA;AAIXS,YAAI,EAAC5C,GAAG,CAACC,cAAJ,CAAmB,MAAnB,CAJM,EAAZ;;AAMCf,aAAO,CAACC,GAAR,CAAY,YAAZ,EAAyBsD,KAAzB;AACDI,mBAAIvD,IAAJ,CAASC,GAAT,EAAckD,KAAd,EAAqB,KAArB,EAA4BK,IAA5B,CAAiC,UAAAC,CAAC,EAAI;AACrC7D,eAAO,CAACC,GAAR,CAAY4D,CAAZ;AACE;AACFjD,YAAI,CAACmB,SAAL,GAAiB8B,CAAC,CAACvD,IAAnB;AACAM,YAAI,CAACqB,SAAL,GAAiB4B,CAAC,CAACvD,IAAnB;AACA,OALD,EAKGwD,KALH,CAKS,UAAAC,GAAG,EAAI;AACf/D,eAAO,CAACC,GAAR,CAAY8D,GAAZ;AACA,OAPD;AAQA,KAzCO;AA0CR;AACAC,OA3CQ,eA2CJlB,IA3CI,EA2CC;AACP,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACD;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,6CAA2C0C,OADjC,EAAf;;;AAIA,KAlDO;AAmDRkB,gBAnDQ,wBAmDKxC,CAnDL,EAmDQ;AACfzB,aAAO,CAACC,GAAR,CAAYwB,CAAZ;AACA,WAAKO,OAAL,GAAeP,CAAC,CAACyC,MAAF,CAASC,KAAxB;;AAEA,KAvDO;AAwDR;AACAC,WAzDQ,mBAyDAtB,IAzDA,EAyDK;AACZ,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,+CAA6C0C,OADnC,EAAf;;AAGA,KA9DO;AA+DR;AACAsB,YAhEQ,oBAgECvB,IAhED,EAgEM;AACb,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,2CAAyC0C,OAD/B,EAAf;;AAGA,KArEO;AAsER;AACAuB,cAvEQ,sBAuEGxB,IAvEH,EAuEQ;AACf,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,+BAA6B0C,OADnB,EAAf;;AAGA,KA5EO;AA6ERwB,UA7EQ,oBA6EC;AACR,UAAI,KAAKvC,OAAL,IAAgB,EAApB,EAAwB;AACvB,aAAKsB,aAAL;AACA,OAFD,MAEO;AACNtD,eAAO,CAACC,GAAR,CAAY,UAAZ;AACA,YAAIuE,aAAa,GAAG,EAApB;AACA,YAAIC,YAAY,GAAG,KAAKxC,SAAxB;AACA,YAAIyC,IAAI,GAAG,EAAX,CAJM;AAKUD,oBALV,aAKN,oDAA8B,KAArBE,GAAqB;;AAE7BD,gBAAI,CAACE,IAAL,CAAUD,GAAG,CAACE,KAAd;AACA,WARK;AASL7E,eAAO,CAACC,GAAR,CAAY,IAAZ,EAAkByE,IAAlB;AACD,aAAK,IAAII,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGL,YAAY,CAACM,MAAjC,EAAyCD,CAAC,EAA1C,EAA8C;AAC7C,eAAK,IAAIE,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGN,IAAI,CAACK,MAAzB,EAAiCC,CAAC,EAAlC,EAAsC;;AAErC,gBAAIN,IAAI,CAACM,CAAD,CAAJ,CAAQC,OAAR,CAAgB,KAAKjD,OAArB,KAAiC,CAArC,EAAwC;AACvC,kBAAIgD,CAAC,IAAIF,CAAT,EAAY;AACXN,6BAAa,CAACI,IAAd,CAAmBH,YAAY,CAACK,CAAD,CAA/B;AACA;AACD;AACA;AACD;AACD;AACD9E,eAAO,CAACC,GAAR,CAAY,YAAZ,EAA0BuE,aAA1B;AACA,aAAKzC,SAAL,GAAiByC,aAAjB;AACA;AACD,KAxGO,EA5CK;;;AAuJdtE,QAAM,EAAC,kBAAU;AAChB,SAAKoD,aAAL;AACA,GAzJa,E;;;;;;;;;;;;;AClNf;AAAA;AAAA;AAAA;AAAw3B,CAAgB,y3BAAG,EAAC,C;;;;;;;;;;;ACA54B;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA;AAAA;AAA+2B,CAAgB,g3BAAG,EAAC,C;;;;;;;;;;;ACAn4B;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACuD;AACL;AACa;;;AAG/D;AACqK;AACrK,gBAAgB,+KAAU;AAC1B,EAAE,yEAAM;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACe,gF","file":"pages/budgetshenhe/budgetshenhe.js","sourcesContent":["import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"","import 'uni-pages';import '@dcloudio/uni-stat';\nimport Vue from 'vue'\nimport Page from './pages/budgetshenhe/budgetshenhe.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./budgetshenhe.vue?vue&type=template&id=1d65d1ed&\"\nvar renderjs\nimport script from \"./budgetshenhe.vue?vue&type=script&lang=js&\"\nexport * from \"./budgetshenhe.vue?vue&type=script&lang=js&\"\nimport style0 from \"./budgetshenhe.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue\"\nexport default component.exports","\nexport default {\n\tonLaunch: function() {\n\t\tconsole.log('App Launch')\n\t\t// plus.screen.lockOrientation('portrait-primary');\n\t},\n\tonShow: function() {\n\n\t\tconsole.log('App Show')\n\t},\n\tonHide: function() {\n\t\tconsole.log('App Hide')\n\t},\n\tpost: function(url, data, method) {\n\n\t\t// (showLoad == undefined || showLoad) ?\n\t\t// wx.showLoading({\n\t\t// title: '加载中',\n\t\t// }) : ''\n\t\t// wx.showNavigationBarLoading()\n\t\tvar promise = new Promise((resolve, reject) => {\n\t\t\t//init\n\t\t\tlet that = this,\n\t\t\t\ttoken = uni.getStorageSync('token'),\n\t\t\t\theader = {\n\t\t\t\t\ttoken: token || ''\n\t\t\t\t},\n\t\t\t\tpostData;\n\n\t\t\t// console.log(token,\"token\")\n\t\t\t//网络请求 \n\t\t\tuni.request({\n\t\t\t\turl: this.globalData.baseUrl + url,\n\t\t\t\tdata: data,\n\t\t\t\tmethod: method,\n\t\t\t\theader: header,\n\t\t\t\tsuccess: function(res) {\n\t\t\t\t\t// console.log(res)//返回取得的数据\n\t\t\t\t\t// console.log(res)\n\t\t\t\t\tif (res.statusCode == 200) {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// uni.showToast({\n\t\t\t\t\t\t// \ttitle: res.data.msg,\n\t\t\t\t\t\t// \ticon: 'none',\n\t\t\t\t\t\t// })\n\t\t\t\t\t\treject(res.data)\n\t\t\t\t\t\t// if (res.data.code == '401') {}\n\t\t\t\t\t}\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading(): \"\";\n\t\t\t\t\t// wx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tfail: function(e) {\n\t\t\t\t\tconsole.log(e)\n\t\t\t\t\treject('网络出错');\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading() : \"\";\n\t\t\t\t\twx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tcomplete: function(daa) {\n\t\t\t\t\t// console.log(daa)\n\t\t\t\t}\n\t\t\t})\n\t\t});\n\t\treturn promise;\n\t},\n\tglobalData: {\n\t\tuserInfo: null,\n\t\t// baseUrl: 'http://icrgangjuren.w.brotop.cn/'\n\t\tbaseUrl: 'https://www.bjzha.net/api/'\n\t}\n}\n","export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=template&id=1d65d1ed&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=script&lang=js&\"","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\nimport app from \"../../App.vue\";\nexport default {\n\tdata() {\n\t\treturn {\n\t\t\tzixunlist: [],\n\t\t\tkeyword: '',\n\t\t\tquerylist: [],\n\t\t\ttype:'',\n\t\t\tshowhide:''\n\t\t}\n\t},\n\tonLoad(options) {\n\t\t\tthis.showhide = uni.getStorageSync(\"showhide\");\n\t\t\tconsole.log('4389489',JSON.stringify(this.showhide))\n\t\tthis.type=options.type;\n\t\tthis.type=Number(this.type)\n\t\tswitch(this.type){\n\t\t\tcase 1:\n\t\t\tconsole.log(this.type)\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'预算项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_budget'\n\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\tconsole.log(this.type)\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'结算项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_settlement'\n\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'决算项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_change'\n\t\t\tbreak;\n\t\t\tcase 4:\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'土地成本项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_land'\n\t\t\tbreak;\n\t\t}\n\t},\n\tmethods: {\n\t\t// 项目组分配\n\t\txiangmuzufen(item) {\n\t\t\t// let item = e.currentTarget.dataset.item;\n\t\t\t let newitem = JSON.stringify(item)\n\t\t\tconsole.log(item)\n\t\t\tlet finorgid = item.finorgid;\n\t\t\tlet fprojectid = item.fprojectid;\n\n\t\t\tuni.navigateTo({\n\t\t\t\turl: '../zixunfenpei/zixunfenpei?item=' + newitem\n\t\t\t})\n\t\t},\n\t\t\n\t\tquestion(item){\n\t\t\tconsole.log(item)\n\t\t\tlet questionid=item.fprojectid\n\t\t\tuni.setStorageSync(\"questionid\",questionid)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/question/question?quesprojectid='+questionid\n\t\t\t})\n\t\t},\n\t\tgetbudgetlist() {\n\t\t\tlet that = this;\n\t\t\tlet url = \"project/Get_ProjectInventory\";\n\t\t\t\n\t\t\tlet param = {\n\t\t\t\tfprojectcategory:that.project,\n\t\t\t\tfuserid: uni.getStorageSync(\"userid\"),\n\t\t\t\tfprojectid:'',\n\t\t\t\trole:uni.getStorageSync(\"role\"),\n\t\t\t}\n\t\t\t console.log('8877665544',param)\n\t\t\tapp.post(url, param, 'get').then(r => {\n\t\t\t\tconsole.log(r)\n\t\t\t\t // console.log('数组',JSON.stringify(r.data));\n\t\t\t\tthat.zixunlist = r.data;\n\t\t\t\tthat.querylist = r.data;\n\t\t\t}).catch(err => {\n\t\t\t\tconsole.log(err)\n\t\t\t})\n\t\t},\n\t\t// 查看\n\t\tsee(item){\n\t\t\t let newitem=JSON.stringify(item);\n\t\t\t// console.log(newitem)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/projectziliao/projectziliao?item='+newitem\n\t\t\t})\n\t\t\t\n\t\t},\n\t\tenterxiangmu(e) {\n\t\t\tconsole.log(e)\n\t\t\tthis.keyword = e.target.value;\n\n\t\t},\n\t\t// 经办人\n\t\tjingban(item){\n\t\t\tlet newitem=JSON.stringify(item)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/examinejingban/examinejingban?item='+newitem\n\t\t\t})\n\t\t},\n\t\t// 评审报告\n\t\tpingshen(item){\n\t\t\tlet newitem=JSON.stringify(item)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/reviewreport/reviewreport?item='+newitem\n\t\t\t})\n\t\t},\n\t\t// 合同发票确认\n\t\tconcatsure(item){\n\t\t\tlet newitem=JSON.stringify(item)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/concat/concat?item='+newitem\n\t\t\t})\n\t\t},\t\n\t\tchaxun() {\n\t\t\tif (this.keyword == '') {\n\t\t\t\tthis.getbudgetlist();\n\t\t\t} else {\n\t\t\t\tconsole.log(9988776655)\n\t\t\t\tlet newxiangmuarr = [];\n\t\t\t\tlet newzixunlist = this.querylist;\n\t\t\t\tlet name = [];\n\t\t\t\tfor (var obj of newzixunlist) {\n\t\t\t\t\t\n\t\t\t\t\tname.push(obj.fname);\n\t\t\t\t}\n\t\t\t\t console.log('名称', name)\n\t\t\t\tfor (var i = 0; i < newzixunlist.length; i++) {\n\t\t\t\t\tfor (var j = 0; j < name.length; j++) {\n\n\t\t\t\t\t\tif (name[j].indexOf(this.keyword) >= 0) {\n\t\t\t\t\t\t\tif (j == i) {\n\t\t\t\t\t\t\t\tnewxiangmuarr.push(newzixunlist[i])\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// console.log(9999)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tconsole.log('9999000777', newxiangmuarr);\n\t\t\t\tthis.zixunlist = newxiangmuarr;\n\t\t\t}\n\t\t}\n\n\t},\n\tonShow:function(){\n\t\tthis.getbudgetlist();\n\t}\n\n}\n","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1587602393526\n var cssReload = require(\"F:/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1587602393506\n var cssReload = require(\"F:/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","var render, staticRenderFns, recyclableRender, components\nvar renderjs\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue\"\nexport default component.exports"],"sourceRoot":""}
\ No newline at end of file
{"version":3,"sources":["webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?d032","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/main.js","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?2359","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?9894","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?7c6b","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?a654","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?e5d6","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue?579a","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?7f10","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?431f","webpack:///G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue?1912"],"names":["createPage","Page","onLaunch","console","log","onShow","onHide","post","url","data","method","promise","Promise","resolve","reject","that","token","uni","getStorageSync","header","postData","request","globalData","baseUrl","success","res","statusCode","fail","e","wx","hideNavigationBarLoading","complete","daa","userInfo","zixunlist","keyword","querylist","type","showhide","onLoad","options","JSON","stringify","Number","setNavigationBarTitle","title","project","methods","xiangmuzufen","item","newitem","finorgid","fprojectid","navigateTo","question","questionid","setStorageSync","getbudgetlist","param","fprojectcategory","fuserid","role","app","then","r","catch","err","see","enterxiangmu","target","value","jingban","pingshen","concatsure","chaxun","newxiangmuarr","newzixunlist","name","obj","push","fname","i","length","j","indexOf"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAA6lB,CAAgB,unBAAG,EAAC,C;;;;;;;;;;;;kDCAjnB,wCAAmB;AACnB;AACA,kH;AACAA,UAAU,CAACC,qBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAyH;AACzH;AACgE;AACL;AACa;;;AAGxE;AACqK;AACrK,gBAAgB,+KAAU;AAC1B,EAAE,kFAAM;AACR,EAAE,uFAAM;AACR,EAAE,gGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,2FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;;ACtBA;AACdC,UAAQ,EAAE,oBAAW;AACpBC,WAAO,CAACC,GAAR,CAAY,YAAZ;AACA;AACA,GAJa;AAKdC,QAAM,EAAE,kBAAW;;AAElBF,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GARa;AASdE,QAAM,EAAE,kBAAW;AAClBH,WAAO,CAACC,GAAR,CAAY,UAAZ;AACA,GAXa;AAYdG,MAAI,EAAE,cAASC,GAAT,EAAcC,IAAd,EAAoBC,MAApB,EAA4B;;AAEjC;AACA;AACA;AACA;AACA;AACA,QAAIC,OAAO,GAAG,IAAIC,OAAJ,CAAY,UAACC,OAAD,EAAUC,MAAV,EAAqB;AAC9C;AACA,UAAIC,IAAI,GAAG,KAAX;AACCC,WAAK,GAAGC,GAAG,CAACC,cAAJ,CAAmB,OAAnB,CADT;AAECC,YAAM,GAAG;AACRH,aAAK,EAAEA,KAAK,IAAI,EADR,EAFV;;AAKCI,cALD;;AAOA;AACA;AACAH,SAAG,CAACI,OAAJ,CAAY;AACXb,WAAG,EAAE,KAAI,CAACc,UAAL,CAAgBC,OAAhB,GAA0Bf,GADpB;AAEXC,YAAI,EAAEA,IAFK;AAGXC,cAAM,EAAEA,MAHG;AAIXS,cAAM,EAAEA,MAJG;AAKXK,eAAO,EAAE,iBAASC,GAAT,EAAc;AACtB;AACA;AACA,cAAIA,GAAG,CAACC,UAAJ,IAAkB,GAAtB,EAA2B;AAC1Bb,mBAAO,CAACY,GAAD,CAAP;AACA,WAFD,MAEO;AACN;AACA;AACA;AACA;AACAX,kBAAM,CAACW,GAAG,CAAChB,IAAL,CAAN;AACA;AACA;AACD;AACA;AACA,SApBU;AAqBXkB,YAAI,EAAE,cAASC,CAAT,EAAY;AACjBzB,iBAAO,CAACC,GAAR,CAAYwB,CAAZ;AACAd,gBAAM,CAAC,MAAD,CAAN;AACA;AACAe,YAAE,CAACC,wBAAH;AACA,SA1BU;AA2BXC,gBAAQ,EAAE,kBAASC,GAAT,EAAc;AACvB;AACA,SA7BU,EAAZ;;AA+BA,KA1Ca,CAAd;AA2CA,WAAOrB,OAAP;AACA,GA/Da;AAgEdW,YAAU,EAAE;AACXW,YAAQ,EAAE,IADC;AAEX;AACAV,WAAO,EAAE,4BAHE,EAhEE,E;;;;;;;;;;;;;ACDf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAsmB,CAAgB,goBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiN1nB,+E;AACe;AACdd,MADc,kBACP;AACN,WAAO;AACNyB,eAAS,EAAE,EADL;AAENC,aAAO,EAAE,EAFH;AAGNC,eAAS,EAAE,EAHL;AAINC,UAAI,EAAC,EAJC;AAKNC,cAAQ,EAAC,EALH,EAAP;;AAOA,GATa;AAUdC,QAVc,kBAUPC,OAVO,EAUE;AACd,SAAKF,QAAL,GAAgBrB,GAAG,CAACC,cAAJ,CAAmB,UAAnB,CAAhB;AACAf,WAAO,CAACC,GAAR,CAAY,SAAZ,EAAsBqC,IAAI,CAACC,SAAL,CAAe,KAAKJ,QAApB,CAAtB;AACD,SAAKD,IAAL,GAAUG,OAAO,CAACH,IAAlB;AACA,SAAKA,IAAL,GAAUM,MAAM,CAAC,KAAKN,IAAN,CAAhB;AACA,YAAO,KAAKA,IAAZ;AACC,WAAK,CAAL;AACAlC,eAAO,CAACC,GAAR,CAAY,KAAKiC,IAAjB;AACApB,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,QADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,oBAAb;AACA;AACA,WAAK,CAAL;AACA3C,eAAO,CAACC,GAAR,CAAY,KAAKiC,IAAjB;AACApB,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,QADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,wBAAb;AACA;AACA,WAAK,CAAL;AACA7B,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,QADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,oBAAb;AACA;AACA,WAAK,CAAL;AACA7B,WAAG,CAAC2B,qBAAJ,CAA0B;AACxBC,eAAK,EAAC,UADkB,EAA1B;;AAGA,aAAKC,OAAL,GAAa,kBAAb;AACA,cA1BD;;AA4BA,GA3Ca;AA4CdC,SAAO,EAAE;AACR;AACAC,gBAFQ,wBAEKC,IAFL,EAEW;AAClB;AACC,UAAIC,OAAO,GAAGT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAd;AACD9C,aAAO,CAACC,GAAR,CAAY6C,IAAZ;AACA,UAAIE,QAAQ,GAAGF,IAAI,CAACE,QAApB;AACA,UAAIC,UAAU,GAAGH,IAAI,CAACG,UAAtB;;AAEAnC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAE,qCAAqC0C,OAD5B,EAAf;;AAGA,KAZO;;AAcRI,YAdQ,oBAcCL,IAdD,EAcM;AACb9C,aAAO,CAACC,GAAR,CAAY6C,IAAZ;AACA,UAAIM,UAAU,GAACN,IAAI,CAACG,UAApB;AACAnC,SAAG,CAACuC,cAAJ,CAAmB,YAAnB,EAAgCD,UAAhC;AACAtC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,4CAA0C+C,UADhC,EAAf;;AAGA,KArBO;AAsBRE,iBAtBQ,2BAsBQ;AACf,UAAI1C,IAAI,GAAG,IAAX;AACA,UAAIP,GAAG,GAAG,8BAAV;;AAEA,UAAIkD,KAAK,GAAG;AACXC,wBAAgB,EAAC5C,IAAI,CAAC+B,OADX;AAEXc,eAAO,EAAE3C,GAAG,CAACC,cAAJ,CAAmB,QAAnB,CAFE;AAGXkC,kBAAU,EAAC,EAHA;AAIXS,YAAI,EAAC5C,GAAG,CAACC,cAAJ,CAAmB,MAAnB,CAJM,EAAZ;;AAMCf,aAAO,CAACC,GAAR,CAAY,YAAZ,EAAyBsD,KAAzB;AACDI,mBAAIvD,IAAJ,CAASC,GAAT,EAAckD,KAAd,EAAqB,KAArB,EAA4BK,IAA5B,CAAiC,UAAAC,CAAC,EAAI;AACrC7D,eAAO,CAACC,GAAR,CAAY4D,CAAZ;AACE;AACFjD,YAAI,CAACmB,SAAL,GAAiB8B,CAAC,CAACvD,IAAnB;AACAM,YAAI,CAACqB,SAAL,GAAiB4B,CAAC,CAACvD,IAAnB;AACA,OALD,EAKGwD,KALH,CAKS,UAAAC,GAAG,EAAI;AACf/D,eAAO,CAACC,GAAR,CAAY8D,GAAZ;AACA,OAPD;AAQA,KAzCO;AA0CR;AACAC,OA3CQ,eA2CJlB,IA3CI,EA2CC;AACP,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACD;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,6CAA2C0C,OADjC,EAAf;;;AAIA,KAlDO;AAmDRkB,gBAnDQ,wBAmDKxC,CAnDL,EAmDQ;AACfzB,aAAO,CAACC,GAAR,CAAYwB,CAAZ;AACA,WAAKO,OAAL,GAAeP,CAAC,CAACyC,MAAF,CAASC,KAAxB;;AAEA,KAvDO;AAwDR;AACAC,WAzDQ,mBAyDAtB,IAzDA,EAyDK;AACZ,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,+CAA6C0C,OADnC,EAAf;;AAGA,KA9DO;AA+DR;AACAsB,YAhEQ,oBAgECvB,IAhED,EAgEM;AACb,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,2CAAyC0C,OAD/B,EAAf;;AAGA,KArEO;AAsER;AACAuB,cAvEQ,sBAuEGxB,IAvEH,EAuEQ;AACf,UAAIC,OAAO,GAACT,IAAI,CAACC,SAAL,CAAeO,IAAf,CAAZ;AACAhC,SAAG,CAACoC,UAAJ,CAAe;AACd7C,WAAG,EAAC,+BAA6B0C,OADnB,EAAf;;AAGA,KA5EO;AA6ERwB,UA7EQ,oBA6EC;AACR,UAAI,KAAKvC,OAAL,IAAgB,EAApB,EAAwB;AACvB,aAAKsB,aAAL;AACA,OAFD,MAEO;AACNtD,eAAO,CAACC,GAAR,CAAY,UAAZ;AACA,YAAIuE,aAAa,GAAG,EAApB;AACA,YAAIC,YAAY,GAAG,KAAKxC,SAAxB;AACA,YAAIyC,IAAI,GAAG,EAAX,CAJM;AAKUD,oBALV,aAKN,oDAA8B,KAArBE,GAAqB;;AAE7BD,gBAAI,CAACE,IAAL,CAAUD,GAAG,CAACE,KAAd;AACA,WARK;AASL7E,eAAO,CAACC,GAAR,CAAY,IAAZ,EAAkByE,IAAlB;AACD,aAAK,IAAII,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGL,YAAY,CAACM,MAAjC,EAAyCD,CAAC,EAA1C,EAA8C;AAC7C,eAAK,IAAIE,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGN,IAAI,CAACK,MAAzB,EAAiCC,CAAC,EAAlC,EAAsC;;AAErC,gBAAIN,IAAI,CAACM,CAAD,CAAJ,CAAQC,OAAR,CAAgB,KAAKjD,OAArB,KAAiC,CAArC,EAAwC;AACvC,kBAAIgD,CAAC,IAAIF,CAAT,EAAY;AACXN,6BAAa,CAACI,IAAd,CAAmBH,YAAY,CAACK,CAAD,CAA/B;AACA;AACD;AACA;AACD;AACD;AACD9E,eAAO,CAACC,GAAR,CAAY,YAAZ,EAA0BuE,aAA1B;AACA,aAAKzC,SAAL,GAAiByC,aAAjB;AACA;AACD,KAxGO,EA5CK;;;AAuJdtE,QAAM,EAAC,kBAAU;AAChB,SAAKoD,aAAL;AACA,GAzJa,E;;;;;;;;;;;;;AClNf;AAAA;AAAA;AAAA;AAAw3B,CAAgB,y3BAAG,EAAC,C;;;;;;;;;;;ACA54B;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA;AAAA;AAA+2B,CAAgB,g3BAAG,EAAC,C;;;;;;;;;;;ACAn4B;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACuD;AACL;AACa;;;AAG/D;AACqK;AACrK,gBAAgB,+KAAU;AAC1B,EAAE,yEAAM;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACe,gF","file":"pages/budgetshenhe/budgetshenhe.js","sourcesContent":["import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=script&lang=js&\"","import 'uni-pages';import '@dcloudio/uni-stat';\nimport Vue from 'vue'\nimport Page from './pages/budgetshenhe/budgetshenhe.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./budgetshenhe.vue?vue&type=template&id=1d65d1ed&\"\nvar renderjs\nimport script from \"./budgetshenhe.vue?vue&type=script&lang=js&\"\nexport * from \"./budgetshenhe.vue?vue&type=script&lang=js&\"\nimport style0 from \"./budgetshenhe.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/pages/budgetshenhe/budgetshenhe.vue\"\nexport default component.exports","\nexport default {\n\tonLaunch: function() {\n\t\tconsole.log('App Launch')\n\t\t// plus.screen.lockOrientation('portrait-primary');\n\t},\n\tonShow: function() {\n\n\t\tconsole.log('App Show')\n\t},\n\tonHide: function() {\n\t\tconsole.log('App Hide')\n\t},\n\tpost: function(url, data, method) {\n\n\t\t// (showLoad == undefined || showLoad) ?\n\t\t// wx.showLoading({\n\t\t// title: '加载中',\n\t\t// }) : ''\n\t\t// wx.showNavigationBarLoading()\n\t\tvar promise = new Promise((resolve, reject) => {\n\t\t\t//init\n\t\t\tlet that = this,\n\t\t\t\ttoken = uni.getStorageSync('token'),\n\t\t\t\theader = {\n\t\t\t\t\ttoken: token || ''\n\t\t\t\t},\n\t\t\t\tpostData;\n\n\t\t\t// console.log(token,\"token\")\n\t\t\t//网络请求 \n\t\t\tuni.request({\n\t\t\t\turl: this.globalData.baseUrl + url,\n\t\t\t\tdata: data,\n\t\t\t\tmethod: method,\n\t\t\t\theader: header,\n\t\t\t\tsuccess: function(res) {\n\t\t\t\t\t// console.log(res)//返回取得的数据\n\t\t\t\t\t// console.log(res)\n\t\t\t\t\tif (res.statusCode == 200) {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// uni.showToast({\n\t\t\t\t\t\t// \ttitle: res.data.msg,\n\t\t\t\t\t\t// \ticon: 'none',\n\t\t\t\t\t\t// })\n\t\t\t\t\t\treject(res.data)\n\t\t\t\t\t\t// if (res.data.code == '401') {}\n\t\t\t\t\t}\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading(): \"\";\n\t\t\t\t\t// wx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tfail: function(e) {\n\t\t\t\t\tconsole.log(e)\n\t\t\t\t\treject('网络出错');\n\t\t\t\t\t// (showLoad || showLoad == undefined) ? wx.hideLoading() : \"\";\n\t\t\t\t\twx.hideNavigationBarLoading()\n\t\t\t\t},\n\t\t\t\tcomplete: function(daa) {\n\t\t\t\t\t// console.log(daa)\n\t\t\t\t}\n\t\t\t})\n\t\t});\n\t\treturn promise;\n\t},\n\tglobalData: {\n\t\tuserInfo: null,\n\t\t// baseUrl: 'http://icrgangjuren.w.brotop.cn/'\n\t\tbaseUrl: 'https://www.bjzha.net/api/'\n\t}\n}\n","export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\templateLoader.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--16-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\template.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-uni-app-loader\\\\page-meta.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=template&id=1d65d1ed&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\babel-loader\\\\lib\\\\index.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--12-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\script.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=script&lang=js&\"","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\nimport app from \"../../App.vue\";\nexport default {\n\tdata() {\n\t\treturn {\n\t\t\tzixunlist: [],\n\t\t\tkeyword: '',\n\t\t\tquerylist: [],\n\t\t\ttype:'',\n\t\t\tshowhide:''\n\t\t}\n\t},\n\tonLoad(options) {\n\t\t\tthis.showhide = uni.getStorageSync(\"showhide\");\n\t\t\tconsole.log('4389489',JSON.stringify(this.showhide))\n\t\tthis.type=options.type;\n\t\tthis.type=Number(this.type)\n\t\tswitch(this.type){\n\t\t\tcase 1:\n\t\t\tconsole.log(this.type)\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'预算项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_budget'\n\t\t\tbreak;\n\t\t\tcase 2:\n\t\t\tconsole.log(this.type)\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'结算项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_settlement'\n\t\t\tbreak;\n\t\t\tcase 3:\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'决算项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_change'\n\t\t\tbreak;\n\t\t\tcase 4:\n\t\t\tuni.setNavigationBarTitle({\n\t\t\t  title:'土地成本项目审核'\n\t\t\t})\n\t\t\tthis.project='prj_toaudit_land'\n\t\t\tbreak;\n\t\t}\n\t},\n\tmethods: {\n\t\t// 项目组分配\n\t\txiangmuzufen(item) {\n\t\t\t// let item = e.currentTarget.dataset.item;\n\t\t\t let newitem = JSON.stringify(item)\n\t\t\tconsole.log(item)\n\t\t\tlet finorgid = item.finorgid;\n\t\t\tlet fprojectid = item.fprojectid;\n\n\t\t\tuni.navigateTo({\n\t\t\t\turl: '../zixunfenpei/zixunfenpei?item=' + newitem\n\t\t\t})\n\t\t},\n\t\t\n\t\tquestion(item){\n\t\t\tconsole.log(item)\n\t\t\tlet questionid=item.fprojectid\n\t\t\tuni.setStorageSync(\"questionid\",questionid)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/question/question?quesprojectid='+questionid\n\t\t\t})\n\t\t},\n\t\tgetbudgetlist() {\n\t\t\tlet that = this;\n\t\t\tlet url = \"project/Get_ProjectInventory\";\n\t\t\t\n\t\t\tlet param = {\n\t\t\t\tfprojectcategory:that.project,\n\t\t\t\tfuserid: uni.getStorageSync(\"userid\"),\n\t\t\t\tfprojectid:'',\n\t\t\t\trole:uni.getStorageSync(\"role\"),\n\t\t\t}\n\t\t\t console.log('8877665544',param)\n\t\t\tapp.post(url, param, 'get').then(r => {\n\t\t\t\tconsole.log(r)\n\t\t\t\t // console.log('数组',JSON.stringify(r.data));\n\t\t\t\tthat.zixunlist = r.data;\n\t\t\t\tthat.querylist = r.data;\n\t\t\t}).catch(err => {\n\t\t\t\tconsole.log(err)\n\t\t\t})\n\t\t},\n\t\t// 查看\n\t\tsee(item){\n\t\t\t let newitem=JSON.stringify(item);\n\t\t\t// console.log(newitem)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/projectziliao/projectziliao?item='+newitem\n\t\t\t})\n\t\t\t\n\t\t},\n\t\tenterxiangmu(e) {\n\t\t\tconsole.log(e)\n\t\t\tthis.keyword = e.target.value;\n\n\t\t},\n\t\t// 经办人\n\t\tjingban(item){\n\t\t\tlet newitem=JSON.stringify(item)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/examinejingban/examinejingban?item='+newitem\n\t\t\t})\n\t\t},\n\t\t// 评审报告\n\t\tpingshen(item){\n\t\t\tlet newitem=JSON.stringify(item)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/reviewreport/reviewreport?item='+newitem\n\t\t\t})\n\t\t},\n\t\t// 合同发票确认\n\t\tconcatsure(item){\n\t\t\tlet newitem=JSON.stringify(item)\n\t\t\tuni.navigateTo({\n\t\t\t\turl:'/pages/concat/concat?item='+newitem\n\t\t\t})\n\t\t},\t\n\t\tchaxun() {\n\t\t\tif (this.keyword == '') {\n\t\t\t\tthis.getbudgetlist();\n\t\t\t} else {\n\t\t\t\tconsole.log(9988776655)\n\t\t\t\tlet newxiangmuarr = [];\n\t\t\t\tlet newzixunlist = this.querylist;\n\t\t\t\tlet name = [];\n\t\t\t\tfor (var obj of newzixunlist) {\n\t\t\t\t\t\n\t\t\t\t\tname.push(obj.fname);\n\t\t\t\t}\n\t\t\t\t console.log('名称', name)\n\t\t\t\tfor (var i = 0; i < newzixunlist.length; i++) {\n\t\t\t\t\tfor (var j = 0; j < name.length; j++) {\n\n\t\t\t\t\t\tif (name[j].indexOf(this.keyword) >= 0) {\n\t\t\t\t\t\t\tif (j == i) {\n\t\t\t\t\t\t\t\tnewxiangmuarr.push(newzixunlist[i])\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t// console.log(9999)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tconsole.log('9999000777', newxiangmuarr);\n\t\t\t\tthis.zixunlist = newxiangmuarr;\n\t\t\t}\n\t\t}\n\n\t},\n\tonShow:function(){\n\t\tthis.getbudgetlist();\n\t}\n\n}\n","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./budgetshenhe.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1587698424556\n var cssReload = require(\"F:/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\mini-css-extract-plugin\\\\dist\\\\loader.js??ref--6-oneOf-1-0!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\css-loader\\\\dist\\\\cjs.js??ref--6-oneOf-1-1!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\loaders\\\\stylePostLoader.js!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\webpack-preprocess-loader\\\\index.js??ref--6-oneOf-1-2!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\postcss-loader\\\\src\\\\index.js??ref--6-oneOf-1-3!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\index.js??vue-loader-options!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\webpack-uni-mp-loader\\\\lib\\\\style.js!./App.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1587698424531\n var cssReload = require(\"F:/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","var render, staticRenderFns, recyclableRender, components\nvar renderjs\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!F:\\\\HBuilderX\\\\plugins\\\\uniapp-cli\\\\node_modules\\\\@dcloudio\\\\vue-cli-plugin-uni\\\\packages\\\\vue-loader\\\\lib\\\\runtime\\\\componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"G:/项目/投资管理项目/touzixiaohcengxu/touziprogram/App.vue\"\nexport default component.exports"],"sourceRoot":""}
\ No newline at end of file
... ...