yangfeng
2023-08-21 46ed69e3b72658140a40127f4bae16bef9a02d56
bug修复
12个文件已修改
78 ■■■■ 已修改文件
src/views/sales/contractManage/AddContractManageDialog.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/contractManage/DetailContractManage.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/contractManage/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/quotation/AddQuotationDialog.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/refundForm/AddRefundFormDialog.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/salesDetails/AddSalesDetailsDialog.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/salesDetails/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/salesReturn/AddSalesReturnDialog.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/subOrder/AddSubOrderDialog.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/service/serviceContract/AddServiceContractDialog.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/service/serviceFollowup/AddServiceFollowupDialog.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/service/serviceFollowup/DetailServiceFollowup.vue 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/contractManage/AddContractManageDialog.vue
@@ -61,10 +61,10 @@
                </el-form-item>
              </el-col>
              <el-col :span="12">
                <el-form-item label="合同状态" prop="status_id">
                <el-form-item label="合同状态" prop="statusId">
                  <div class="common-select">
                    <el-select
                      v-model="editConfig.infomation.status_id"
                      v-model="editConfig.infomation.statusId"
                      placeholder="请选择"
                      class="common-select-sel"
                      size="mini"
@@ -77,7 +77,7 @@
                </el-form-item>
              </el-col>
              <el-col :span="12">
                <el-form-item label="销售报价单" prop="quotationId">
                <el-form-item label="销售报价单" prop="quotation_number">
                  <div class="custom-name">
                    <el-autocomplete
                      v-model="editConfig.infomation.quotation_number"
src/views/sales/contractManage/DetailContractManage.vue
@@ -48,7 +48,7 @@
        </div>
        <div v-if="activeName === 'first'" class="detail">
          <!-- 进度追踪 -->
          <div class="basic-info">
          <!-- <div class="basic-info">
            <div class="basic-info-label" @click="expandClick('schdule')">
              <i v-if="isSchduleExpand" class="el-icon-arrow-down"></i>
              <i v-else class="el-icon-arrow-up"></i>
@@ -69,13 +69,13 @@
                </el-steps>
              </div>
            </div>
          </div>
          <!-- 机会基本信息 -->
          </div> -->
          <!-- 基本信息 -->
          <div class="basic-info">
            <div class="basic-info-label" @click="expandClick('basic')">
              <i v-if="isBasicExpand" class="el-icon-arrow-down"></i>
              <i v-else class="el-icon-arrow-up"></i>
              <span style="margin-left: 10px">机会基本信息</span>
              <span style="margin-left: 10px">基本信息</span>
            </div>
            <div v-show="isBasicExpand" class="basic-info-content">
              <ul>
@@ -209,13 +209,13 @@
          leftStr: "负责人",
          leftValue: item.member.username,
          rightStr: "合同状态",
          rightValue: item.statusId
          rightValue: item.serviceContractStatus.name
        },
        {
          leftStr: "创建人",
          leftValue: "",
          rightStr: "创建时间",
          rightValue: ""
          rightValue: item.created_at
        },
        {
          leftStr: "最新更新人",
src/views/sales/contractManage/index.vue
@@ -146,7 +146,9 @@
              const list = res.data.list.map((item) => {
                return {
                  ...item,
                  member_name: item.member.username
                  member_name: item.member.username,
                  client_name: item.client.name,
                  quotation_number: item.quotation.number
                }
              })
              this.tableList.tableInfomation = list || []
src/views/sales/quotation/AddQuotationDialog.vue
@@ -510,7 +510,7 @@
    // 设置允许上传文件格式
    setFormatClick() {},
    setTableForm() {
      if (this.editConfig.title === "新建") {
      if (this.editConfig.title === "新建" || this.editConfig.infomation.products.length === 0) {
        this.tableData = [
          {
            productId: this.productId,
src/views/sales/refundForm/AddRefundFormDialog.vue
@@ -428,7 +428,7 @@
    // 设置允许上传文件格式
    setFormatClick() {},
    setTableForm() {
      if (this.editConfig.title === "新建") {
      if (this.editConfig.title === "新建" || this.editConfig.infomation.products.length === 0) {
        this.tableData = [
          {
            productId: this.productId,
src/views/sales/salesDetails/AddSalesDetailsDialog.vue
@@ -493,7 +493,7 @@
        signTime: data.signTime || "",
        wechatOrderStatus: data.wechatOrderStatus || 0,
        logisticCompany: data.logisticCompany || "",
        logisticCost: parseInt(data.logisticCost) || 0,
        logisticCost: data.logisticCost || 0,
        logisticNumber: data.logisticNumber || ""
      }
      let params = {}
@@ -567,7 +567,7 @@
    // 设置允许上传文件格式
    setFormatClick() {},
    setTableForm() {
      if (this.editConfig.title === "新建") {
      if (this.editConfig.title === "新建" || this.editConfig.infomation.products.length === 0) {
        this.tableData = [
          {
            productId: this.productId,
src/views/sales/salesDetails/index.vue
@@ -269,7 +269,13 @@
    selClientClick(row) {
      console.log(row)
      this.clientDeail.visible = true
      this.clientDeail.infomation = { ...row, client_name: row.name }
      this.clientDeail.infomation = {
        ...row.client,
        member: row.Member,
        client_name: row.client.name,
        client_level: row.client.client_level.name,
        client_status: row.client.client_status.name
      }
    },
    // 联系人详情
    selCommonClick(row) {
src/views/sales/salesReturn/AddSalesReturnDialog.vue
@@ -385,7 +385,7 @@
    // 设置允许上传文件格式
    setFormatClick() {},
    setTableForm() {
      if (this.editConfig.title === "新建") {
      if (this.editConfig.title === "新建" || this.editConfig.infomation.products.length === 0) {
        this.tableData = [
          {
            productId: this.productId,
src/views/sales/subOrder/AddSubOrderDialog.vue
@@ -381,7 +381,7 @@
    // 设置允许上传文件格式
    setFormatClick() {},
    setTableForm() {
      if (this.editConfig.title === "新建") {
      if (this.editConfig.title === "新建" || this.editConfig.infomation.products.length === 0) {
        this.tableData = [
          {
            productId: this.productId,
src/views/service/serviceContract/AddServiceContractDialog.vue
@@ -684,7 +684,7 @@
    // 设置允许上传文件格式
    setFormatClick() {},
    setTableForm() {
      if (this.editConfig.title === "新建") {
      if (this.editConfig.title === "新建" || this.editConfig.infomation.products.length === 0) {
        this.tableData = [
          {
            productId: this.productId,
src/views/service/serviceFollowup/AddServiceFollowupDialog.vue
@@ -102,7 +102,7 @@
                  </el-select>
                </el-form-item>
              </el-col>
              <el-col :span="12">
              <!-- <el-col :span="12">
                <el-form-item label="项目计划" prop="planId">
                  <div class="custom-name">
                    <el-input v-model="editConfig.infomation.planId"></el-input>
@@ -110,7 +110,7 @@
                    <div class="common-select-btn"><i class="el-icon-edit" title="编辑"></i></div>
                  </div>
                </el-form-item>
              </el-col>
              </el-col> -->
              <el-col :span="12">
                <el-form-item label="满意度" prop="satisfactionId">
                  <div class="common-select">
src/views/service/serviceFollowup/DetailServiceFollowup.vue
@@ -140,31 +140,25 @@
        {
          leftStr: "回访人",
          leftValue: item.Member.username,
          rightStr: "项目计划",
          rightValue: ""
          rightStr: "满意度",
          rightValue: item.satisfaction.name
        },
        {
          leftStr: "满意度",
          leftValue: item.satisfaction.name,
          rightStr: "及时率",
          rightValue: item.timelyRate.name
          leftStr: "及时率",
          leftValue: item.timelyRate.name,
          rightStr: "解决率",
          rightValue: item.solveRate.name
        },
        {
          leftStr: "解决率",
          leftValue: item.solveRate.name,
          rightStr: "原服务人员",
          rightValue: item.oldMember.username
          leftStr: "原服务人员",
          leftValue: item.oldMember.username,
          rightStr: "服务人员是否来过",
          rightValue: item.isVisit.name
        },
        {
          leftStr: "服务人员是否来过",
          leftValue: item.isVisit.name,
          rightStr: "创建时间",
          rightValue: ""
        },
        {
          leftStr: "修改时间",
          leftStr: "创建时间",
          leftValue: "",
          rightStr: "",
          rightStr: "修改时间",
          rightValue: ""
        }
      ]