|
@@ -179,6 +179,20 @@
|
|
|
<ProReportField v-if="tool.checkAuth($route.name,'ProReportField')" @queryRule="querySite_Parameter" :data="setData"></ProReportField>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="panel" style="margin-bottom:16px">
|
|
|
+ <div class="flex-align-center flex-between">
|
|
|
+ <div class="flex-align-stretch">
|
|
|
+ <img width="72" height="72" src="../../../assets/icons/projectTradefield.svg" alt="">
|
|
|
+ <div class="text-panel">
|
|
|
+ <p class="explain-title">数据统计及报表排除非营业部门数据</p>
|
|
|
+ <p class="explain-tips">当前设置:
|
|
|
+ <span>{{querysaledata == 0?'关闭':'开启'}}</span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <statementData v-if="tool.checkAuth($route.name,'statementData')" @queryRule="querySite_Parameter" :data="setData"></statementData>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div class="container normal-panel" style="display:flex;justify-content:space-around;border-bottom:none">
|
|
|
<el-descriptions title="广告位管理"></el-descriptions>
|
|
|
</div>
|
|
@@ -209,6 +223,7 @@ import projectReportRule from "@/HManagement/siteManage/securityConfig/modules/p
|
|
|
import projectTarget from './components/projectTarget/index'
|
|
|
import quotedPrice from './modules/quotedPrice'
|
|
|
import ProReportField from './modules/ProReportField'
|
|
|
+import statementData from './modules/statementData'
|
|
|
import {log} from "@antv/g2plot/lib/utils";
|
|
|
|
|
|
export default {
|
|
@@ -226,7 +241,8 @@ export default {
|
|
|
projectReportRule,
|
|
|
projectTarget,
|
|
|
quotedPrice,
|
|
|
- ProReportField
|
|
|
+ ProReportField,
|
|
|
+ statementData
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
@@ -241,7 +257,8 @@ export default {
|
|
|
projectprotectionperiod:'',
|
|
|
setData:'',
|
|
|
quotedpricerecheck:'',
|
|
|
- project_tradefield:''
|
|
|
+ project_tradefield:'',
|
|
|
+ querysaledata:''
|
|
|
}
|
|
|
},
|
|
|
computed:{
|
|
@@ -283,6 +300,7 @@ export default {
|
|
|
this.project_occupancy_ratio = res.data.project_occupancy_ratio
|
|
|
this.quotedpricerecheck = res.data.quotedpricerecheck
|
|
|
this.project_tradefield = res.data.project_tradefield
|
|
|
+ this.querysaledata = res.data.querysaledata
|
|
|
console.log(res.data,'数据2');
|
|
|
this.setData = res.data
|
|
|
this.$refs.messageTips.form = Object.assign({},this.$refs.messageTips.form,res.data)
|