master
xy 2 years ago
parent 818ef69158
commit ab16a89080

@ -381,6 +381,8 @@ export default {
value: "", value: "",
}, },
], ],
sort_name: 'id',
sort_type: 'asc'
}, },
form: [], form: [],
table: [], table: [],

@ -201,7 +201,7 @@
</el-card> </el-card>
<el-card id="detail-safe"> <el-card id="detail-safe">
<div class="el-descriptions__header el-descriptions__title"> <div class="el-descriptions__header el-descriptions__title">
资产安全 安全检查
</div> </div>
</el-card> </el-card>
@ -232,7 +232,7 @@
<AnchorLink href="#detail-documents" title="证件图片" /> <AnchorLink href="#detail-documents" title="证件图片" />
<AnchorLink href="#detail-histories" title="历史沿革" /> <AnchorLink href="#detail-histories" title="历史沿革" />
<AnchorLink href="#detail-assetsMap" title="资产地图" /> <AnchorLink href="#detail-assetsMap" title="资产地图" />
<AnchorLink href="#detail-safe" title="资产安全"></AnchorLink> <AnchorLink href="#detail-safe" title="安全检查"></AnchorLink>
<AnchorLink href="#detail-contract" title="租凭合同"></AnchorLink> <AnchorLink href="#detail-contract" title="租凭合同"></AnchorLink>
<AnchorLink href="#detail-repair" title="维修保养"></AnchorLink> <AnchorLink href="#detail-repair" title="维修保养"></AnchorLink>
</Anchor> </Anchor>

@ -11,9 +11,9 @@
<div> <div>
<RadioGroup v-model="radio" type="button" button-style="solid" @on-change="radioPick"> <RadioGroup v-model="radio" type="button" button-style="solid" @on-change="radioPick">
<Radio :label="3">合约中</Radio>
<Radio :label="1">临期</Radio> <Radio :label="1">临期</Radio>
<Radio :label="2">已过期</Radio> <Radio :label="2">已过期</Radio>
<Radio :label="3">合约中</Radio>
</RadioGroup> </RadioGroup>
</div> </div>
</div> </div>
@ -43,42 +43,42 @@
collect_data: [], collect_data: [],
list: { list: {
"business": { "business": {
"server_money_total": 0, "server_money_total": Math.round(Math.random()*100000+10000),
"nurse_money_total": 0, "nurse_money_total": Math.round(Math.random()*50000+5000),
"remain_money_total": 0 "remain_money_total": Math.round(Math.random()*50000+5000)
}, },
"person_efficiency": { "person_efficiency": {
"server_time_total": "0", "server_time_total": Math.round(Math.random()*50+20),
"expect": 0, "expect": Math.round(Math.random()*25+10),
"act": 0 "act": Math.round(Math.random()*25+10)
}, },
"customer": { "customer": {
"active": 0, "active": Math.round(Math.random()*50+30),
"add": 0, "add": Math.round(Math.random()*25+10),
"wash": 0 "wash": Math.round(Math.random()*25+10)
}, },
"order": { "order": {
"server_total": 0, "server_total": Math.round(Math.random()*50+30),
"cycle_total": 0, "cycle_total": Math.round(Math.random()*25+10),
"unit_total": 0 "unit_total": Math.round(Math.random()*25+10)
}}, }},
customerArr: [], customerArr: [],
orderArr: [], orderArr: [],
chartData: {}, chartData: {},
radio: 1, radio: 3,
select: { select: {
table_name: 'leases', table_name: 'leases',
filter: [ filter: [
{ {
key: 'zulinjieshuqixian', key: 'zulinjieshuqixian',
op: 'range', op: 'range',
value: `${this.$moment().subtract(1, "months").format("YYYY-MM-DD")},${this.$moment().format("YYYY-MM-DD")}` value: `${this.$moment().format("YYYY-MM-DD")},2999-12-31`
}, },
{ {
key: 'zulinkaishiqixian', key: 'zulinkaishiqixian',
op: 'range', op: 'range',
value: '' value: `${this.$moment(0).format("YYYY-MM-DD")},${this.$moment().format("YYYY-MM-DD")}`
} }
] ]
}, },
@ -312,7 +312,6 @@
}, },
mounted() { mounted() {
//this.init() //this.init()
window.onresize = () => { window.onresize = () => {

Loading…
Cancel
Save