|
@@ -17,7 +17,7 @@
|
|
|
:replaceOrNotMap="true"
|
|
|
:defaultSearchData="defaultSearchData"
|
|
|
>
|
|
|
- <div slot="moreSearch">
|
|
|
+ <!-- <div slot="moreSearch">
|
|
|
<div style="margin-bottom: 10px">
|
|
|
<span
|
|
|
style="
|
|
@@ -40,7 +40,7 @@
|
|
|
>
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<!-- 创建工单 -->
|
|
|
<div class="cartographer_big" v-if="!(!!~['detail'].indexOf(pageType) && pageCode != '')">
|
|
|
<el-dialog
|
|
@@ -208,7 +208,7 @@ export default {
|
|
|
defaultSearchData: [],
|
|
|
workOrderType: 1,
|
|
|
cloneWorkOrder: null,
|
|
|
- value1: new Date(),
|
|
|
+ // value1: new Date(),
|
|
|
showTableBool: true,
|
|
|
fuhezhuangtai: {
|
|
|
DSHPG: [
|
|
@@ -233,12 +233,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
- value1() {
|
|
|
- this.showTableBool = false
|
|
|
- this.$nextTick(() => {
|
|
|
- this.showTableBool = true
|
|
|
- })
|
|
|
- }
|
|
|
+ // value1() {
|
|
|
+ // this.showTableBool = false
|
|
|
+ // this.$nextTick(() => {
|
|
|
+ // this.showTableBool = true
|
|
|
+ // })
|
|
|
+ // }
|
|
|
},
|
|
|
computed: {
|
|
|
moreParameters() {
|
|
@@ -639,28 +639,28 @@ export default {
|
|
|
if (pam.orderSmallTypeText) {
|
|
|
pam.params.push({ param: 'a.order_small_type_text', compare: '=', value: pam.orderSmallTypeText })
|
|
|
}
|
|
|
- if (this.value1) {
|
|
|
- pam.params.push(
|
|
|
- { param: 'a.create_time', compare: '>=', value: `${new Date(this.value1).getFullYear()}-01-01 00:00:00` },
|
|
|
- { param: 'a.create_time', compare: '<=', value: `${new Date(this.value1).getFullYear()}-12-31 23:59:59` }
|
|
|
- )
|
|
|
- }
|
|
|
+ // if (this.value1) {
|
|
|
+ // pam.params.push(
|
|
|
+ // { param: 'a.create_time', compare: '>=', value: `${new Date(this.value1).getFullYear()}-01-01 00:00:00` },
|
|
|
+ // { param: 'a.create_time', compare: '<=', value: `${new Date(this.value1).getFullYear()}-12-31 23:59:59` }
|
|
|
+ // )
|
|
|
+ // }
|
|
|
cb && cb(pam)
|
|
|
return orderEsBaseListEs(pam)
|
|
|
} catch (err) {
|
|
|
} finally {
|
|
|
this.$nextTick(() => {
|
|
|
this.getOrderBaseStatusCount({
|
|
|
- orderSmallTypeText: pam.orderSmallTypeText || '',
|
|
|
- ...(() => {
|
|
|
- if (this.value1) {
|
|
|
- return {
|
|
|
- startTime: `${new Date(this.value1).getFullYear()}-01-01 00:00:00`,
|
|
|
- endTime: `${new Date(this.value1).getFullYear()}-12-31 23:59:59`
|
|
|
- }
|
|
|
- }
|
|
|
- return {}
|
|
|
- })()
|
|
|
+ orderSmallTypeText: pam.orderSmallTypeText || ''
|
|
|
+ // ...(() => {
|
|
|
+ // if (this.value1) {
|
|
|
+ // return {
|
|
|
+ // startTime: `${new Date(this.value1).getFullYear()}-01-01 00:00:00`,
|
|
|
+ // endTime: `${new Date(this.value1).getFullYear()}-12-31 23:59:59`
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // return {}
|
|
|
+ // })()
|
|
|
})
|
|
|
})
|
|
|
}
|