|
@@ -104,7 +104,8 @@ export default {
|
|
|
if (item.InfoList.length && equipMsg.content[0].classCode) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: equipMsg.content[0].classCode
|
|
|
+ type: equipMsg.content[0].classCode,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name).join(',');
|
|
@@ -135,7 +136,8 @@ export default {
|
|
|
if (item.InfoList.length && zoneMsg.Content[0].ObjectType) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: zoneMsg.Content[0].ObjectType
|
|
|
+ type: zoneMsg.Content[0].ObjectType,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|
|
@@ -168,7 +170,8 @@ export default {
|
|
|
if (item.InfoList.length && equipMsg.Content[0].Category) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: equipMsg.Content[0].Category
|
|
|
+ type: equipMsg.Content[0].Category,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|
|
@@ -187,7 +190,8 @@ export default {
|
|
|
if (item.InfoList.length && res.content[0].classCode) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: res.content[0].classCode
|
|
|
+ type: res.content[0].classCode,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|
|
@@ -206,7 +210,8 @@ export default {
|
|
|
if (item.InfoList.length && res.content[0].objectType) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: res.content[0].objectType
|
|
|
+ type: res.content[0].objectType,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|
|
@@ -225,7 +230,8 @@ export default {
|
|
|
if (item.InfoList.length && res.content[0].objectType) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: res.content[0].objectType
|
|
|
+ type: res.content[0].objectType,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|
|
@@ -244,7 +250,8 @@ export default {
|
|
|
if (item.InfoList.length && res.Content[0].ObjectType) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: res.Content[0].ObjectType
|
|
|
+ type: res.Content[0].ObjectType,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|
|
@@ -263,7 +270,8 @@ export default {
|
|
|
if (item.InfoList.length && res.Content[0].ObjectType) {
|
|
|
let params = {
|
|
|
filters: `code in ${JSON.stringify(item.InfoList)}`,
|
|
|
- type: res.Content[0].ObjectType
|
|
|
+ type: res.Content[0].ObjectType,
|
|
|
+ orders: "sort asc, name desc",
|
|
|
}
|
|
|
getDataDictionary(params, resp => {
|
|
|
that.forms[key].InfomationPointName = resp.content.map(t => t.name || '').join(',');
|