Browse Source

修改页面样式

dev
caoyizhong 2 years ago
parent
commit
9f8ae30226
  1. 51
      src/views/merchandisenews/ProcessMerchandiseNewsList.vue

51
src/views/merchandisenews/ProcessMerchandiseNewsList.vue

@ -14,22 +14,31 @@
<a-input placeholder="请输入物资编号" v-model="queryParam.materialsNumber"></a-input> <a-input placeholder="请输入物资编号" v-model="queryParam.materialsNumber"></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
<template v-if="toggleSearchStatus">
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="物资单位">
<a-input placeholder="请输入物资单位" v-model="queryParam.materialsUnit"></a-input>
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24"> <a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="型号"> <a-form-item label="供应商">
<a-input placeholder="请输入型号" v-model="queryParam.type"></a-input> <!-- <a-input placeholder="供应商" v-model="queryParam.materialsUnit"></a-input>-->
</a-form-item> <a-select v-model="queryParam.materialsUnit" placeholder="请选择" >
</a-col> <a-select-option v-for="(item,index) in bigId" :key="index" :value="item.id">{{item.supplierName}}</a-select-option>
<a-col :xl="6" :lg="7" :md="8" :sm="24"> </a-select>
<a-form-item label="规格">
<a-input placeholder="请输入规格" v-model="queryParam.specification"></a-input>
</a-form-item> </a-form-item>
</a-col> </a-col>
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">-->
<!-- <a-form-item label="物资单位">-->
<!-- <a-input placeholder="请输入物资单位" v-model="queryParam.materialsUnit"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">-->
<!-- <a-form-item label="型号">-->
<!-- <a-input placeholder="请输入型号" v-model="queryParam.type"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">-->
<!-- <a-form-item label="规格">-->
<!-- <a-input placeholder="请输入规格" v-model="queryParam.specification"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<template v-if="toggleSearchStatus">
</template> </template>
<a-col :xl="6" :lg="7" :md="8" :sm="24"> <a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
@ -137,6 +146,7 @@
import { JeecgListMixin } from '@/mixins/JeecgListMixin' import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMerchandiseNewsModal from './modules/ProcessMerchandiseNewsModal' import ProcessMerchandiseNewsModal from './modules/ProcessMerchandiseNewsModal'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { getAction } from '@api/manage'
export default { export default {
name: 'ProcessMerchandiseNewsList', name: 'ProcessMerchandiseNewsList',
@ -148,6 +158,7 @@
data () { data () {
return { return {
description: '物资清单表管理页面', description: '物资清单表管理页面',
bigId:[],
// //
columns: [ columns: [
{ {
@ -225,6 +236,7 @@
deleteBatch: "/merchandisenews/processMerchandiseNews/deleteBatch", deleteBatch: "/merchandisenews/processMerchandiseNews/deleteBatch",
exportXlsUrl: "/merchandisenews/processMerchandiseNews/exportXls", exportXlsUrl: "/merchandisenews/processMerchandiseNews/exportXls",
importExcelUrl: "merchandisenews/processMerchandiseNews/importExcel", importExcelUrl: "merchandisenews/processMerchandiseNews/importExcel",
supplierId: "/supplier/processSupplier/list"
}, },
dictOptions:{}, dictOptions:{},
@ -254,7 +266,18 @@
fieldList.push({type:'string',value:'specification',text:'规格',dictCode:''}) fieldList.push({type:'string',value:'specification',text:'规格',dictCode:''})
fieldList.push({type:'string',value:'synopsis',text:'简介概要',dictCode:''}) fieldList.push({type:'string',value:'synopsis',text:'简介概要',dictCode:''})
fieldList.push({type:'int',value:'classify',text:'分类',dictCode:''}) fieldList.push({type:'int',value:'classify',text:'分类',dictCode:''})
this.superFieldList = fieldList this.superFieldList = fieldList;
//
let par = {
delFlag: 0,
state: 0
}
getAction(this.url.supplierId,par).then((res)=>{
if(res.success){
// console.log(res.result.records);
this.bigId = res.result.records;
}
});
} }
} }
} }

Loading…
Cancel
Save