修改bug
This commit is contained in:
parent
be83c8196e
commit
dacae0cbd8
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-07-19 15:18:30
|
* @Date: 2021-07-19 15:18:30
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @LastEditTime: 2024-04-25 18:24:31
|
* @LastEditTime: 2024-04-26 08:32:02
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -387,7 +387,7 @@ export default {
|
|||||||
progressRate: 0.933333,
|
progressRate: 0.933333,
|
||||||
specifications: '1100*5554*22',
|
specifications: '1100*5554*22',
|
||||||
plan: 111111111111,
|
plan: 111111111111,
|
||||||
actualQuantity:10000001111,
|
actualQuantity:1000000111111,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: '2',
|
id: '2',
|
||||||
@ -458,12 +458,12 @@ export default {
|
|||||||
this.orderList = detData.map((ele, index) => {
|
this.orderList = detData.map((ele, index) => {
|
||||||
if (ele.progressRate && ele.progressRate != 1) {
|
if (ele.progressRate && ele.progressRate != 1) {
|
||||||
return {
|
return {
|
||||||
id: ele.id,
|
id: ele.id,
|
||||||
name: ele.name,
|
name: this.getStr(String(ele.name), 8),
|
||||||
progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
|
progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
|
||||||
specifications: ele.specifications ? '规格' + ele.specifications :'',
|
specifications: ele.specifications ? '规格' + ele.specifications : '',
|
||||||
planQuantity: ele.plan ? '计划' + this.getStr(String(ele.plan,6)) : '',
|
planQuantity: ele.plan ? '计划' + this.getStr(String(ele.plan), 6) : '',
|
||||||
actualQuantity: ele.actualQuantity ?this.getStr(String(ele.actualQuantity,6)) : '',
|
actualQuantity: ele.actualQuantity ? this.getStr(String(ele.actualQuantity), 6) : '',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -568,7 +568,7 @@ export default {
|
|||||||
getStr(str,num) {
|
getStr(str,num) {
|
||||||
//你要处理的字符串
|
//你要处理的字符串
|
||||||
if (str.length > num) { //如果字符长度超过10,后面的字符就变成...可自行调整长度和代替字符
|
if (str.length > num) { //如果字符长度超过10,后面的字符就变成...可自行调整长度和代替字符
|
||||||
str = str.substr(0, 6) + "..." //截取从第一个字符开始,往后取10个字符,剩余的用...代替
|
str = str.substr(0, num) + "..." //截取从第一个字符开始,往后取10个字符,剩余的用...代替
|
||||||
return str
|
return str
|
||||||
} else {
|
} else {
|
||||||
return str
|
return str
|
||||||
@ -743,11 +743,11 @@ export default {
|
|||||||
if (ele.progressRate && ele.progressRate != 1) {
|
if (ele.progressRate && ele.progressRate != 1) {
|
||||||
return {
|
return {
|
||||||
id: ele.id,
|
id: ele.id,
|
||||||
name: this.getStr(String(ele.name,8)),
|
name: this.getStr(String(ele.name), 8),
|
||||||
progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
|
progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
|
||||||
specifications: ele.specifications ? '规格' + ele.specifications : '',
|
specifications: ele.specifications ? '规格' + ele.specifications : '',
|
||||||
planQuantity: ele.plan ? '计划' + this.getStr(String(ele.plan,6)) : '',
|
planQuantity: ele.plan ? '计划' + this.getStr(String(ele.plan),6) : '',
|
||||||
actualQuantity: ele.actualQuantity ? this.getStr(String(ele.actualQuantity,6)) : '',
|
actualQuantity: ele.actualQuantity ? this.getStr(String(ele.actualQuantity), 6) : '',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user