7 changed files with 324 additions and 149 deletions
-
8src/views/xm/core/xmMenu/XmMenuMng.vue
-
80src/views/xm/core/xmMenu/XmMenuSelect.vue
-
48src/views/xm/core/xmProduct/XmProductMng.vue
-
167src/views/xm/core/xmProduct/XmProductSelect.vue
-
99src/views/xm/core/xmTask/XmTaskList.vue
-
17src/views/xm/core/xmTestCase/XmTestCaseMng.vue
-
36src/views/xm/core/xmTestCaseExec/XmTestCaseExecMng.vue
@ -0,0 +1,167 @@ |
|||
<template> |
|||
<section> |
|||
<el-row > |
|||
<!--列表 XmProduct 产品表--> |
|||
<el-table :data="xmProducts" @sort-change="sortChange" highlight-current-row v-loading="load.list" border @selection-change="selsChange" @row-click="rowClick" style="width: 100%;"> |
|||
<el-table-column sortable type="index" width="55"></el-table-column> |
|||
<el-table-column prop="productName" label="产品名称" min-width="150" > |
|||
<template slot-scope="scope"> |
|||
{{scope.row.id}} <el-link type="primary">{{scope.row.productName}}</el-link> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column v-if="isSelectProduct==true" label="操作" width="100" fixed="right" > |
|||
<template slot-scope="scope"> |
|||
<el-button @click="selectedProduct( scope.row,scope.$index)">选择</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-pagination layout="total, sizes, prev, pager, next" @current-change="handleCurrentChange" @size-change="handleSizeChange" :page-sizes="[10,20, 50, 100, 500]" :current-page="pageInfo.pageNum" :page-size="pageInfo.pageSize" :total="pageInfo.total" style="float:right;"></el-pagination> |
|||
</el-row> |
|||
</section> |
|||
</template> |
|||
|
|||
<script> |
|||
import util from '@/common/js/util';//全局公共库 |
|||
//import Sticky from '@/components/Sticky' // 粘性header组件 |
|||
//import { listOption } from '@/api/mdp/meta/itemOption';//下拉框数据查询 |
|||
import { listXmProductWithState } from '@/api/xm/core/xmProduct'; |
|||
import { mapGetters } from 'vuex' |
|||
|
|||
|
|||
export default { |
|||
props:['isSelectProduct','selProject'], |
|||
computed: { |
|||
...mapGetters([ |
|||
'userInfo','roles' |
|||
]) |
|||
}, |
|||
data() { |
|||
return { |
|||
filters: { |
|||
key: '' |
|||
}, |
|||
xmProducts: [],//查询结果 |
|||
pageInfo:{//分页数据 |
|||
total:0,//服务器端收到0时,会自动计算总记录数,如果上传>0的不自动计算。 |
|||
pageSize:10,//每页数据 |
|||
count:false,//是否需要重新计算总记录数 |
|||
pageNum:1,//当前页码、从1开始计算 |
|||
orderFields:[],//排序列 如 ['sex','student_id'],必须为数据库字段 |
|||
orderDirs:[]//升序 asc,降序desc 如 性别 升序、学生编号降序 ['asc','desc'] |
|||
}, |
|||
load:{ list: false, edit: false, del: false, add: false },//查询中... |
|||
sels: [],//列表选中数据 |
|||
options:{},//下拉选择框的所有静态数据 params=[{categoryId:'0001',itemCode:'sex'}] 返回结果 {'sex':[{optionValue:'1',optionName:'男',seqOrder:'1',fp:'',isDefault:'0'},{optionValue:'2',optionName:'女',seqOrder:'2',fp:'',isDefault:'0'}]} |
|||
|
|||
addFormVisible: false,//新增xmProduct界面是否显示 |
|||
//新增xmProduct界面初始化数据 |
|||
addForm: { |
|||
id:'',productName:'',branchId:'',remark:'' |
|||
}, |
|||
|
|||
editFormVisible: false,//编辑界面是否显示 |
|||
//编辑xmProduct界面初始化数据 |
|||
editForm: { |
|||
id:'',productName:'',branchId:'',remark:'' |
|||
}, |
|||
iterationVisible:false, |
|||
productStateVisible:false, |
|||
/**begin 自定义属性请在下面加 请加备注**/ |
|||
|
|||
/**end 自定义属性请在上面加 请加备注**/ |
|||
} |
|||
},//end data |
|||
methods: { |
|||
handleSizeChange(pageSize) { |
|||
this.pageInfo.pageSize=pageSize; |
|||
this.getXmProducts(); |
|||
}, |
|||
handleCurrentChange(pageNum) { |
|||
this.pageInfo.pageNum = pageNum; |
|||
this.getXmProducts(); |
|||
}, |
|||
// 表格排序 obj.order=ascending/descending,需转化为 asc/desc ; obj.prop=表格中的排序字段,字段驼峰命名 |
|||
sortChange( obj ){ |
|||
var dir='asc'; |
|||
if(obj.order=='ascending'){ |
|||
dir='asc' |
|||
}else{ |
|||
dir='desc'; |
|||
} |
|||
if(obj.prop=='xxx'){ |
|||
this.pageInfo.orderFields=['xxx']; |
|||
this.pageInfo.orderDirs=[dir]; |
|||
} |
|||
this.getXmProducts(); |
|||
}, |
|||
searchXmProducts(){ |
|||
this.pageInfo.count=true; |
|||
this.getXmProducts(); |
|||
}, |
|||
//获取列表 XmProduct 产品表 |
|||
getXmProducts() { |
|||
let params = { |
|||
pageSize: this.pageInfo.pageSize, |
|||
pageNum: this.pageInfo.pageNum, |
|||
total: this.pageInfo.total, |
|||
count:this.pageInfo.count |
|||
}; |
|||
if(this.pageInfo.orderFields!=null && this.pageInfo.orderFields.length>0){ |
|||
let orderBys=[]; |
|||
for(var i=0;i<this.pageInfo.orderFields.length;i++){ |
|||
orderBys.push(this.pageInfo.orderFields[i]+" "+this.pageInfo.orderDirs[i]) |
|||
} |
|||
params.orderBy= orderBys.join(",") |
|||
} |
|||
if(this.filters.key!==""){ |
|||
//params.xxx=this.filters.key |
|||
}else{ |
|||
//params.xxx=xxxxx |
|||
} |
|||
if(this.selProject){ |
|||
params.projectId=this.selProject.id |
|||
} |
|||
params.branchId=this.userInfo.branchId |
|||
this.load.list = true; |
|||
listXmProductWithState(params).then((res) => { |
|||
var tips=res.data.tips; |
|||
if(tips.isOk){ |
|||
this.pageInfo.total = res.data.total; |
|||
this.pageInfo.count=false; |
|||
this.xmProducts = res.data.data; |
|||
}else{ |
|||
this.$message({ message: tips.msg, type: 'error' }); |
|||
} |
|||
this.load.list = false; |
|||
}).catch( err => this.load.list = false ); |
|||
}, |
|||
|
|||
//选择行xmProduct |
|||
selsChange: function (sels) { |
|||
this.sels = sels; |
|||
}, |
|||
|
|||
rowClick: function(row, event, column){ |
|||
this.$emit('row-click',row, event, column);// @row-click="rowClick" |
|||
}, |
|||
selectedProduct:function(row){ |
|||
this.$emit('selected',row); |
|||
}, |
|||
|
|||
|
|||
},//end methods |
|||
components: { |
|||
//在下面添加其它组件 |
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => { |
|||
this.getXmProducts(); |
|||
}); |
|||
} |
|||
} |
|||
|
|||
</script> |
|||
|
|||
<style scoped> |
|||
|
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue