Commit 137cf10b authored by 王玉鑫's avatar 王玉鑫

feat: 单位万/亩、及土地价格改为万元/亩

parent d219635e
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
v-if="detail.price?.toString().length" v-if="detail.price?.toString().length"
class="absolute bottom-[8px] right-0 text-[20px] font-semibold text-[#C0322B]" class="absolute bottom-[8px] right-0 text-[20px] font-semibold text-[#C0322B]"
> >
{{ detail.price }}元/亩 {{ detail.price }}元/亩
</div> </div>
</div> </div>
</div> </div>
......
...@@ -62,19 +62,19 @@ export function useJoinRequired<T extends JoinRequiredParams>( ...@@ -62,19 +62,19 @@ export function useJoinRequired<T extends JoinRequiredParams>(
{ {
name: '亩均年产值', name: '亩均年产值',
value: averageOutputValue, value: averageOutputValue,
unit: '万/亩', unit: '万/亩',
}, },
], ],
[ [
{ {
name: '亩均投资强度', name: '亩均投资强度',
value: investmentStrength, value: investmentStrength,
unit: '万/亩', unit: '万/亩',
}, },
{ {
name: '亩均税收', name: '亩均税收',
value: taxationStrength, value: taxationStrength,
unit: '万/亩', unit: '万/亩',
}, },
], ],
[ [
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
investmentDetails: industryDirection, investmentDetails: industryDirection,
}" }"
> >
<DetailMainInfo :value="detail.price" unit="万/亩" name="土地价格"></DetailMainInfo> <DetailMainInfo :value="detail.price" unit="万/亩" name="土地价格"></DetailMainInfo>
<DetailMainInfo :value="detail.type" name="土地类型"></DetailMainInfo> <DetailMainInfo :value="detail.type" name="土地类型"></DetailMainInfo>
<DetailMainInfo <DetailMainInfo
:value="formatNumber(detail.area)" :value="formatNumber(detail.area)"
......
...@@ -252,19 +252,19 @@ const joinRequired = computed(() => { ...@@ -252,19 +252,19 @@ const joinRequired = computed(() => {
{ {
name: '亩均投资额', name: '亩均投资额',
value: investmentStrength, value: investmentStrength,
unit: '万/亩', unit: '万/亩',
}, },
], ],
[ [
{ {
name: '亩均税收', name: '亩均税收',
value: taxationStrength, value: taxationStrength,
unit: '万/亩', unit: '万/亩',
}, },
{ {
name: '亩均年产值', name: '亩均年产值',
value: averageOutputValue, value: averageOutputValue,
unit: '万/亩', unit: '万/亩',
}, },
], ],
[ [
......
...@@ -277,19 +277,19 @@ const joinRequired = computed(() => { ...@@ -277,19 +277,19 @@ const joinRequired = computed(() => {
{ {
name: '亩均投资额', name: '亩均投资额',
value: investmentStrength, value: investmentStrength,
unit: '万/亩', unit: '万/亩',
}, },
], ],
[ [
{ {
name: '亩均税收', name: '亩均税收',
value: taxationStrength, value: taxationStrength,
unit: '万/亩', unit: '万/亩',
}, },
{ {
name: '亩均年产值', name: '亩均年产值',
value: averageOutputValue, value: averageOutputValue,
unit: '万/亩', unit: '万/亩',
}, },
], ],
[ [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment