pull/781/head
zy 2025-05-27 11:02:41 +08:00
parent 2a49bec98e
commit b429977dab
5 changed files with 12 additions and 6 deletions

View File

@ -8,15 +8,16 @@
class="-mb-15px" class="-mb-15px"
label-width="68px" label-width="68px"
> >
<el-form-item label="客户名称" prop="customerName"> <el-form-item label="客户名称" prop="customerId">
<!-- <SelectComponent :customerList="customerList" class="!w-240px" v-model="queryParams.customerId" /> --> <SelectComponent :customerList="customerList" class="!w-240px" v-model="queryParams.customerId" />
<el-input <!-- <el-input
v-model="queryParams.customerName" v-model="queryParams.customerName"
class="!w-240px" class="!w-240px"
clearable clearable
placeholder="请输入客户名称" placeholder="请输入客户名称"
@keyup.enter="handleQuery" @keyup.enter="handleQuery"
/><!-- <el-select /> -->
<!-- <el-select
v-model="queryParams.customerId" v-model="queryParams.customerId"
class="!w-240px" class="!w-240px"
clearable clearable

View File

@ -82,7 +82,7 @@
<dict-tag :type="DICT_TYPE.CRM_PRODUCT_UNIT" :value="scope.row.unit" /> <dict-tag :type="DICT_TYPE.CRM_PRODUCT_UNIT" :value="scope.row.unit" />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="产品编码" align="center" prop="no" /> <el-table-column label="产品编码" align="center" prop="no" width="120" />
<el-table-column label="产品描述" align="center" prop="description" width="150" /> <el-table-column label="产品描述" align="center" prop="description" width="150" />
<el-table-column label="上架状态" align="center" prop="status" width="120"> <el-table-column label="上架状态" align="center" prop="status" width="120">
<template #default="scope"> <template #default="scope">

View File

@ -578,6 +578,7 @@ const formFields = ref({ //字段显示隐藏权限控制,字段顺序就是显
legalRepresentative: 1, legalRepresentative: 1,
deptId: 1, deptId: 1,
ownerUserId: 1, ownerUserId: 1,
clueDeveloper: 1,
pricingUserId: 1, pricingUserId: 1,
paymentTerm: 1, paymentTerm: 1,
creditMethod: 1, creditMethod: 1,

View File

@ -201,6 +201,10 @@ watch(
data.forEach(item => { data.forEach(item => {
item.onlinePrice = '' item.onlinePrice = ''
item.offlinePrice = '' item.offlinePrice = ''
item.productInvoice = 1
item.productInvoiceItem = 1
item.serviceInvoice = 1
item.serviceInvoiceItem = 1
}) })
formData.value = data formData.value = data
emit('update:handleType', 0) emit('update:handleType', 0)