Commit 4fd4e218 authored by liudong1993's avatar liudong1993

1

parent f82ca9f8
......@@ -87,6 +87,16 @@
<el-option :label="$t('pub.no')" :value="2"></el-option>
</el-select>
</li>
<li>
<span>
<em>
{{$t('scen.sc_ftTime')}}
</em>
</span>
<el-date-picker class="h34" v-model="missionDate" @change="timeAdd()" type="daterange"
value-format="yyyy-MM-dd">
</el-date-picker>
</li>
<li style="float:right;padding-top:10px;color:#111111">{{$t('salesModule.JYETJ')}}{{datainfo.sumMoney}}</li>
<li>
<input type="button" class="hollowFixedBtn" :value="$t('ground.kehuditu')" @click="getMap()">
......@@ -435,6 +445,7 @@
CustomerException: [],
datainfo: {},
CustomerBrandList: [],
missionDate: [],
DepartmentId: null,
isSelLayer: false,
layerShow: false,
......@@ -453,6 +464,8 @@
orderBy: 'TradeMoney desc',
ExceptionCount: 0,
fanYong: -1,
STime: '',
ETime: ''
},
RecipientMsg: {
CustomerIdArr: [],
......@@ -593,6 +606,15 @@
};
},
methods: {
timeAdd(t) { // 日期格式
if (!this.missionDate) {
this.msg.STime = '';
this.msg.ETime = '';
return
}
this.msg.STime = this.missionDate[0];
this.msg.ETime = this.missionDate[1];
},
changeSort(type, name) {
if (type == 1) {
this.msg.jySort = this.msg.jySort === '' ? 'desc' : this.msg.jySort === 'desc' ? 'asc' : ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment