| | |
| | | <up-tabs |
| | | v-model="tabValue" |
| | | :list="tabList" |
| | | itemStyle="width: 33.33%;height: 80rpx;" |
| | | itemStyle="width: 25%;height: 80rpx;" |
| | | @change="onTabChange" |
| | | /> |
| | | </view> |
| | |
| | | |
| | | <view class="item-details"> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">纳税人识别号</text> |
| | | <text class="detail-value">{{ item.taxpayerIdentificationNumber || "-" }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">公司电话</text> |
| | | <text class="detail-value">{{ item.companyPhone || "-" }}</text> |
| | | </view> |
| | |
| | | <text class="detail-value">{{ item.companyAddress || "-" }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">法人</text> |
| | | <text class="detail-value">{{ item.corporation || "-" }}</text> |
| | | <text class="detail-label">联系人</text> |
| | | <text class="detail-value">{{ item.contactPerson || "-" }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">代理人</text> |
| | | <text class="detail-value">{{ item.agent || "-" }}</text> |
| | | <text class="detail-label">联系电话</text> |
| | | <text class="detail-value">{{ item.contactPhone || "-" }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">联系人岗位</text> |
| | | <text class="detail-value">{{ item.contactPosition || "-" }}</text> |
| | | </view> |
| | | <view class="detail-row"> |
| | | <text class="detail-label">维护人</text> |
| | |
| | | { name: "全部客户", value: "" }, |
| | | { name: "零售客户", value: "零售客户" }, |
| | | { name: "经销商客户", value: "经销商客户" }, |
| | | { name: "连锁店", value: "连锁店" }, |
| | | ]); |
| | | const tabValue = ref(0); |
| | | |