'厂务设备参数修改设备列表size,设备分析状态监控去掉默认产线工厂'

このコミットが含まれているのは:
Fanzink 2023-04-18 09:48:13 +05:30
コミット b1ab1962b1
2個のファイルの変更7行の追加3行の削除

ファイルの表示

@ -165,7 +165,11 @@ export default {
getEqList() { getEqList() {
this.$http({ this.$http({
url: this.$http.adornUrl('/monitoring/equipment/page'), url: this.$http.adornUrl('/monitoring/equipment/page'),
method: 'get' method: 'get',
params: this.$http.adornParams({
limit: 99999,
page: 1
})
}).then(({ data }) => { }).then(({ data }) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.eqList = data.data.list this.eqList = data.data.list

ファイルの表示

@ -207,7 +207,7 @@ export default {
this.factoryList = res.data this.factoryList = res.data
/** set default */ /** set default */
if (this.factoryList.length) { if (this.factoryList.length) {
this.dataForm.ftId = this.factoryList[0].id // this.dataForm.ftId = this.factoryList[0].id
} }
} else { } else {
this.factoryList = [] this.factoryList = []
@ -236,7 +236,7 @@ export default {
if (res && res.code === 0 && res.data.length) { if (res && res.code === 0 && res.data.length) {
this.productLineList = res.data this.productLineList = res.data
/** set default */ /** set default */
this.dataForm.productlines = [this.productLineList[0].id] // this.dataForm.productlines = [this.productLineList[0].id]
} else { } else {
this.productLineList = [] this.productLineList = []
this.dataForm.productlines = [] this.dataForm.productlines = []