2022-12-31修饰

zhc4dev
lenovo 2 years ago
parent 3cdb30c9ba
commit 1cd5353af1
  1. 10
      ant-design-vue-jeecg/src/views/product/pdaccessories/ProductAccessoriesList.vue
  2. 10
      ant-design-vue-jeecg/src/views/product/pdfabric/ProductFabricList.vue
  3. 10
      ant-design-vue-jeecg/src/views/product/pdmachine/ProductMachineList.vue
  4. 10
      ant-design-vue-jeecg/src/views/product/pdoperationtool/ProductOperationtoolList.vue

@ -1,5 +1,6 @@
<template> <template>
<a-card :bordered="false"> <a-card :bordered="false">
<p style="font-size: 30px;color:#333">{{biaoTi}}</p>
<!-- 查询区域 --> <!-- 查询区域 -->
<div class="table-page-search-wrapper"> <div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery"> <a-form layout="inline" @keyup.enter.native="searchQuery">
@ -22,6 +23,7 @@
<!-- 操作按钮区域 --> <!-- 操作按钮区域 -->
<div class="table-operator"> <div class="table-operator">
<a-button @click="fanhui" type="primary" icon="plus">返回</a-button>
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> <!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
<!-- <a-button type="primary" icon="download" @click="handleExportXls('产品辅料表')">导出</a-button>--> <!-- <a-button type="primary" icon="download" @click="handleExportXls('产品辅料表')">导出</a-button>-->
<!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">--> <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
@ -114,6 +116,7 @@
return { return {
description: '产品辅料表管理页面', description: '产品辅料表管理页面',
accessoriesId:'', accessoriesId:'',
biaoTi: '',
// //
columns: [ columns: [
{ {
@ -186,6 +189,12 @@
}, },
}, },
methods: { methods: {
fanhui(){
this.$router.push({
/*返回产品*/
path: '',/*在引号中填写返回vue*/
});
},
initDictConfig(){ initDictConfig(){
}, },
getSuperFieldList(){ getSuperFieldList(){
@ -200,6 +209,7 @@
loadParameter() { loadParameter() {
if (this.loadRouteType === false) { if (this.loadRouteType === false) {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.biaoTi = this.$route.query.styleNames+"产品辅料管理";
console.log("***********") console.log("***********")
this.loadRouteType = true; this.loadRouteType = true;
} }

@ -1,5 +1,6 @@
<template> <template>
<a-card :bordered="false"> <a-card :bordered="false">
<p style="font-size: 30px;color:#333">{{biaoTi}}</p>
<!-- 查询区域 --> <!-- 查询区域 -->
<div class="table-page-search-wrapper"> <div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery"> <a-form layout="inline" @keyup.enter.native="searchQuery">
@ -35,6 +36,7 @@
<!-- </a-menu>--> <!-- </a-menu>-->
<!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>--> <!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
<!-- </a-dropdown>--> <!-- </a-dropdown>-->
<a-button @click="fanhui" type="primary" icon="plus">返回</a-button>
</div> </div>
<!-- table区域-begin --> <!-- table区域-begin -->
@ -113,6 +115,7 @@
return { return {
description: '产品面料表管理页面', description: '产品面料表管理页面',
fabricId:'', fabricId:'',
biaoTi: '',
// //
columns: [ columns: [
{ {
@ -182,6 +185,12 @@
methods: { methods: {
initDictConfig(){ initDictConfig(){
}, },
fanhui(){
this.$router.push({
/*返回产品*/
path: '',/*在引号中填写返回vue*/
});
},
getSuperFieldList(){ getSuperFieldList(){
let fieldList=[]; let fieldList=[];
fieldList.push({type:'string',value:'productId',text:'产品id',dictCode:''}) fieldList.push({type:'string',value:'productId',text:'产品id',dictCode:''})
@ -194,6 +203,7 @@
loadParameter() { loadParameter() {
if (this.loadRouteType === false) { if (this.loadRouteType === false) {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.biaoTi = this.$route.query.styleNames+"产品面料管理";
console.log("***********") console.log("***********")
this.loadRouteType = true; this.loadRouteType = true;
} }

@ -1,5 +1,6 @@
<template> <template>
<a-card :bordered="false"> <a-card :bordered="false">
<p style="font-size: 30px;color:#333">{{biaoTi}}</p>
<!-- 查询区域 --> <!-- 查询区域 -->
<div class="table-page-search-wrapper"> <div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery"> <a-form layout="inline" @keyup.enter.native="searchQuery">
@ -35,6 +36,7 @@
<!-- </a-menu>--> <!-- </a-menu>-->
<!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>--> <!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
<!-- </a-dropdown>--> <!-- </a-dropdown>-->
<a-button @click="fanhui" type="primary" icon="plus">返回</a-button>
</div> </div>
<!-- table区域-begin --> <!-- table区域-begin -->
@ -114,6 +116,7 @@
return { return {
description: '产品设备表管理页面', description: '产品设备表管理页面',
machineId:'', machineId:'',
biaoTi: '',
// //
columns: [ columns: [
{ {
@ -182,6 +185,12 @@
}, },
}, },
methods: { methods: {
fanhui(){
this.$router.push({
/*返回产品*/
path: '',/*在引号中填写返回vue*/
});
},
up(id){ up(id){
getAction(this.url.up,{id:id}).then((res)=>{ getAction(this.url.up,{id:id}).then((res)=>{
if(res.success){ if(res.success){
@ -213,6 +222,7 @@
loadParameter() { loadParameter() {
if (this.loadRouteType === false) { if (this.loadRouteType === false) {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.biaoTi = this.$route.query.styleNames+"产品设备管理";
console.log("***********") console.log("***********")
this.loadRouteType = true; this.loadRouteType = true;
} }

@ -1,5 +1,6 @@
<template> <template>
<a-card :bordered="false"> <a-card :bordered="false">
<p style="font-size: 30px;color:#333">{{biaoTi}}</p>
<!-- 查询区域 --> <!-- 查询区域 -->
<div class="table-page-search-wrapper"> <div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery"> <a-form layout="inline" @keyup.enter.native="searchQuery">
@ -35,6 +36,7 @@
<!-- </a-menu>--> <!-- </a-menu>-->
<!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>--> <!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
<!-- </a-dropdown>--> <!-- </a-dropdown>-->
<a-button @click="fanhui" type="primary" icon="plus">返回</a-button>
</div> </div>
<!-- table区域-begin --> <!-- table区域-begin -->
@ -114,6 +116,7 @@
return { return {
description: '产品工具表管理页面', description: '产品工具表管理页面',
operationtoolId:'', operationtoolId:'',
biaoTi: '',
// //
columns: [ columns: [
{ {
@ -182,6 +185,12 @@
}, },
}, },
methods: { methods: {
fanhui(){
this.$router.push({
/*返回产品*/
path: '',/*在引号中填写返回vue*/
});
},
up(id){ up(id){
getAction(this.url.up,{id:id}).then((res)=>{ getAction(this.url.up,{id:id}).then((res)=>{
if(res.success){ if(res.success){
@ -213,6 +222,7 @@
loadParameter() { loadParameter() {
if (this.loadRouteType === false) { if (this.loadRouteType === false) {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.biaoTi = this.$route.query.styleNames+"产品工具管理";
console.log("***********") console.log("***********")
this.loadRouteType = true; this.loadRouteType = true;
} }

Loading…
Cancel
Save