gaoluyang
2026-04-27 36c8ae70cae3de90e642b080553abe70d3345c74
src/pages/basicData/customerFile/index.vue
@@ -23,7 +23,7 @@
      <up-tabs
        v-model="tabValue"
        :list="tabList"
        itemStyle="width: 33.33%;height: 80rpx;"
        itemStyle="width: 25%;height: 80rpx;"
        @change="onTabChange"
      />
    </view>
@@ -44,10 +44,6 @@
        <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>
@@ -56,12 +52,16 @@
            <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>
@@ -106,6 +106,7 @@
    { name: "全部客户", value: "" },
    { name: "零售客户", value: "零售客户" },
    { name: "经销商客户", value: "经销商客户" },
    { name: "连锁店", value: "连锁店" },
  ]);
  const tabValue = ref(0);