fix: 智聪记账管理,POS机管理功能优化。

This commit is contained in:
tianyongbao
2025-04-14 13:05:48 +08:00
parent a8efa6efac
commit 737f97bfa6
3 changed files with 9 additions and 4 deletions

View File

@@ -57,8 +57,8 @@
inputAlign="right" border="none"></u--input> inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon> <u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item> </u-form-item>
<u-form-item label="商" prop="manufacture" > <u-form-item label="供货商" prop="manufacture" >
<u--input v-model="form.manufacture" placeholder="请填写商" <u--input v-model="form.manufacture" placeholder="请填写供货商"
inputAlign="right" border="none"></u--input> inputAlign="right" border="none"></u--input>
</u-form-item> </u-form-item>
<u-form-item label="支付公司" prop="payCompany" > <u-form-item label="支付公司" prop="payCompany" >

View File

@@ -3,7 +3,7 @@
<u-navbar <u-navbar
leftIconSize="40rpx" leftIconSize="40rpx"
leftIconColor="#333333" leftIconColor="#333333"
title="信用卡详情" title="POS机详情"
> >
</u-navbar> </u-navbar>
<view class="section"> <view class="section">
@@ -19,7 +19,7 @@
<u-cell title="结算卡:" titleStyle="font-weight:bolder" :value="detailInfo.bankNameCode"></u-cell> <u-cell title="结算卡:" titleStyle="font-weight:bolder" :value="detailInfo.bankNameCode"></u-cell>
<u-cell title="商户类型:" titleStyle="font-weight:bolder" :value="detailInfo.merchantType"></u-cell> <u-cell title="商户类型:" titleStyle="font-weight:bolder" :value="detailInfo.merchantType"></u-cell>
<u-cell title="商户码:" titleStyle="font-weight:bolder" :value="detailInfo.merchantCode"></u-cell> <u-cell title="商户码:" titleStyle="font-weight:bolder" :value="detailInfo.merchantCode"></u-cell>
<u-cell title="商:" titleStyle="font-weight:bolder" :value="detailInfo.manufacture"></u-cell> <u-cell title="供货商:" titleStyle="font-weight:bolder" :value="detailInfo.manufacture"></u-cell>
<u-cell title="编号:" titleStyle="font-weight:bolder" :value="detailInfo.code"></u-cell> <u-cell title="编号:" titleStyle="font-weight:bolder" :value="detailInfo.code"></u-cell>
<u-cell title="启用日期:" titleStyle="font-weight:bolder" :value="detailInfo.activationDate"></u-cell> <u-cell title="启用日期:" titleStyle="font-weight:bolder" :value="detailInfo.activationDate"></u-cell>
<u-cell title="备注:" titleStyle="font-weight:bolder" center :value="detailInfo.remark"> </u-cell> <u-cell title="备注:" titleStyle="font-weight:bolder" center :value="detailInfo.remark"> </u-cell>

View File

@@ -21,6 +21,7 @@
<text class="row-label">支付公司</text> <text class="row-label">支付公司</text>
<text class="row-value">{{ item.payCompany }}</text> <text class="row-value">{{ item.payCompany }}</text>
</view> </view>
<view class="item-row"> <view class="item-row">
<text class="row-label">类型</text> <text class="row-label">类型</text>
<text class="row-value">{{ dictStr(item.type, posTypeList) }}</text> <text class="row-value">{{ dictStr(item.type, posTypeList) }}</text>
@@ -41,6 +42,10 @@
<text class="row-label">商户类型</text> <text class="row-label">商户类型</text>
<text class="row-value">{{ dictStr(item.merchantType, merchantTypeList) }}</text> <text class="row-value">{{ dictStr(item.merchantType, merchantTypeList) }}</text>
</view> </view>
<view class="item-row">
<text class="row-label">供货商</text>
<text class="row-value">{{ item.manufacture }}</text>
</view>
<view class="operate" > <view class="operate" >
<!-- <view class="btn filling" @click="enterDetails(item)">查看</view > --> <!-- <view class="btn filling" @click="enterDetails(item)">查看</view > -->
<view class="btn filling" @click="handleEdit(item)">修改</view> <view class="btn filling" @click="handleEdit(item)">修改</view>