Przeglądaj źródła

feature(招投标): 客户招标信息新增渠道推进工作、客户推进工作、客户后续销售机会字段

likai 2 lat temu
rodzic
commit
177fcd4c10

+ 36 - 0
src/views/customer/inviteTenders/components/closeLoop.vue

@@ -42,6 +42,36 @@
             show-word-limit
             type="textarea" />
         </el-form-item>
+        <el-form-item label="渠道推进工作" prop="channelPromotionWork">
+          <el-input
+            v-model="form.channelPromotionWork"
+            maxlength="200"
+            placeholder="请输入内容"
+            resize="none"
+            :rows="2"
+            show-word-limit
+            type="textarea" />
+        </el-form-item>
+        <el-form-item label="客户推进工作" prop="customerPromotionWork">
+          <el-input
+            v-model="form.customerPromotionWork"
+            maxlength="200"
+            placeholder="请输入内容"
+            resize="none"
+            :rows="2"
+            show-word-limit
+            type="textarea" />
+        </el-form-item>
+        <el-form-item label="客户后续销售机会" prop="customerSubsequentOpportunity">
+          <el-input
+            v-model="form.customerSubsequentOpportunity"
+            maxlength="200"
+            placeholder="请输入内容"
+            resize="none"
+            :rows="2"
+            show-word-limit
+            type="textarea" />
+        </el-form-item>
       </el-form>
       <span slot="footer">
         <el-button type="primary" @click="closeLoop">闭环</el-button>
@@ -69,6 +99,9 @@
           businessName: '',
           distributorName: '',
           closeReason: '',
+          channelPromotionWork: '',
+          customerPromotionWork: '',
+          customerSubsequentOpportunity: '',
         },
         rules: {
           closeMethod: [{ required: true, trigger: ['blur', 'change'], message: '请选择闭环方式' }],
@@ -109,6 +142,9 @@
           businessName: '',
           distributorName: '',
           closeReason: '',
+          channelPromotionWork: '',
+          customerPromotionWork: '',
+          customerSubsequentOpportunity: '',
         }
         this.$refs['form'].resetFields()
       },

+ 18 - 0
src/views/customer/inviteTenders/index.vue

@@ -256,6 +256,24 @@
             prop: 'closeLoopMsg',
             sortable: false,
           },
+          {
+            label: '渠道推进工作',
+            width: 'auto',
+            prop: 'channelPromotionWork',
+            sortable: false,
+          },
+          {
+            label: '客户推进工作',
+            width: 'auto',
+            prop: 'customerPromotionWork',
+            sortable: false,
+          },
+          {
+            label: '客户后续销售机会',
+            width: 'auto',
+            prop: 'customerSubsequentOpportunity',
+            sortable: false,
+          },
           {
             label: '备注',
             width: 'auto',