e443b904 by zhangmeng

看板

1 parent ad9266b9
......@@ -28,8 +28,8 @@ const url = ref()
const obj = ref({})
const result = ref()
const router = useRouter()
// url.value = 'http://192.168.1.152:8899/login/sid=fa190207-f8bf-462c-a7f0-f2f0a14abe97#/'
url.value = window.location.href
url.value = 'http://192.168.1.152:8899/login/sid=fa190207-f8bf-462c-a7f0-f2f0a14abe97#/'
// url.value = window.location.href
result.value = url.value?.split('=')[1]?.split('#')[0];
onMounted(() => {
......
......@@ -76,9 +76,10 @@
<hr>
</div>
<div class="father">
<div class="bingTitle tex4">
<div class="bingTitle tex4">
<span><img alt="" class="titleImg" src="@/assets/image/title_bg.png"></span>
DSO天数
<span class="">DSO天数</span>
<span class="dsotext">&nbsp;{{ dso }}</span>
</div>
<div ref="zhuRef4" style="width: 100%;height: 17.3vh">
</div>
......@@ -129,6 +130,7 @@ const textRef = ref(null)
const form = ref({
leaderinfo: []
})
const dso = ref(0)
const resYear1 = ref()
const resYear2 = ref()
......@@ -257,6 +259,7 @@ async function handelGetYS004() {
// ]
let haishang
let dalu
dso.value = res.data.DSOTOTAL || 0
for (const v of arrList) {
if (v.BLOCK === '海上') {
haishang = v
......@@ -1326,6 +1329,14 @@ onUnmounted(() => {
width: calc(50 * 100vw / 1920);
height: calc(20 * 100vw / 1920);
}
.dsotext {
color: #D1D6DF;
text-shadow: 0px 2px 3px rgba(17, 20, 22, 0.41);
background: #f9cc0a;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
}
......@@ -1513,4 +1524,5 @@ hr {
border-top: 1px solid #373e51;
}
</style>
......
......@@ -248,10 +248,10 @@ function handelSelect3() {
// 找到对应的数据
let obj = list.value.find(item => item.BASEJC === type3.value)
for (const val of obj.list) {
h1.value.push(val.YSDSK)//应待收款
h2.value.push(val.SFDDQ)//收费单待签
h1.value.push(val.YSDSK / 1000 || 0)//应待收款
h2.value.push(val.SFDDQ / 1000 || 0)//收费单待签
h3.value.push({
value: val.HTDQ,
value: val.HTDQ / 10000 || 0,
info: val.YSWELLINFO
})//合同待签
}
......@@ -641,7 +641,7 @@ const setC = (h1, h2, h3) => {
<div style="font-weight:bold">${row.name}</div>
<div style="display:flex;align-items:center;margin-top:5px">
${row.marker}
${row.seriesName}: ${row.value}
${row.seriesName}: ${row.value.toFixed(2)}
</div>
<div>
${row.data?.info ? row.data?.info?.replaceAll('万', '万<br>') : ''}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!