|
@@ -1,8 +1,8 @@
|
|
import {BasicColumn} from '/@/components/Table';
|
|
import {BasicColumn} from '/@/components/Table';
|
|
import {FormSchema} from '/@/components/Table';
|
|
import {FormSchema} from '/@/components/Table';
|
|
-import { rules} from '/@/utils/helper/validator';
|
|
|
|
-import { render } from '/@/utils/common/renderUtils';
|
|
|
|
import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
|
|
import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
|
|
|
|
+import {ref} from "vue";
|
|
|
|
+import {defHttp} from "@/utils/http/axios";
|
|
//列表数据
|
|
//列表数据
|
|
export const columns: BasicColumn[] = [
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
{
|
|
@@ -50,13 +50,17 @@ export const columns: BasicColumn[] = [
|
|
export const searchFormSchema: FormSchema[] = [
|
|
export const searchFormSchema: FormSchema[] = [
|
|
];
|
|
];
|
|
//表单数据
|
|
//表单数据
|
|
|
|
+export const siteId = ref();
|
|
export const formSchema: FormSchema[] = [
|
|
export const formSchema: FormSchema[] = [
|
|
{
|
|
{
|
|
label: '站点id',
|
|
label: '站点id',
|
|
field: 'siteId',
|
|
field: 'siteId',
|
|
component: 'JSearchSelect',
|
|
component: 'JSearchSelect',
|
|
- componentProps:{
|
|
|
|
- dict:"okki_site,company_name,site_id"
|
|
|
|
|
|
+ componentProps: {
|
|
|
|
+ dict:"okki_site,company_name,site_id",
|
|
|
|
+ onChange: (e) => {
|
|
|
|
+ siteId.value = e;
|
|
|
|
+ }
|
|
},
|
|
},
|
|
dynamicRules: ({model,schema}) => {
|
|
dynamicRules: ({model,schema}) => {
|
|
return [
|
|
return [
|
|
@@ -155,9 +159,22 @@ export const okkiProductListFormSchema: FormSchema[] = [
|
|
{
|
|
{
|
|
label: '商品pid',
|
|
label: '商品pid',
|
|
field: 'pidList',
|
|
field: 'pidList',
|
|
- component: 'Input',
|
|
|
|
|
|
+ component: 'ApiSelect',
|
|
componentProps:{
|
|
componentProps:{
|
|
-
|
|
|
|
|
|
+ //multiple: 多选;不填写为单选
|
|
|
|
+ mode: 'multiple',
|
|
|
|
+ //请求api,返回结果{ result: { records: [{'id':'1',name:'scott'},{'id':'2',name:'小张'}] }}
|
|
|
|
+ api: ()=> defHttp.get({ url: '/showlist/okkiShowlist/productList?siteId=' + siteId.value}),
|
|
|
|
+ //数值转成String
|
|
|
|
+ numberToString: false,
|
|
|
|
+ //标题字段
|
|
|
|
+ labelField: 'c_title',
|
|
|
|
+ //值字段
|
|
|
|
+ valueField: 'cid',
|
|
|
|
+ //请求参数
|
|
|
|
+ params: {},
|
|
|
|
+ //返回结果字段
|
|
|
|
+ resultField:'list'
|
|
},
|
|
},
|
|
dynamicRules: ({model,schema}) => {
|
|
dynamicRules: ({model,schema}) => {
|
|
return [
|
|
return [
|