瀏覽代碼

评估合同-客户选择样式调整,委托方联系人新增按钮调整

wangqiang 1 年之前
父節點
當前提交
1c9e600343

+ 0 - 1
src/components/workClientInfoSelect/WorkClientInfoSelectDialog.vue

@@ -63,7 +63,6 @@
 			border="inner"
 			auto-resize
 			resizable
-			height="auto"
 			:loading="loading"
 			size="small"
 			ref="clientTable"

+ 3 - 20
src/views/program/registered/ContactForm.vue

@@ -10,19 +10,8 @@
       @keyup.enter.native="getContact"
       v-model="visible">
       <div style="height: calc(100% - 80px);">
-<!--        <el-form size="small" :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>-->
-<!--          &lt;!&ndash; 搜索框&ndash;&gt;-->
-<!--          <el-form-item label="联系人姓名" prop="name">-->
-<!--            <el-input size="small" v-model="searchForm.name" placeholder="请输入联系人姓名" clearable></el-input>-->
-<!--          </el-form-item>-->
 
-<!--          <el-form-item>-->
-<!--            <el-button type="primary" @click="list()" size="small" icon="el-icon-search">查询</el-button>-->
-<!--            <el-button @click="resetSearch()" size="small" icon="el-icon-refresh-right">重置</el-button>-->
-<!--          </el-form-item>-->
-<!--        </el-form>-->
-
-        <el-table
+        <vxe-table
           border="inner"
           auto-resize
           resizable
@@ -35,7 +24,6 @@
           highlight-hover-row
           :menu-config="{}"
           :print-config="{}"
-          @sort-change=""
           :sort-config="{remote:true}"
           :data="dataList"
           :checkbox-config="{}">
@@ -46,7 +34,7 @@
           <vxe-column width="" title="联系方式1" field="linkPhone"></vxe-column>
           <vxe-column width="" title="联系方式2" field="linkMobile"></vxe-column>
 
-        </el-table>
+        </vxe-table>
       </div>
 		<template #footer>
 			<span slot="footer" class="dialog-footer">
@@ -60,9 +48,7 @@
 </template>
 
 <script>
-  import InputNumber from '@/views/workContract/InputNumber.vue'
   import WorkClientService from '@/api/sys/WorkClientService'
-  import SelectUserTree from '@/views/utils/treeUserSelect'
   export default {
     data () {
       return {
@@ -91,8 +77,6 @@
       this.workClientService = new WorkClientService()
     },
     components: {
-      SelectUserTree,
-      InputNumber
     },
     methods: {
       init (ids, deputy) {
@@ -132,8 +116,7 @@
         this.dataList = []
         this.searchForm.ids.forEach((item) => {
           this.workClientService.findById(item).then((data) => {
-             // console.log(data.data.workClientLinkman)
-			 // console.log(data.workClientLinkman)
+          	console.log('data', data)
             data.workClientLinkman.forEach(i => {
               this.dataList.push(i)
             })