|
|
|
@ -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 = () => {
|
|
|
|
|