-
-
-
- {{ item.label }}
-
-
-
-
+
+
+
+
diff --git a/ruoyi-ui/src/components/SearchSelect/searchdata.js b/ruoyi-ui/src/components/SearchSelect/searchdata.js
new file mode 100644
index 0000000..6a0d979
--- /dev/null
+++ b/ruoyi-ui/src/components/SearchSelect/searchdata.js
@@ -0,0 +1,68 @@
+// searchData.js - 搜索配置的独立模块
+
+export const selectConfigs =[
+ // 磅点选择
+ {
+ key: 'truepound',
+ params: 't_data_truepound;id;concat(name,\' \',usrcode)',
+ where: 'poundtype = \'3\'',
+ orderby: 'usrcode asc'
+ },
+ // 业务磅点
+ {
+ key: 'buspound',
+ params: "t_data_buspound;id;concat(name,' ',usrcode)",
+ where: '',
+ orderby: 'usrcode asc'
+ },
+ // 车号
+ {
+ key: 'carno',
+ params: "t_data_pounddata;usrcode;usrcode",
+ where: "type = 'plateNumber'",
+ orderby: "usrcode asc"
+ },
+ // 司机
+ {
+ key: 'cardriver',
+ params: "t_data_pounddata;usrcode;usrcode",
+ where: "type = 'driverName'",
+ orderby: "usrcode asc"
+ },
+ // 品名
+ {
+ key: 'itmcode',
+ params: "t_data_pounddata;usrcode;concat(name,' ',usrcode)",
+ where: "type = 'productName'",
+ orderby: "usrcode asc"
+ },
+ // 收货单位
+ {
+ key: 'recunit',
+ params: "t_data_pounddata;usrcode;concat(name,' ',usrcode)",
+ where: "type = 'receivingCompany'",
+ orderby: "usrcode asc"
+ },
+ // 承运单位
+ {
+ key: 'trnunit',
+ params: "t_data_pounddata;usrcode;concat(name,' ',usrcode)",
+ where: "type = 'teamOrCarrier'",
+ orderby: "usrcode asc"
+ },
+ // 发货单位
+ {
+ key: 'sendunit',
+ params: "t_data_pounddata;usrcode;concat(name,' ',usrcode)",
+ where: "type = 'shippingCompany'",
+ orderby: "usrcode asc"
+ },
+ // 主榜单号
+ {
+ key: 'appli',
+ params: "t_data_poundmst;id;usrcode",
+ where: "",
+ orderby: "usrcode asc"
+ },
+ ]
+;
diff --git a/ruoyi-ui/src/views/measurement/operation/outinpound/index.vue b/ruoyi-ui/src/views/measurement/operation/outinpound/index.vue
index 72a8a80..414ece1 100644
--- a/ruoyi-ui/src/views/measurement/operation/outinpound/index.vue
+++ b/ruoyi-ui/src/views/measurement/operation/outinpound/index.vue
@@ -15,9 +15,7 @@