Browse Source

fix: 调整支付币种和市场名称列宽

milestone-20251215-现金管理三期
zhangrenyuan 4 weeks ago
parent
commit
22f12a67ce
  1. 2
      src/views/moneyManage/receiveDetail/receiveFinance.vue
  2. 2
      src/views/moneyManage/receiveDetail/receiveManage.vue
  3. 4
      src/views/moneyManage/receiveDetail/receiveService.vue
  4. 4
      src/views/moneyManage/receiveDetail/utils/staticData.js

2
src/views/moneyManage/receiveDetail/receiveFinance.vue

@ -133,7 +133,7 @@
<span v-else>{{ scope.row.goodNum }}</span> <span v-else>{{ scope.row.goodNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="100px" />
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="120px" />
<el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" /> <el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" />
<!-- 地区财务显示到账币种/金额/手续费已通过/已完成标签页 --> <!-- 地区财务显示到账币种/金额/手续费已通过/已完成标签页 -->
<el-table-column prop="receivedCurrency" :label="t('common_list.receiveCurrency')" <el-table-column prop="receivedCurrency" :label="t('common_list.receiveCurrency')"

2
src/views/moneyManage/receiveDetail/receiveManage.vue

@ -133,7 +133,7 @@
<span v-else>{{ scope.row.goodNum }}</span> <span v-else>{{ scope.row.goodNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="100px" />
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="120px" />
<el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" /> <el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" />
<!-- 地区财务显示到账币种/金额/手续费已通过/已完成标签页 --> <!-- 地区财务显示到账币种/金额/手续费已通过/已完成标签页 -->
<el-table-column prop="receivedCurrency" :label="t('common_list.receiveCurrency')" <el-table-column prop="receivedCurrency" :label="t('common_list.receiveCurrency')"

4
src/views/moneyManage/receiveDetail/receiveService.vue

@ -95,7 +95,7 @@
</el-table-column> </el-table-column>
<el-table-column fixed="left" prop="jwcode" label="Homily ID" width="110px" /> <el-table-column fixed="left" prop="jwcode" label="Homily ID" width="110px" />
<el-table-column fixed="left" prop="name" :label="t('common_list.name')" width="110px" /> <el-table-column fixed="left" prop="name" :label="t('common_list.name')" width="110px" />
<el-table-column prop="marketName" :label="t('common_list.market')" width="80px" />
<el-table-column prop="marketName" :label="t('common_list.market')" width="100px" />
<el-table-column prop="activity" :label="t('common_list.activity')" width="120px" <el-table-column prop="activity" :label="t('common_list.activity')" width="120px"
show-overflow-tooltip /> show-overflow-tooltip />
<el-table-column prop="goodsName" :label="t('common_list.productName')" width="120px" /> <el-table-column prop="goodsName" :label="t('common_list.productName')" width="120px" />
@ -106,7 +106,7 @@
<span v-else>{{ scope.row.goodNum }}</span> <span v-else>{{ scope.row.goodNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="100px" />
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="120px" />
<el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" /> <el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" />
<el-table-column prop="payType" :label="t('common_list.payModel')" width="130px" /> <el-table-column prop="payType" :label="t('common_list.payModel')" width="130px" />
<el-table-column prop="payTime" :label="t('common_list.payTime')" width="180px" /> <el-table-column prop="payTime" :label="t('common_list.payTime')" width="180px" />

4
src/views/moneyManage/receiveDetail/utils/staticData.js

@ -213,7 +213,7 @@ export const MarketNameForId = (name) => {
return 24018 return 24018
} else if (name == t('cash.markets.VietnamHCM') || name == '越南HCM' || name == 'Vietnam HCM') { } else if (name == t('cash.markets.VietnamHCM') || name == '越南HCM' || name == 'Vietnam HCM') {
return 24022 return 24022
} else if (name == t('common.markets.headquarters') || name == '总部' || name == 'Headquarters' || name == 'HQ') {
} else if (name == t('common.markets.headquarters') || name == '总部' || name == 'Headquarters') {
return '总部' return '总部'
} else { } else {
return name return name
@ -221,7 +221,7 @@ export const MarketNameForId = (name) => {
} }
export const normalizeSubmitterMarket = (name) => { export const normalizeSubmitterMarket = (name) => {
if (name == t('common.markets.headquarters') || name == '总部' || name == 'Headquarters' || name == 'HQ') {
if (name == t('common.markets.headquarters') || name == '总部' || name == 'Headquarters') {
return '总部' return '总部'
} else { } else {
return name return name

Loading…
Cancel
Save