yangfeng
2023-08-09 acdff03246ce648082192dfb069c3a006a7fbee6
src/views/client/contacts/DetailContacts.vue
@@ -83,7 +83,7 @@
                <li>
                  <div class="left remark">
                    <div class="content-title">{{ "备注:" }}</div>
                    <div class="content-data">{{ "备注内容" }}</div>
                    <div class="content-data">{{ detailConfig.infomation.desc }}</div>
                  </div>
                </li>
              </ul>
@@ -154,41 +154,41 @@
    }
  },
  created() {
    this.setData()
    this.setData(this.detailConfig.infomation)
  },
  mounted() {},
  methods: {
    setData() {
    setData(item) {
      this.basicInfoList = [
        {
          leftStr: "联系人姓名",
          leftValue: "",
          leftValue: item.name,
          rightStr: "联系人编号",
          rightValue: ""
          rightValue: item.number
        },
        {
          leftStr: "客户名称",
          leftValue: "",
          leftValue: item.Client.name,
          rightStr: "手机",
          rightValue: ""
          rightValue: item.phone
        },
        {
          leftStr: "职务",
          leftValue: "",
          leftValue: item.position,
          rightStr: "销售负责人",
          rightValue: ""
          rightValue: item.member_id
        },
        {
          leftStr: "首要联系人",
          leftValue: "",
          leftValue: item.is_first,
          rightStr: "微信号",
          rightValue: ""
          rightValue: item.wechat
        },
        {
          leftStr: "生日",
          leftValue: "",
          leftValue: item.birthday,
          rightStr: "联系人Email",
          rightValue: ""
          rightValue: item.email
        },
        {
          leftStr: "签到",
@@ -206,15 +206,15 @@
      this.addressInfoList = [
        {
          leftStr: "国家",
          leftValue: "",
          leftValue: item.Country.name,
          rightStr: "省份",
          rightValue: ""
          rightValue: item.Province.name
        },
        {
          leftStr: "城市",
          leftValue: "",
          leftValue: item.City.name,
          rightStr: "区域",
          rightValue: ""
          rightValue: item.Region.name
        },
        {
          leftStr: "邮编",
@@ -331,7 +331,7 @@
                align-items: center;
                height: 40px;
                .content-title {
                  width: 220px;
                  width: 320px;
                  text-align: right;
                  color: #555;
                }