Commit 79816d2b authored by dingyoujian's avatar dingyoujian

调整

# Conflicts:
#	src/views/sbysjsp/yssq/index.vue
#	src/views/sbysjsp/yssqtz/index.vue
parent b090a141
......@@ -4,36 +4,53 @@ import request from 'common/src/utils/request'
/* query */
export function doQuery(query) {
return request({
url: '/hafms/pzfyxm/query',
url: '/hafms/fyxm/query',
method: 'post',
data: query||{}
})
}
export function doAdd(query) {
return request({
url: '/hafms/pzfyxm/add',
url: '/hafms/fyxm/add',
method: 'post',
data: query||{}
})
}
export function doUpdate(query) {
return request({
url: '/hafms/pzfyxm/update',
url: '/hafms/fyxm/update',
method: 'post',
data: query||{}
})
}
export function doDelete(query) {
return request({
url: '/hafms/pzfyxm/delete',
url: '/hafms/fyxm/delete',
method: 'post',
data: query||{}
})
}
export function qt(query) {
return request({
url: '/hafms/pzfyxm/record/qt',
url: '/hafms/fyxm/record/qt',
method: 'post',
data: query||{}
})
}
\ No newline at end of file
}
/* 上移,下移 */
export function moveup(query) {
return request({
url: '/hafms/fyxm/moveup',
method: 'post',
data: query||{}
})
}
export function movedown(query) {
return request({
url: '/hafms/fyxm/movedown',
method: 'post',
data: query||{}
})
}
<template>
<RelDialog :type='type' :editApp='editApp' :app='app' :buttonApp='buttonApp'>
<!-- 填写表单内容,slot=form必写-->
<el-form slot="form" ref="form" :model="form" label-width="80px" :rules="rules">
<el-form slot="form" ref="form" :model="form" label-width="100px" :rules="rules">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="费用编码" ref="code" prop="code">
<el-input :readonly="readonly" v-model="form.code"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="费用名称" ref="name" prop="name">
<el-input :readonly="readonly" v-model="form.name"></el-input>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" ref="bz" prop="bz">
<el-input :readonly="readonly" v-model="form.bz"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="费用名称" v-rule="{
required:true,
rules:rules,
}" ref="name" prop="name">
<el-input :readonly="readonly" v-model="form.name" ></el-input>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="备注" ref="bz" prop="bz">
<el-input :readonly="readonly" v-model="form.bz" ></el-input>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-form>
</RelDialog>
......@@ -35,10 +39,11 @@
return {
/* 当前表单初始值,默认由RelDialog查询indexQuery赋值,copy时不赋值id,初始化时所有query的值都会赋值给form*/
form: {
code:'',
id:'',
name:'',
bz:''
code:'',
name:'',
bz:'',
cbysbz:'',
xhqsfs:''
}
}
},
......
<template>
<div class="min_full">
<!-- 查询条件-->
<!-- 按钮操作-->
<el-row class="tool-bar">
<ToolButton :app='app'></ToolButton>
<ViewButton ref="view" :app='app'></ViewButton>
<AddButton ref="add" :app='app'></AddButton>
<CopyButton ref="copy" :app='app'></CopyButton>
<EditButton ref="edit" :app='app'></EditButton>
<ReloadButton :app='app'></ReloadButton>
<!-- <AttachFileButton :app='app' ></AttachFileButton> -->
<!-- 额外按钮-->
<!-- 表头设置 -->
<!-- 权限-->
</el-row>
<!-- 表格-->
<div class="tablePagers">
<TablePager @getData='getData' :ref="'TablePager'" :app='app' :query='query' @selectItem='selectItem'
@getRow='getRow'>
<div class="min_full">
<!-- 查询条件-->
<!-- 按钮操作-->
<el-row class="tool-bar">
<ToolButton :app='app'></ToolButton>
<ViewButton ref="view" :app='app'></ViewButton>
<AddButton ref="add" :app='app'></AddButton>
<CopyButton ref="copy" :app='app'></CopyButton>
<EditButton ref="edit" :app='app'></EditButton>
<el-button size='mini' @click="addxjfl()" type="primary">添加下级分类</el-button>
<!-- <el-button size='mini' @click="sy()" type="primary">上移</el-button>
<el-button size='mini' @click="xy()" type="primary">下移</el-button> -->
<ReloadButton :app='app'></ReloadButton>
<!-- <AttachFileButton :app='app' ></AttachFileButton> -->
<!-- 额外按钮-->
<!-- 表头设置 -->
<!-- 权限-->
</el-row>
<!-- 表格-->
<div class="tablePagers">
<TablePager :operateButtons='true' @getData='getData' :ref="'TablePager'" :app='app' :query='query' @selectItem='selectItem'
type='treeTable' @getRow='getRow' :getTreeMethod='getTreeMethod' >
<template slot="tabCustom">
<el-table-column label="启用/停用" width="90" header-align="center" fixed="right" >
<template slot-scope="scope">
......@@ -27,67 +30,181 @@
</template>
</el-table-column>
</template>
</TablePager>
</div>
</div>
</TablePager>
</div>
</div>
</template>
<script>
import {
doQuery,
doAdd,
doUpdate,
doDelete,
import {
doQuery,
doAdd,
doUpdate,
doDelete,
moveup,
movedown,
qt
} from '@/api/jccspz/fymxwd.js';
/* edit页面*/
import Edit from './edit'
import {
tableMixin
} from 'common'
export default {
mixins: [tableMixin],
name: 'fymxwd',
/* 初始额外赋值*/
async mounted() {
this.$refs['TablePager'].pageQuery()
},
data() {
return {
/*需要的额外参数 */
showDialog: false,
DialogName: '',
type: '',
DialogTitle: '',
/* 基础url*/
baseUrl: 'hafms/pzfyxm',
/* 查询参数*/
queryParams: {
} from '@/api/jccspz/fymxwd.js';
/* edit页面*/
import Edit from './edit'
import {
tableMixin
} from 'common'
export default {
mixins: [tableMixin],
name: 'fymxwd',
/* 初始额外赋值*/
async mounted() {
/* 初始化条件*/
/* */
this.$refs['TablePager'].pageQuery()
},
data() {
return {
/* 控制树表格渲染正确 */
rowKey:'id',
/*需要的额外参数 */
showDialog: false,
DialogName: '',
type: '',
DialogTitle: '',
/* 基础url*/
baseUrl: 'hafms/fyxm',
/* 查询参数*/
queryParams: {
},
/* 表格标题对应参数*/
tableTitle: [{
title: "名称",
field: "name",
width: 300
},
{
title: "编码",
field: "code",
width: 120
},
{
title: "状态",
field: "tybz",
fieldType: "tybz"
},
{
title: "停用日期",
field: "tyrq",
fieldType: "ftDate"
},
{
title: "备注",
field: "bz"
},
{
title: "维护人",
field: "whr"
},
{
title: "维护时间",
field: "whsj",
fieldType: "ftDateTime"
}
]
}
},
methods: {
tybz(a) {
let nTy = false
nTy = (a.row.tybz == 'N' ? true : false)
return nTy
},
/* 基础查询*/
query: doQuery,
/* 基础增*/
apiAdd: doAdd,
/* 基础更新*/
apiUpdate: doUpdate,
/* 删除操作*/
apiDelete: doDelete,
getTreeMethod(that,tdata){
let treeData=tdata
treeData.forEach((e, index) => {
treeData[index].rowKey = e.id
})
let newTreeData = that.dgData(treeData, 'root')
that.tableData=newTreeData
that.expandKeys = ['rowKey']
if(this.singleItem.id){
let querys=(item,id)=>{
if(item.id==id){
/* 表格数据变更需要重构建Dom需要nextTick*/
this.$nextTick(()=>{
this.$refs.TablePager.setCurrent(item)
})
return item
}else{
/* 展开 */
// this.$refs.TablePager.expandKeys.push(item.rowKey)
item.children.forEach(e=>{
querys(e,id)
})
}
}
querys({
children:newTreeData,
id:false
},this.singleItem.id)
}
},
addxjfl(){
if (this.app.selectOne || this.app.clickOne) {
/* 打开add*/
this.$refs.add.add()
/* 添加pid */
this.$nextTick(()=>{
this.$refs.add.$children[1].form.pid=this.singleItem.id
})
} else {
this.$warning('请选中一行操作');
}
},
sy(){
if (this.app.selectOne || this.app.clickOne) {
moveup({
id:this.singleItem.id
}).then(res=>{
if(res.success){
this.$refs.TablePager.pageQuery({
loading:false
})
}
})
} else {
this.$warning('请选中一行操作');
}
},
xy(){
if (this.app.selectOne || this.app.clickOne) {
movedown({
id:this.singleItem.id
}).then(res=>{
if(res.success){
this.$refs.TablePager.pageQuery({
loading:false
})
}
})
} else {
this.$warning('请选中一行操作');
}
},
/* 表格标题对应参数*/
tableTitle: [
{title: "项目编码", field: "code", width: 140,hidden:true},
{title: "项目名称", field: "name", width: 160,hidden:true},
{title: "费用明细", field: "showname", width: 180},
{title: "状态", field: "tybz", width: 80,formatter:(a,b,value)=>{
let label='正常'
if(value!='N'){
label='停用'
}
return label
}},
{title: "停用日期", field: "tyrq", fieldType: "ftDate"},
{title: "备注", field: "bz", width: 200},
{title: "维护人", field: "whr"},
{title: "维护时间", field: "whsj", fieldType: "ftDateTime"}
]
}
},
methods: {
tybz(a) {
let nTy = false
nTy = (a.row.tybz == 'N' ? true : false)
return nTy
},
setEnable(id) {
this.$confirm('是否启用/停用, 是否继续?', '提示', {
......@@ -109,23 +226,15 @@
})
},
/* 基础查询*/
query: doQuery,
/* 基础增*/
apiAdd: doAdd,
/* 基础更新*/
apiUpdate: doUpdate,
/* 删除操作*/
apiDelete: doDelete,
/* 初始化赋值操作*/
init() {
/* 初始化赋值操作*/
init() {
}
},
components: {
Edit,
}
}
}
},
components: {
Edit,
}
}
</script>
<style scoped>
......
This diff is collapsed.
......@@ -16,30 +16,29 @@
<el-date-picker value-format="timestamp" v-model='queryParams.end' ></el-date-picker>
</div>
</el-col>
<!-- <el-col :span="6" class="search-col">
<el-col :span="6" class="search-col">
<div class="search-item">
<span class="search-span">预算任务:</span>
<RelSelect style="width: 100%;" src='hafms/ysfl/query' filterable clearable
:match="{value:'id',label:'name'}" v-model='queryParams.flid'></RelSelect>
</div>
</el-col> -->
<el-col :span="6" class="search-col">
<div class="search-item">
<span class="search-span">申请订单:</span>
<el-input v-model="queryParams.djid"></el-input>
</div>
</el-col>
<!-- <el-col :span="6" class="search-col">
<div class="search-item">
<span class="search-span">状态:</span>
<RelSelect style="width: 100%;" src='hafms/yssq/init/zt' filterable clearable
:match="{value:'id',label:'name'}" v-model='queryParams.zt'></RelSelect>
</div>
</el-col> -->
<!-- <el-col :span="6" class="search-col">-->
<!-- <div class="search-item">-->
<!-- <span class="search-span">状态:</span>-->
<!-- <RelSelect style="width: 100%;" src='hafms/yssq/init/zt' filterable clearable-->
<!-- :match="{value:'id',label:'name'}" v-model='queryParams.zt'></RelSelect>-->
<!-- </div>-->
<!-- </el-col>-->
</el-row>
<el-row :gutter="20" class="search-row-1">
<el-col :span="8" class="search-col">
<div class="search-item">
<span class="search-span">申请订单:</span>
<el-input v-model="queryParams.djid"></el-input>
</div>
</el-col>
<el-col :span="8" class="search-col">
<div class="search-item">
<span class="search-span">申请公司:</span>
......@@ -132,22 +131,22 @@
/* 表格标题对应参数*/
tableTitle: [
// {title: "预算任务", field: "ysflName", fieldType: "ftString",width:200},
{title: "状态", field: "zt", fieldType: "ftString", align:'center', width: 70, transform: {
url: 'hafms/yssq/init/zt',
label: 'name',
value: 'id'
}},
// {title: "状态", field: "zt", fieldType: "ftString", align:'center', width: 70, transform: {
// url: 'hafms/yssq/init/zt',
// label: 'name',
// value: 'id'
// }},
{title: "申请单号", field: "djid", fieldType: "ftString", width: 100},
{title: "公司编码", field: "sjbmcode", fieldType: "ftString",width:140},
{title: "公司名称", field: "sjbmName", fieldType: "ftString",width:140},
{title: "部门编码", field: "bmcode", fieldType: "ftString",width:140},
// {title: "公司编码", field: "sjbmcode", fieldType: "ftString",width:140},
{title: "公司名称", field: "sjbmName", fieldType: "ftString",width:140},
// {title: "部门编码", field: "bmcode", fieldType: "ftString",width:140},
{title: "部门名称", field: "bmName", fieldType: "ftString",width:140},
{title: "填报日期", field: "tbrq", fieldType: "ftDate"},
// {title: "填报人编码", field: "tbrid", fieldType: "ftString",width:192},
{title: "填报人", field: "tbr", fieldType: "ftString",width:180},
{title: "申请金额(万元)", field: "sqje", fieldType: "float",width:150},
{title: "联系电话", field: "lxfs1", fieldType: "ftString",width:200},
{title: "内部短号", field: "lxfs2", fieldType: "ftString",width:120}
// {title: "申请金额", field: "sqje", fieldType: "float"},
// {title: "联系电话", field: "lxfs1", fieldType: "ftString",width:200},
// {title: "内部短号", field: "lxfs2", fieldType: "ftString",width:120}
]
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment