diff --git a/src/views/biz/NuBizAdvisoryInfo/pc/NuBizAdvisoryInfoList.vue b/src/views/biz/NuBizAdvisoryInfo/pc/NuBizAdvisoryInfoList.vue index de21db6..2c9b7ac 100644 --- a/src/views/biz/NuBizAdvisoryInfo/pc/NuBizAdvisoryInfoList.vue +++ b/src/views/biz/NuBizAdvisoryInfo/pc/NuBizAdvisoryInfoList.vue @@ -19,13 +19,13 @@ - + - + @@ -49,7 +49,7 @@ @@ -86,7 +86,7 @@ useSearchForm: false, showIndexColumn: true, actionColumn: { - width: 120, + width: 140, fixed: 'right', }, beforeFetch: async (params) => { @@ -183,14 +183,6 @@ onClick: handleEdit.bind(null, record), auth: 'NuBizAdvisoryInfo:nu_biz_advisory_info:edit' }, - ]; - } - - /** - * 下拉操作栏 - */ - function getDropDownAction(record) { - return [ { label: '详情', onClick: handleDetail.bind(null, record), @@ -203,8 +195,9 @@ }, auth: 'NuBizAdvisoryInfo:nu_biz_advisory_info:delete' } - ] + ]; } + /** * 查询 diff --git a/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList copy.vue b/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList copy.vue deleted file mode 100644 index 50937b5..0000000 --- a/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList copy.vue +++ /dev/null @@ -1,227 +0,0 @@ - - - - - diff --git a/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList.vue b/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList.vue index 0509403..b8467cb 100644 --- a/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList.vue +++ b/src/views/biz/bizEmployeesInfo/BizEmployeesInfoList.vue @@ -7,7 +7,7 @@ - + @@ -64,7 +64,7 @@ -
+
共 {{ total }} 条数据 @@ -92,6 +92,7 @@ import { Pagination } from 'ant-design-vue'; import { useDrawer } from '/@/components/Drawer'; import UserDrawer from '/@/views/system/user/UserDrawer.vue'; +import JInput from "/@/components/Form/src/jeecg/components/JInput.vue"; const APagination = Pagination; diff --git a/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList copy.vue b/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList copy.vue deleted file mode 100644 index 6652404..0000000 --- a/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList copy.vue +++ /dev/null @@ -1,240 +0,0 @@ - - - - - diff --git a/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList.vue b/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList.vue index c7b046e..6487b52 100644 --- a/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList.vue +++ b/src/views/biz/nuBizCustomerInfo/NuBizCustomerInfoList.vue @@ -7,13 +7,13 @@ - + - + @@ -77,7 +77,7 @@ -
+
共 {{ total }} 条数据 @@ -99,6 +99,7 @@ import { getFileAccessHttpUrl } from '/@/utils/common/compUtils'; import { defHttp } from '/@/utils/http/axios'; import { Pagination } from 'ant-design-vue'; +import JInput from "/@/components/Form/src/jeecg/components/JInput.vue"; const APagination = Pagination; const formRef = ref(); diff --git a/src/views/biz/nuBizCustomerInfo/components/CheckNuListForm.vue b/src/views/biz/nuBizCustomerInfo/components/CheckNuListForm.vue index a890d59..d6335d5 100644 --- a/src/views/biz/nuBizCustomerInfo/components/CheckNuListForm.vue +++ b/src/views/biz/nuBizCustomerInfo/components/CheckNuListForm.vue @@ -32,6 +32,7 @@ */ function edit(record) { customerInfo.value = record; + nuId.value = ''; const getNulistUrl = "/h5Api/nuBaseInfo/list"; defHttp.get({ url: getNulistUrl }).then((data) => { nulistSource.value = data; diff --git a/src/views/invoicing/ConfigMaterial/ConfigMaterialInfo.data.ts b/src/views/invoicing/ConfigMaterial/ConfigMaterialInfo.data.ts index a51f13b..570f316 100644 --- a/src/views/invoicing/ConfigMaterial/ConfigMaterialInfo.data.ts +++ b/src/views/invoicing/ConfigMaterial/ConfigMaterialInfo.data.ts @@ -13,7 +13,8 @@ export const columns: BasicColumn[] = [ { title: '货品编码', align: "center", - dataIndex: 'materialNo' + dataIndex: 'materialNo', + width:'100px' }, { title: '规格型号', @@ -23,37 +24,44 @@ export const columns: BasicColumn[] = [ { title: '销售单价', align: "center", - dataIndex: 'salesUnitPrice' + dataIndex: 'salesUnitPrice', + width:'100px' }, { title: '参考单价', align: "center", - dataIndex: 'referenceUnitPrice' + dataIndex: 'referenceUnitPrice', + width:'100px' }, { title: '货品单位', align: "center", - dataIndex: 'materialUnits' + dataIndex: 'materialUnits', + width:'100px' }, { title: '供应商', align: "center", - dataIndex: 'suppliers_dictText' + dataIndex: 'suppliers_dictText', + width:'200px' }, { title: '物料类别', align: "center", - dataIndex: 'categoryId_dictText' + dataIndex: 'categoryId_dictText', + width:'100px' }, { title: '物料类型', align: "center", - dataIndex: 'typeId_dictText' + dataIndex: 'typeId_dictText', + width:'100px' }, { title: '用药类型', align: "center", - dataIndex: 'medicationId_dictText' + dataIndex: 'medicationId_dictText', + width:'100px' }, // { // title: '物料图片', @@ -70,7 +78,8 @@ export const columns: BasicColumn[] = [ { title: '是否启用', align: "center", - dataIndex: 'izEnabled_dictText' + dataIndex: 'izEnabled_dictText', + width:'100px' }, ]; diff --git a/src/views/invoicing/ConfigMaterial/ConfigMaterialInfoList.vue b/src/views/invoicing/ConfigMaterial/ConfigMaterialInfoList.vue index 68003de..47d6d6a 100644 --- a/src/views/invoicing/ConfigMaterial/ConfigMaterialInfoList.vue +++ b/src/views/invoicing/ConfigMaterial/ConfigMaterialInfoList.vue @@ -28,12 +28,6 @@ - - - - - - @@ -42,10 +36,16 @@ - + + + + + + + diff --git a/src/views/services/directivePackage/DirectivePackageList.vue b/src/views/services/directivePackage/DirectivePackageList.vue index 2ecaa18..c391047 100644 --- a/src/views/services/directivePackage/DirectivePackageList.vue +++ b/src/views/services/directivePackage/DirectivePackageList.vue @@ -25,24 +25,24 @@
- - + +
- +
{{ directive.packageName }}
-
+
{{ directive.description }}
{{ directive.createBy_dictText }} {{ directive.createTime.substring(0,10) }} - +