|
@@ -54,6 +54,12 @@
|
|
<span>{{scope.row.customerName}}</span>
|
|
<span>{{scope.row.customerName}}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column align="left" label="金蝶部门编号" prop="k3OrgNumber" min-width="200" show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <CopyButton :copyText="scope.row.k3OrgNumber" />
|
|
|
|
+ <span>{{scope.row.k3OrgNumber}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column align="left" label="钱包名称" prop="customerWalletName" min-width="200" show-overflow-tooltip></el-table-column>
|
|
<el-table-column align="left" label="钱包名称" prop="customerWalletName" min-width="200" show-overflow-tooltip></el-table-column>
|
|
<el-table-column align="left" label="业务员" prop="serviceName" min-width="160" show-overflow-tooltip></el-table-column>
|
|
<el-table-column align="left" label="业务员" prop="serviceName" min-width="160" show-overflow-tooltip></el-table-column>
|
|
<el-table-column align="left" label="创建人" prop="createBy" min-width="180" show-overflow-tooltip></el-table-column>
|
|
<el-table-column align="left" label="创建人" prop="createBy" min-width="180" show-overflow-tooltip></el-table-column>
|
|
@@ -86,12 +92,18 @@
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="经销商编码" prop="">
|
|
|
|
|
|
+ <el-form-item label="经销商编码" prop="customerNumber">
|
|
<el-input disabled v-model="addForm.customerNumber"></el-input>
|
|
<el-input disabled v-model="addForm.customerNumber"></el-input>
|
|
<!-- <template slot-scope="scope">
|
|
<!-- <template slot-scope="scope">
|
|
{{ scope.row }}
|
|
{{ scope.row }}
|
|
</template> -->
|
|
</template> -->
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
+ <el-form-item label="金蝶部门编号" prop="k3OrgNumber">
|
|
|
|
+ <el-input v-model="addForm.k3OrgNumber"></el-input>
|
|
|
|
+ <!-- <template slot-scope="scope">
|
|
|
|
+ {{ scope.row }}
|
|
|
|
+ </template> -->
|
|
|
|
+ </el-form-item>
|
|
<el-form-item label="钱包" prop="customerWalletId">
|
|
<el-form-item label="钱包" prop="customerWalletId">
|
|
<el-select class="selectStyle" v-model="addForm.customerWalletId" placeholder="请选择" filterable>
|
|
<el-select class="selectStyle" v-model="addForm.customerWalletId" placeholder="请选择" filterable>
|
|
<el-option v-for="item in walletList" :key="item.customerWalletId" :label="item.customerWalletName" :value="item.customerWalletId">
|
|
<el-option v-for="item in walletList" :key="item.customerWalletId" :label="item.customerWalletName" :value="item.customerWalletId">
|
|
@@ -218,6 +230,7 @@ export default {
|
|
customerId: "",
|
|
customerId: "",
|
|
customerName: "",
|
|
customerName: "",
|
|
customerNumber: "",
|
|
customerNumber: "",
|
|
|
|
+ k3OrgNumber:"",
|
|
region: [],
|
|
region: [],
|
|
// oneParentId: "",
|
|
// oneParentId: "",
|
|
// twoParentId: "",
|
|
// twoParentId: "",
|
|
@@ -384,7 +397,7 @@ export default {
|
|
res.data.adminWebsitId3,
|
|
res.data.adminWebsitId3,
|
|
];
|
|
];
|
|
this.addForm.serviceId = res.data.serviceId;
|
|
this.addForm.serviceId = res.data.serviceId;
|
|
-
|
|
|
|
|
|
+ this.addForm.k3OrgNumber = res.data.k3OrgNumber
|
|
this.dialogForm = true;
|
|
this.dialogForm = true;
|
|
},
|
|
},
|
|
//获取业务员数据
|
|
//获取业务员数据
|
|
@@ -486,7 +499,7 @@ export default {
|
|
customerNumber: this.addForm.customerNumber,
|
|
customerNumber: this.addForm.customerNumber,
|
|
customerWalletId: this.addForm.customerWalletId,
|
|
customerWalletId: this.addForm.customerWalletId,
|
|
customerWalletName: data2[0].customerWalletName,
|
|
customerWalletName: data2[0].customerWalletName,
|
|
-
|
|
|
|
|
|
+ k3OrgNumber:this.addForm.k3OrgNumber,
|
|
serviceId: this.addForm.serviceId,
|
|
serviceId: this.addForm.serviceId,
|
|
serviceName: data3[0].nickName,
|
|
serviceName: data3[0].nickName,
|
|
};
|
|
};
|
|
@@ -508,6 +521,8 @@ export default {
|
|
this.addForm.customerName = "";
|
|
this.addForm.customerName = "";
|
|
this.addForm.customerWalletId = "";
|
|
this.addForm.customerWalletId = "";
|
|
this.addForm.region = [];
|
|
this.addForm.region = [];
|
|
|
|
+ this.addForm.k3OrgNumber = ''
|
|
|
|
+
|
|
// this.addForm.oneParentId = "";
|
|
// this.addForm.oneParentId = "";
|
|
// this.addForm.twoParentId = "";
|
|
// this.addForm.twoParentId = "";
|
|
// this.addForm.threeParentId = "";
|
|
// this.addForm.threeParentId = "";
|
|
@@ -533,6 +548,7 @@ export default {
|
|
this.addForm.customerNumber = "";
|
|
this.addForm.customerNumber = "";
|
|
this.addForm.customerWalletId = "";
|
|
this.addForm.customerWalletId = "";
|
|
this.addForm.region = [];
|
|
this.addForm.region = [];
|
|
|
|
+ this.addForm.k3OrgNumber = ''
|
|
// this.addForm.oneParentId = "";
|
|
// this.addForm.oneParentId = "";
|
|
// this.addForm.twoParentId = "";
|
|
// this.addForm.twoParentId = "";
|
|
// this.addForm.threeParentId = "";
|
|
// this.addForm.threeParentId = "";
|