li.shaoyi %!s(int64=2) %!d(string=hai) anos
pai
achega
90b9e847f1

+ 1 - 1
src/packages/mobile/views/market/list/components/spot/index.vue

@@ -15,7 +15,7 @@ const { dataList } = useRequest(querySpotgoodsPrice)
 
 const columns: Model.TableColumn[] = [
     { prop: 'wrstandardname', label: '名称' },
-    { prop: 'spotgoodsprice', label: '招标价(元)' },
+    { prop: 'spotgoodsprice', label: '招标价(元/吨)' },
     { prop: 'spotgoodsqty', label: '招标量(吨)' },
     { prop: 'tradedate', label: '日期' },
 ]

+ 4 - 3
src/packages/mobile/views/mine/order/detail/purchasetrade/index.vue

@@ -11,7 +11,8 @@
                 <Cell title="总预付款(含定金)" :value="handleNumberValue(detail.payeddeposit.toFixed(2), '元')" />
                 <Cell title="付款比例" :value="parsePercent(detail.depositrate)" />
                 <Cell title="每吨预付金" :value="handleNumberValue(detail.transferprice.toFixed(2), '元')" />
-                <Cell title="交收结算价" :value="handleNumberValue(detail.lastprice.toFixed(2), '元')" />
+                <Cell title="交收结算价"
+                    :value="handleNumberValue(detail.lastprice.toFixed(2), '元/' + getGoodsUnitName(detail.unitid))" />
                 <Cell title="尾款" :value="handleNumberValue(detail.remainamount.toFixed(2), '元')" />
                 <Cell title="尾款支付截止日" label="若河钢招标价晚于交收月10号,待公布后顺延2个自然日付款" />
                 <Cell title="状态" :value="detail.thjorderstatusdisplay" />
@@ -34,8 +35,8 @@
             </CellGroup>
             <CellGroup title="点价信息"
                 v-if="detail.pointflag && (detail.buyuserid === detail.firstbuyuserid || ['2', '3'].includes(type.toString()))">
-                <Cell title="已点价格" :value="detail.pointprice" />
-                <Cell title="已点收益" :value="detail.pointincome" />
+                <Cell title="已点价格" :value="detail.pointprice + '元'" />
+                <Cell title="已点收益" :value="detail.pointincome + '元'" />
             </CellGroup>
         </div>
         <div v-else>

+ 3 - 3
src/packages/mobile/views/mine/order/detail/transfer/index.vue

@@ -26,12 +26,12 @@
                         <div style="white-space: pre-line">{{ details.receiptinfo }}</div>
                     </template>
                 </Cell>
-                <Cell title="电子合同" :value="details.transferid" :is-link="!!details.contractaddr"
+                <Cell title="合同单号" :value="details.transferid" :is-link="!!details.contractaddr"
                     @click="openPDF(details?.contractaddr)" />
             </CellGroup>
             <CellGroup title="点价信息" v-if="details.pointflag && loginStore.userId === details.firstbuyuserid">
-                <Cell title="已点价格" :value="details.pointprice" />
-                <Cell title="已点收益" :value="details.pointincome" />
+                <Cell title="已点价格" :value="details.pointprice + '元'" />
+                <Cell title="已点收益" :value="details.pointincome + '元'" />
             </CellGroup>
         </div>
         <div v-else>

+ 2 - 2
src/packages/mobile/views/mine/order/list/components/purchasetrade/index.vue

@@ -33,11 +33,11 @@
                         </li>
                         <li>
                             <span>每吨预付金</span>
-                            <span>{{ handleNumberValue(item.transferprice, '元/' + getGoodsUnitName(item.unitid)) }}</span>
+                            <span>{{ handleNumberValue(item.transferprice, '元') }}</span>
                         </li>
                         <li>
                             <span>交收结算价</span>
-                            <span>{{ handleNumberValue(item.lastprice, '元') }}</span>
+                            <span>{{ handleNumberValue(item.lastprice, '元/' + getGoodsUnitName(item.unitid)) }}</span>
                         </li>
                         <li>
                             <span>尾款</span>