|
@@ -31,7 +31,7 @@
|
|
|
ref="elTable1"
|
|
|
>
|
|
|
<template slot="empty">
|
|
|
- <span style="color: #969799;">No more data</span>
|
|
|
+ <span style="color: #969799;">No Data</span>
|
|
|
</template>
|
|
|
|
|
|
<el-table-column sortable :label="$t('InventoryManagement.silc')" min-width="130px" align="center">
|
|
@@ -98,7 +98,7 @@
|
|
|
ref="elTable2"
|
|
|
>
|
|
|
<template slot="empty">
|
|
|
- <span style="color: #969799;">No more data</span>
|
|
|
+ <span style="color: #969799;">No Data</span>
|
|
|
</template>
|
|
|
<el-table-column v-for="item in tab2.table.tableConfig" align="center" :label="item.label" :prop="item.prop">
|
|
|
<el-table-column v-for="item1 in item.children" v-if="item.children || item.children.length>0" align="center" :label="item1.label" :prop="item1.prop">
|
|
@@ -146,7 +146,7 @@
|
|
|
ref="elTable3"
|
|
|
>
|
|
|
<template slot="empty">
|
|
|
- <span style="color: #969799;">No more data</span>
|
|
|
+ <span style="color: #969799;">No Data</span>
|
|
|
</template>
|
|
|
<el-table-column v-for="item in tab3.table.tableConfig" align="center" :label="item.label" :prop="item.prop">
|
|
|
<el-table-column v-for="item1 in item.children" v-if="item.children || item.children.length>0" align="center" :label="item1.label" :prop="item1.prop">
|
|
@@ -200,10 +200,20 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
requestParams: [
|
|
|
- { name: 'getPastureListJT', offset: 0, pagecount: 0, parammaps: { pastureid: Cookies.get('pastureid'), pasturename: '' }}
|
|
|
+ {
|
|
|
+ name: 'getPastureListJT',
|
|
|
+ offset: 0,
|
|
|
+ pagecount: 0,
|
|
|
+ parammaps: { pastureid: Cookies.get('pastureid'), pasturename: '' }
|
|
|
+ }
|
|
|
],
|
|
|
pastureList: [], // 牧场
|
|
|
- fileComment: [{ 'label': '商务文件评分', 'children': [{ 'label': '1' }, { 'label': '2' }, { 'label': '管理员' }] }],
|
|
|
+ fileComment: [
|
|
|
+ {
|
|
|
+ label: '商务文件评分',
|
|
|
+ children: [{ label: '1' }, { label: '2' }, { label: '管理员' }]
|
|
|
+ }
|
|
|
+ ],
|
|
|
activeName: 'first',
|
|
|
tab: {
|
|
|
chartDate: [],
|
|
@@ -291,7 +301,7 @@ export default {
|
|
|
},
|
|
|
rowStyle: { maxHeight: 30 + 'px', height: 30 + 'px' },
|
|
|
cellStyle: { padding: 0 + 'px' },
|
|
|
- myHeight2:document.documentElement.clientHeight - 85-200
|
|
|
+ myHeight2: document.documentElement.clientHeight - 85 - 200
|
|
|
}
|
|
|
},
|
|
|
updated() {
|
|
@@ -305,9 +315,10 @@ export default {
|
|
|
|
|
|
methods: {
|
|
|
getDownList() {
|
|
|
- GetDataByNames(this.requestParams).then(response => {
|
|
|
+ GetDataByNames(this.requestParams).then((response) => {
|
|
|
this.pastureList = response.data.getPastureListJT.list
|
|
|
- this.tab.table.getdataListParm.parammaps.pastureid = response.data.getPastureListJT.list[0].pastureid
|
|
|
+ this.tab.table.getdataListParm.parammaps.pastureid =
|
|
|
+ response.data.getPastureListJT.list[0].pastureid
|
|
|
this.getTabList()
|
|
|
})
|
|
|
},
|
|
@@ -319,18 +330,36 @@ export default {
|
|
|
end.setTime(end.getTime() - 3600 * 1000 * 24 * 1)
|
|
|
that.tab.chartDate[0] = parseTime(start, '{y}-{m}-{d}')
|
|
|
that.tab.chartDate[1] = parseTime(end, '{y}-{m}-{d}')
|
|
|
- that.tab.table.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
|
|
|
- that.tab.table.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
|
|
|
+ that.tab.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ start,
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ that.tab.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ end,
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
that.tab.table.getdataListParm.parammaps.inputDatetime = [start, end]
|
|
|
that.tab2.chartDate[0] = parseTime(start, '{y}-{m}-{d}')
|
|
|
that.tab2.chartDate[1] = parseTime(end, '{y}-{m}-{d}')
|
|
|
- that.tab2.table.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
|
|
|
- that.tab2.table.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
|
|
|
+ that.tab2.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ start,
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ that.tab2.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ end,
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
that.tab2.table.getdataListParm.parammaps.inputDatetime = [start, end]
|
|
|
that.tab3.chartDate[0] = parseTime(start, '{y}-{m}-{d}')
|
|
|
that.tab3.chartDate[1] = parseTime(end, '{y}-{m}-{d}')
|
|
|
- that.tab3.table.getdataListParm.parammaps.startTime = parseTime(start, '{y}-{m}-{d}')
|
|
|
- that.tab3.table.getdataListParm.parammaps.stopTime = parseTime(end, '{y}-{m}-{d}')
|
|
|
+ that.tab3.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ start,
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ that.tab3.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ end,
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
that.tab3.table.getdataListParm.parammaps.inputDatetime = [start, end]
|
|
|
},
|
|
|
handleTabClick() {
|
|
@@ -348,7 +377,8 @@ export default {
|
|
|
start2.setTime(start2.getTime() - 3600 * 1000 * 24 * 1)
|
|
|
end2.setTime(end2.getTime() - 3600 * 1000 * 24 * 1)
|
|
|
this.tab2.table.getdataListParm.parammaps.inputDatetime = [start2, end2]
|
|
|
- this.tab2.table.getdataListParm.parammaps.pastureid = this.pastureList[0].pastureid
|
|
|
+ this.tab2.table.getdataListParm.parammaps.pastureid =
|
|
|
+ this.pastureList[0].pastureid
|
|
|
this.getTab2List()
|
|
|
} else if (this.activeName == 'third') {
|
|
|
const start3 = new Date()
|
|
@@ -356,13 +386,14 @@ export default {
|
|
|
start3.setTime(start3.getTime() - 3600 * 1000 * 24 * 1)
|
|
|
end3.setTime(end3.getTime() - 3600 * 1000 * 24 * 1)
|
|
|
this.tab3.table.getdataListParm.parammaps.inputDatetime = [start3, end3]
|
|
|
- this.tab3.table.getdataListParm.parammaps.pastureid = this.pastureList[0].pastureid
|
|
|
+ this.tab3.table.getdataListParm.parammaps.pastureid =
|
|
|
+ this.pastureList[0].pastureid
|
|
|
this.getTab3List()
|
|
|
}
|
|
|
},
|
|
|
getTabList() {
|
|
|
this.tab.table.listLoading = true
|
|
|
- GetDataByName(this.tab.table.getdataListParm).then(response => {
|
|
|
+ GetDataByName(this.tab.table.getdataListParm).then((response) => {
|
|
|
console.log('库存统计table数据', response.data.list)
|
|
|
if (response.data.list !== null) {
|
|
|
this.tab.table.list = response.data.list
|
|
@@ -377,9 +408,18 @@ export default {
|
|
|
},
|
|
|
form_search(item) {
|
|
|
if (item == 'first') {
|
|
|
- if (this.tab.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- this.tab.table.getdataListParm.parammaps.startTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab.table.getdataListParm.parammaps.stopTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ if (
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ this.tab.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
} else {
|
|
|
this.tab.table.getdataListParm.parammaps.inputDatetime = ''
|
|
|
this.tab.table.getdataListParm.parammaps.startTime = ''
|
|
@@ -387,9 +427,18 @@ export default {
|
|
|
}
|
|
|
this.getTabList()
|
|
|
} else if (item == 'second') {
|
|
|
- if (this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ if (
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ this.tab2.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
} else {
|
|
|
this.tab2.table.getdataListParm.parammaps.inputDatetime = ''
|
|
|
this.tab2.table.getdataListParm.parammaps.startTime = ''
|
|
@@ -397,9 +446,18 @@ export default {
|
|
|
}
|
|
|
this.getTab2List()
|
|
|
} else if (item == 'third') {
|
|
|
- if (this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab3.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ if (
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ this.tab3.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
} else {
|
|
|
this.tab3.table.getdataListParm.parammaps.inputDatetime = ''
|
|
|
this.tab3.table.getdataListParm.parammaps.startTime = ''
|
|
@@ -419,13 +477,17 @@ export default {
|
|
|
var exportTitle2 = [] // 二级标题
|
|
|
for (let i = 0; i < this.tab2.table.tableConfig.length; i++) {
|
|
|
exportTitle1.push(this.tab2.table.tableConfig[i].label)
|
|
|
- for (let j = 0; j < this.tab2.table.tableConfig[i].children.length; j++) {
|
|
|
+ for (
|
|
|
+ let j = 0;
|
|
|
+ j < this.tab2.table.tableConfig[i].children.length;
|
|
|
+ j++
|
|
|
+ ) {
|
|
|
exportTitle2.push(this.tab2.table.tableConfig[i].children[j].label)
|
|
|
}
|
|
|
}
|
|
|
console.log('一级标题exportTitle1', exportTitle1)
|
|
|
console.log('二级标题exportTitle2', exportTitle2)
|
|
|
- var headerArr = []// 处理一级标题
|
|
|
+ var headerArr = [] // 处理一级标题
|
|
|
for (let i = 0; i < exportTitle1.length; i++) {
|
|
|
if (i > 0) {
|
|
|
headerArr.push(exportTitle1[i], '', '', '')
|
|
@@ -444,21 +506,28 @@ export default {
|
|
|
}
|
|
|
console.log('对应字段valueArr', valueArr)
|
|
|
if (headerArr.length > 0) {
|
|
|
- import('@/vendor/Export3Excel').then((excel) => {
|
|
|
- const multiHeader = [
|
|
|
- headerArr
|
|
|
- ]
|
|
|
- const multiHeader2 = []
|
|
|
- const tHeader = exportTitle2
|
|
|
- const filterVal = valueArr// 表头所对应的字段,这里未填写
|
|
|
- const data = this.tab2.table.list.map(v => filterVal.map(j => v[j]))
|
|
|
- // const data = [];
|
|
|
- // 进行所有表头的单元格合并
|
|
|
- // const merges = ['A1:A1', 'B1:E1','F1:J1' ];
|
|
|
- const merges = ['A1:A1']
|
|
|
+ import('@/vendor/Export3Excel').then((excel) => {
|
|
|
+ const multiHeader = [headerArr]
|
|
|
+ const multiHeader2 = []
|
|
|
+ const tHeader = exportTitle2
|
|
|
+ const filterVal = valueArr // 表头所对应的字段,这里未填写
|
|
|
+ const data = this.tab2.table.list.map((v) =>
|
|
|
+ filterVal.map((j) => v[j])
|
|
|
+ )
|
|
|
+ // const data = [];
|
|
|
+ // 进行所有表头的单元格合并
|
|
|
+ // const merges = ['A1:A1', 'B1:E1','F1:J1' ];
|
|
|
+ const merges = ['A1:A1']
|
|
|
|
|
|
- excel.export_json_to_excel({ multiHeader, multiHeader2, header: tHeader, data, filename: '用料分析', merges })
|
|
|
+ excel.export_json_to_excel({
|
|
|
+ multiHeader,
|
|
|
+ multiHeader2,
|
|
|
+ header: tHeader,
|
|
|
+ data,
|
|
|
+ filename: '用料分析',
|
|
|
+ merges
|
|
|
})
|
|
|
+ })
|
|
|
}
|
|
|
} else if (item == 'tab3') {
|
|
|
console.log('价格分析导出')
|
|
@@ -469,13 +538,17 @@ export default {
|
|
|
var exportTitle2 = [] // 二级标题
|
|
|
for (let i = 0; i < this.tab3.table.tableConfig.length; i++) {
|
|
|
exportTitle1.push(this.tab3.table.tableConfig[i].label)
|
|
|
- for (let j = 0; j < this.tab3.table.tableConfig[i].children.length; j++) {
|
|
|
+ for (
|
|
|
+ let j = 0;
|
|
|
+ j < this.tab3.table.tableConfig[i].children.length;
|
|
|
+ j++
|
|
|
+ ) {
|
|
|
exportTitle2.push(this.tab3.table.tableConfig[i].children[j].label)
|
|
|
}
|
|
|
}
|
|
|
console.log('一级标题exportTitle1', exportTitle1)
|
|
|
console.log('二级标题exportTitle2', exportTitle2)
|
|
|
- var headerArr = []// 处理一级标题
|
|
|
+ var headerArr = [] // 处理一级标题
|
|
|
for (let i = 0; i < exportTitle1.length; i++) {
|
|
|
if (i > 0) {
|
|
|
headerArr.push(exportTitle1[i], '')
|
|
@@ -494,25 +567,33 @@ export default {
|
|
|
}
|
|
|
console.log('对应字段valueArr', valueArr)
|
|
|
if (headerArr.length > 0) {
|
|
|
- import('@/vendor/Export3Excel').then((excel) => {
|
|
|
- const multiHeader = [
|
|
|
- headerArr
|
|
|
- ]
|
|
|
- const multiHeader2 = []
|
|
|
- const tHeader = exportTitle2
|
|
|
- const filterVal = valueArr// 表头所对应的字段,这里未填写
|
|
|
- const data = this.tab3.table.list.map(v => filterVal.map(j => v[j]))
|
|
|
- // const data = [];
|
|
|
- // 进行所有表头的单元格合并
|
|
|
- // const merges = ['A1:A1', 'B1:E1','F1:J1' ];
|
|
|
- const merges = ['A1:A1']
|
|
|
+ import('@/vendor/Export3Excel').then((excel) => {
|
|
|
+ const multiHeader = [headerArr]
|
|
|
+ const multiHeader2 = []
|
|
|
+ const tHeader = exportTitle2
|
|
|
+ const filterVal = valueArr // 表头所对应的字段,这里未填写
|
|
|
+ const data = this.tab3.table.list.map((v) =>
|
|
|
+ filterVal.map((j) => v[j])
|
|
|
+ )
|
|
|
+ // const data = [];
|
|
|
+ // 进行所有表头的单元格合并
|
|
|
+ // const merges = ['A1:A1', 'B1:E1','F1:J1' ];
|
|
|
+ const merges = ['A1:A1']
|
|
|
|
|
|
- excel.export_json_to_excel({ multiHeader, multiHeader2, header: tHeader, data, filename: '价格分析', merges })
|
|
|
+ excel.export_json_to_excel({
|
|
|
+ multiHeader,
|
|
|
+ multiHeader2,
|
|
|
+ header: tHeader,
|
|
|
+ data,
|
|
|
+ filename: '价格分析',
|
|
|
+ merges
|
|
|
})
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- format(jsonData) { // 数据处理
|
|
|
+ format(jsonData) {
|
|
|
+ // 数据处理
|
|
|
const dataList = []
|
|
|
for (let i = 0; i < jsonData.length; i++) {
|
|
|
const list = []
|
|
@@ -530,8 +611,12 @@ export default {
|
|
|
// 用料分析
|
|
|
getTab2List() {
|
|
|
this.tab2.table.listLoading = true
|
|
|
- GetReportform(this.tab2.table.getdataListParm).then(response => {
|
|
|
- if (response.data !== null && response.data.data !== null && response.data.data1 !== null) {
|
|
|
+ GetReportform(this.tab2.table.getdataListParm).then((response) => {
|
|
|
+ if (
|
|
|
+ response.data !== null &&
|
|
|
+ response.data.data !== null &&
|
|
|
+ response.data.data1 !== null
|
|
|
+ ) {
|
|
|
console.log('库存统计-用料分析', response.data.list)
|
|
|
this.tab2.table.list = response.data.list.data1
|
|
|
this.tab2.table.tableConfig = response.data.list.data2
|
|
@@ -547,63 +632,63 @@ export default {
|
|
|
changeRadio2() {
|
|
|
console.log(this.tab2.radio)
|
|
|
if (this.tab2.radio == '1') {
|
|
|
- this.tab2.isRadio1 = true,
|
|
|
- this.tab2.isRadio2 = false,
|
|
|
- this.tab2.isRadio3 = false,
|
|
|
- this.tab2.isRadio4 = false,
|
|
|
- this.tab2.isRadio5 = false,
|
|
|
- this.tab2.isRadio6 = false,
|
|
|
- this.tab2.table.getdataListParm.name = 'getMaterialAnalysisSC'
|
|
|
+ ;(this.tab2.isRadio1 = true),
|
|
|
+ (this.tab2.isRadio2 = false),
|
|
|
+ (this.tab2.isRadio3 = false),
|
|
|
+ (this.tab2.isRadio4 = false),
|
|
|
+ (this.tab2.isRadio5 = false),
|
|
|
+ (this.tab2.isRadio6 = false),
|
|
|
+ (this.tab2.table.getdataListParm.name = 'getMaterialAnalysisSC')
|
|
|
this.tab2.table.getdataListParm.offset = 1
|
|
|
this.getTab2List()
|
|
|
} else if (this.tab2.radio == '2') {
|
|
|
- this.tab2.isRadio1 = false,
|
|
|
- this.tab2.isRadio2 = true,
|
|
|
- this.tab2.isRadio3 = false,
|
|
|
- this.tab2.isRadio4 = false,
|
|
|
- this.tab2.isRadio5 = false,
|
|
|
- this.tab2.isRadio6 = false,
|
|
|
- this.tab2.table.getdataListParm.name = 'getMaterialAnalysisLS'
|
|
|
+ ;(this.tab2.isRadio1 = false),
|
|
|
+ (this.tab2.isRadio2 = true),
|
|
|
+ (this.tab2.isRadio3 = false),
|
|
|
+ (this.tab2.isRadio4 = false),
|
|
|
+ (this.tab2.isRadio5 = false),
|
|
|
+ (this.tab2.isRadio6 = false),
|
|
|
+ (this.tab2.table.getdataListParm.name = 'getMaterialAnalysisLS')
|
|
|
this.tab2.table.getdataListParm.offset = 1
|
|
|
this.getTab2List()
|
|
|
} else if (this.tab2.radio == '3') {
|
|
|
- this.tab2.isRadio1 = false,
|
|
|
- this.tab2.isRadio2 = false,
|
|
|
- this.tab2.isRadio3 = true,
|
|
|
- this.tab2.isRadio4 = false,
|
|
|
- this.tab2.isRadio5 = false,
|
|
|
- this.tab2.isRadio6 = false,
|
|
|
- this.tab2.table.getdataListParm.name = 'getMaterialAnalysisRQ'
|
|
|
+ ;(this.tab2.isRadio1 = false),
|
|
|
+ (this.tab2.isRadio2 = false),
|
|
|
+ (this.tab2.isRadio3 = true),
|
|
|
+ (this.tab2.isRadio4 = false),
|
|
|
+ (this.tab2.isRadio5 = false),
|
|
|
+ (this.tab2.isRadio6 = false),
|
|
|
+ (this.tab2.table.getdataListParm.name = 'getMaterialAnalysisRQ')
|
|
|
this.tab2.table.getdataListParm.offset = 1
|
|
|
this.getTab2List()
|
|
|
} else if (this.tab2.radio == '4') {
|
|
|
- this.tab2.isRadio1 = false,
|
|
|
- this.tab2.isRadio2 = false,
|
|
|
- this.tab2.isRadio3 = false,
|
|
|
- this.tab2.isRadio4 = true,
|
|
|
- this.tab2.isRadio5 = false,
|
|
|
- this.tab2.isRadio6 = false,
|
|
|
- this.tab2.table.getdataListParm.name = 'getMaterialAnalysisTMR'
|
|
|
+ ;(this.tab2.isRadio1 = false),
|
|
|
+ (this.tab2.isRadio2 = false),
|
|
|
+ (this.tab2.isRadio3 = false),
|
|
|
+ (this.tab2.isRadio4 = true),
|
|
|
+ (this.tab2.isRadio5 = false),
|
|
|
+ (this.tab2.isRadio6 = false),
|
|
|
+ (this.tab2.table.getdataListParm.name = 'getMaterialAnalysisTMR')
|
|
|
this.tab2.table.getdataListParm.offset = 1
|
|
|
this.getTab2List()
|
|
|
} else if (this.tab2.radio == '5') {
|
|
|
- this.tab2.isRadio1 = false,
|
|
|
- this.tab2.isRadio2 = false,
|
|
|
- this.tab2.isRadio3 = false,
|
|
|
- this.tab2.isRadio4 = false,
|
|
|
- this.tab2.isRadio5 = true,
|
|
|
- this.tab2.isRadio6 = false,
|
|
|
- this.tab2.table.getdataListParm.name = 'getMaterialAnalysisBC'
|
|
|
+ ;(this.tab2.isRadio1 = false),
|
|
|
+ (this.tab2.isRadio2 = false),
|
|
|
+ (this.tab2.isRadio3 = false),
|
|
|
+ (this.tab2.isRadio4 = false),
|
|
|
+ (this.tab2.isRadio5 = true),
|
|
|
+ (this.tab2.isRadio6 = false),
|
|
|
+ (this.tab2.table.getdataListParm.name = 'getMaterialAnalysisBC')
|
|
|
this.tab2.table.getdataListParm.offset = 1
|
|
|
this.getTab2List()
|
|
|
} else if (this.tab2.radio == '6') {
|
|
|
- this.tab2.isRadio1 = false,
|
|
|
- this.tab2.isRadio2 = false,
|
|
|
- this.tab2.isRadio3 = false,
|
|
|
- this.tab2.isRadio4 = false,
|
|
|
- this.tab2.isRadio5 = false,
|
|
|
- this.tab2.isRadio6 = true,
|
|
|
- this.tab2.table.getdataListParm.name = 'getMaterialAnalysisCC'
|
|
|
+ ;(this.tab2.isRadio1 = false),
|
|
|
+ (this.tab2.isRadio2 = false),
|
|
|
+ (this.tab2.isRadio3 = false),
|
|
|
+ (this.tab2.isRadio4 = false),
|
|
|
+ (this.tab2.isRadio5 = false),
|
|
|
+ (this.tab2.isRadio6 = true),
|
|
|
+ (this.tab2.table.getdataListParm.name = 'getMaterialAnalysisCC')
|
|
|
this.tab2.table.getdataListParm.offset = 1
|
|
|
this.getTab2List()
|
|
|
}
|
|
@@ -611,8 +696,12 @@ export default {
|
|
|
// 价格分析
|
|
|
getTab3List() {
|
|
|
this.tab3.table.listLoading = true
|
|
|
- GetReportform(this.tab3.table.getdataListParm).then(response => {
|
|
|
- if (response.data !== null && response.data.list.data1 !== null && response.data.list.data2 !== null) {
|
|
|
+ GetReportform(this.tab3.table.getdataListParm).then((response) => {
|
|
|
+ if (
|
|
|
+ response.data !== null &&
|
|
|
+ response.data.list.data1 !== null &&
|
|
|
+ response.data.list.data2 !== null
|
|
|
+ ) {
|
|
|
console.log('库存统计-价格分析', response.data.list)
|
|
|
this.tab3.table.list = response.data.list.data1
|
|
|
this.tab3.table.tableConfig = response.data.list.data2
|
|
@@ -628,44 +717,57 @@ export default {
|
|
|
changeRadio3() {
|
|
|
console.log(this.tab3.radio)
|
|
|
if (this.tab3.radio == '1') {
|
|
|
- this.tab3.isRadio1 = true,
|
|
|
- this.tab3.isRadio2 = false,
|
|
|
- this.tab3.isRadio3 = false,
|
|
|
- this.tab3.isRadio4 = false,
|
|
|
- this.tab3.table.getdataListParm.name = 'getPriceAnalysisSC'
|
|
|
+ ;(this.tab3.isRadio1 = true),
|
|
|
+ (this.tab3.isRadio2 = false),
|
|
|
+ (this.tab3.isRadio3 = false),
|
|
|
+ (this.tab3.isRadio4 = false),
|
|
|
+ (this.tab3.table.getdataListParm.name = 'getPriceAnalysisSC')
|
|
|
this.tab3.table.getdataListParm.offset = 1
|
|
|
this.getTab3List()
|
|
|
} else if (this.tab3.radio == '2') {
|
|
|
- this.tab3.isRadio1 = false,
|
|
|
- this.tab3.isRadio2 = true,
|
|
|
- this.tab3.isRadio3 = false,
|
|
|
- this.tab3.isRadio4 = false,
|
|
|
- this.tab3.table.getdataListParm.name = 'getPriceAnalysisLS'
|
|
|
+ ;(this.tab3.isRadio1 = false),
|
|
|
+ (this.tab3.isRadio2 = true),
|
|
|
+ (this.tab3.isRadio3 = false),
|
|
|
+ (this.tab3.isRadio4 = false),
|
|
|
+ (this.tab3.table.getdataListParm.name = 'getPriceAnalysisLS')
|
|
|
this.tab3.table.getdataListParm.offset = 1
|
|
|
this.getTab3List()
|
|
|
} else if (this.tab3.radio == '3') {
|
|
|
- this.tab3.isRadio1 = false,
|
|
|
- this.tab3.isRadio2 = false,
|
|
|
- this.tab3.isRadio3 = true,
|
|
|
- this.tab3.isRadio4 = false,
|
|
|
- this.tab3.table.getdataListParm.name = 'getPriceAnalysisRQ'
|
|
|
+ ;(this.tab3.isRadio1 = false),
|
|
|
+ (this.tab3.isRadio2 = false),
|
|
|
+ (this.tab3.isRadio3 = true),
|
|
|
+ (this.tab3.isRadio4 = false),
|
|
|
+ (this.tab3.table.getdataListParm.name = 'getPriceAnalysisRQ')
|
|
|
this.tab3.table.getdataListParm.offset = 1
|
|
|
this.getTab3List()
|
|
|
} else if (this.tab3.radio == '4') {
|
|
|
- this.tab3.isRadio1 = false,
|
|
|
- this.tab3.isRadio2 = false,
|
|
|
- this.tab3.isRadio3 = false,
|
|
|
- this.tab3.isRadio4 = true,
|
|
|
- this.tab3.table.getdataListParm.name = 'getPriceAnalysisTMR'
|
|
|
+ ;(this.tab3.isRadio1 = false),
|
|
|
+ (this.tab3.isRadio2 = false),
|
|
|
+ (this.tab3.isRadio3 = false),
|
|
|
+ (this.tab3.isRadio4 = true),
|
|
|
+ (this.tab3.table.getdataListParm.name = 'getPriceAnalysisTMR')
|
|
|
this.tab3.table.getdataListParm.offset = 1
|
|
|
this.getTab3List()
|
|
|
}
|
|
|
},
|
|
|
|
|
|
handleBefore() {
|
|
|
- if (this.tab.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- var start = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
|
|
|
- var stop = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
|
|
|
+ if (
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ var start = new Date(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0].setDate(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0].getDate() -
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
+ var stop = new Date(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1].setDate(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1].getDate() -
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
if (stop > Date.now() - 8.64e7) {
|
|
|
this.Nextdisabled = true
|
|
|
this.Beforedisabled = false
|
|
@@ -677,14 +779,33 @@ export default {
|
|
|
this.tab.table.getdataListParm.parammaps.inputDatetime.push(start, stop)
|
|
|
this.$forceUpdate()
|
|
|
}
|
|
|
- this.tab.table.getdataListParm.parammaps.startTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab.table.getdataListParm.parammaps.stopTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ this.tab.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
this.getTabList()
|
|
|
},
|
|
|
handleNext() {
|
|
|
- if (this.tab.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- var start2 = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
|
|
|
- var stop2 = new Date(this.tab.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
|
|
|
+ if (
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ var start2 = new Date(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0].setDate(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0].getDate() +
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
+ var stop2 = new Date(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1].setDate(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1].getDate() +
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
if (stop2 > Date.now() - 8.64e7) {
|
|
|
this.Nextdisabled = true
|
|
|
this.Beforedisabled = false
|
|
@@ -693,17 +814,39 @@ export default {
|
|
|
this.Beforedisabled = false
|
|
|
}
|
|
|
this.tab.table.getdataListParm.parammaps.inputDatetime.length = 0
|
|
|
- this.tab.table.getdataListParm.parammaps.inputDatetime.push(start2, stop2)
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime.push(
|
|
|
+ start2,
|
|
|
+ stop2
|
|
|
+ )
|
|
|
this.$forceUpdate()
|
|
|
}
|
|
|
- this.tab.table.getdataListParm.parammaps.startTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab.table.getdataListParm.parammaps.stopTime = parseTime(this.tab.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ this.tab.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
this.getTabList()
|
|
|
},
|
|
|
handleBefore2() {
|
|
|
- if (this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- var start3 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
|
|
|
- var stop3 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
|
|
|
+ if (
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ var start3 = new Date(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0].setDate(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0].getDate() -
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
+ var stop3 = new Date(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1].setDate(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1].getDate() -
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
if (stop3 > Date.now() - 8.64e7) {
|
|
|
this.Nextdisabled2 = true
|
|
|
this.Beforedisabled2 = false
|
|
@@ -712,17 +855,39 @@ export default {
|
|
|
this.Beforedisabled2 = false
|
|
|
}
|
|
|
this.tab2.table.getdataListParm.parammaps.inputDatetime.length = 0
|
|
|
- this.tab2.table.getdataListParm.parammaps.inputDatetime.push(start3, stop3)
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime.push(
|
|
|
+ start3,
|
|
|
+ stop3
|
|
|
+ )
|
|
|
this.$forceUpdate()
|
|
|
}
|
|
|
- this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ this.tab2.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
this.getTab2List()
|
|
|
},
|
|
|
handleNext2() {
|
|
|
- if (this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- var start4 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
|
|
|
- var stop4 = new Date(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab2.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
|
|
|
+ if (
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ var start4 = new Date(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0].setDate(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0].getDate() +
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
+ var stop4 = new Date(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1].setDate(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1].getDate() +
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
if (stop4 > Date.now() - 8.64e7) {
|
|
|
this.Nextdisabled2 = true
|
|
|
this.Beforedisabled2 = false
|
|
@@ -731,17 +896,39 @@ export default {
|
|
|
this.Beforedisabled2 = false
|
|
|
}
|
|
|
this.tab2.table.getdataListParm.parammaps.inputDatetime.length = 0
|
|
|
- this.tab2.table.getdataListParm.parammaps.inputDatetime.push(start4, stop4)
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime.push(
|
|
|
+ start4,
|
|
|
+ stop4
|
|
|
+ )
|
|
|
this.$forceUpdate()
|
|
|
}
|
|
|
- this.tab2.table.getdataListParm.parammaps.startTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(this.tab2.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ this.tab2.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab2.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
this.getTab2List()
|
|
|
},
|
|
|
handleBefore3() {
|
|
|
- if (this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab3.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- var start5 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].getDate() - 1))
|
|
|
- var stop5 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].getDate() - 1))
|
|
|
+ if (
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ var start5 = new Date(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0].setDate(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0].getDate() -
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
+ var stop5 = new Date(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1].setDate(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1].getDate() -
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
if (stop5 > Date.now() - 8.64e7) {
|
|
|
this.Nextdisabled3 = true
|
|
|
this.Beforedisabled3 = false
|
|
@@ -750,17 +937,39 @@ export default {
|
|
|
this.Beforedisabled3 = false
|
|
|
}
|
|
|
this.tab3.table.getdataListParm.parammaps.inputDatetime.length = 0
|
|
|
- this.tab3.table.getdataListParm.parammaps.inputDatetime.push(start5, stop5)
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime.push(
|
|
|
+ start5,
|
|
|
+ stop5
|
|
|
+ )
|
|
|
this.$forceUpdate()
|
|
|
}
|
|
|
- this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ this.tab3.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
this.getTab3List()
|
|
|
},
|
|
|
handleNext3() {
|
|
|
- if (this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' && this.tab2.table.getdataListParm.parammaps.inputDatetime !== null) {
|
|
|
- var start6 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[0].getDate() + 1))
|
|
|
- var stop6 = new Date(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].setDate(this.tab3.table.getdataListParm.parammaps.inputDatetime[1].getDate() + 1))
|
|
|
+ if (
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime !== '' &&
|
|
|
+ this.tab2.table.getdataListParm.parammaps.inputDatetime !== null
|
|
|
+ ) {
|
|
|
+ var start6 = new Date(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0].setDate(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0].getDate() +
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
+ var stop6 = new Date(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1].setDate(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1].getDate() +
|
|
|
+ 1
|
|
|
+ )
|
|
|
+ )
|
|
|
if (stop6 > Date.now() - 8.64e7) {
|
|
|
this.Nextdisabled3 = true
|
|
|
this.Beforedisabled3 = false
|
|
@@ -769,21 +978,33 @@ export default {
|
|
|
this.Beforedisabled3 = false
|
|
|
}
|
|
|
this.tab3.table.getdataListParm.parammaps.inputDatetime.length = 0
|
|
|
- this.tab3.table.getdataListParm.parammaps.inputDatetime.push(start6, stop6)
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime.push(
|
|
|
+ start6,
|
|
|
+ stop6
|
|
|
+ )
|
|
|
this.$forceUpdate()
|
|
|
}
|
|
|
- this.tab3.table.getdataListParm.parammaps.startTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[0], '{y}-{m}-{d}')
|
|
|
- this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(this.tab3.table.getdataListParm.parammaps.inputDatetime[1], '{y}-{m}-{d}')
|
|
|
+ this.tab3.table.getdataListParm.parammaps.startTime = parseTime(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[0],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
+ this.tab3.table.getdataListParm.parammaps.stopTime = parseTime(
|
|
|
+ this.tab3.table.getdataListParm.parammaps.inputDatetime[1],
|
|
|
+ '{y}-{m}-{d}'
|
|
|
+ )
|
|
|
this.getTab3List()
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
- .search{
|
|
|
- margin-bottom:10px;
|
|
|
- .el-radio{margin-right: 10px;}
|
|
|
- .filter-item1{margin-top: 10px;}
|
|
|
+.search {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ .el-radio {
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+ .filter-item1 {
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
+}
|
|
|
</style>
|