Commit c83fc035 authored by youjie's avatar youjie

no message

parent fa13f9b7
......@@ -1010,6 +1010,7 @@ input:-webkit-autofill {
text-align: center;
padding: 20px;
width: 100%;
font-size: 14px;
}
.el-loading-spinner .path {
......
This diff is collapsed.
This diff is collapsed.
<style scoped>
@import "../../../../assets/css/cssReset.css";
.tagF{
margin-right: 5px;
}
</style>
<template>
<div>
<table class="po_content singeRowTable"
style="border:1px solid #E6E6E6;" cellspacing="0"
cellpadding="0" v-loading="loading">
<tr>
<th>账户名称</th>
<th>别名</th>
<th>开户人</th>
<th>类型</th>
<th>关联科目</th>
<th width="150px">操作</th>
</tr>
<tr v-for="(item,index) in list" :key="index">
<td>{{item.BackName}}</td>
<td>{{item.Alias}}</td>
<td>{{item.Accountholder}}</td>
<td>{{item.TypeName}}</td>
<td style="white-space: warp;">
<p style="padding: 3px 0;" v-for="(i,indexs) in item.KingdeeList" :key="indexs">
<span class="q-mr-xs">{{i.BranchName}}: </span>
<el-tag size="mini" class="tagF"
closable @close="Delete(item,i)">
{{i.KingdeeName}} <span class="q-ml-xs">{{i.KingdeeCode}}</span>
</el-tag>
</p>
</td>
<td width="150px">
<span class="a" style="cursor: pointer;color:blue;text-decoration:underline;margin-right: 5px"
@click="AddR(item)">新增</span>
<!-- <el-select v-if="item.KingdeeList.length>0" style="width:100px" size="mini"
v-model="item.SubjectId" @change="Delete($event,item)" placeholder="选择删除">
<el-option v-for="(i,indexs) in item.KingdeeList" :key="indexs"
:label="i.KingdeeName" :value='i.SubjectId'></el-option>
</el-select> -->
<!-- <span style="cursor: pointer;color:red;text-decoration:underline;" @click="Delete(item)">删除</span> -->
</td>
</tr>
</table>
<div class="noData" v-if="list&&list.length==0">
{{$t('system.content_noData')}}
</div>
</div>
</template>
<script>
export default {
props: {
list: {
type: Array,
default: null
},
loading: {
type: Boolean,
default: null
},
type: {
type: Number,
default: null
}
},
data() {
return {
}
},
watch: {
list: {
handler(val) {
this.list = val
},
deep: true
},
loading: {
handler(val) {
this.loading = val
},
deep: true
},
type: {
handler(val) {
this.type = val
},
deep: true
}
},
created(){
},
mounted(){
},
methods: {
Delete(item,i){
let _this = this
let msg = {
Type: this.type,
TargetId: item.ID,
SubjectId: i.SubjectId,
}
this.$q.dialog({
title: '将删除此科目数据',
message: '是否继续?',
cancel: true,
persistent: true,
ok: "确定",
cancel: "取消",
}).onOk(() => {
this.apipost('Financial_post_DelCostTypeKingdeeRelation',msg, res => {
if(res.data.resultCode == 1) {
this.$q.notify({
icon: 'iconfont icon-chenggong',
color: 'accent',
timeout: 2000,
message: res.data.Message,
position: 'top'
});
this.$emit('success');
} else {
}
}, err => {
})
}).onCancel(() => {
});
},
AddR(item){
this.$emit('clickEdit',item)
},
},
}
</script>
<style scoped>
@import "../../../../assets/css/cssReset.css";
.tagF{
margin-right: 5px;
}
</style>
<template>
<div>
<table class="po_content singeRowTable"
style="border:1px solid #E6E6E6;" cellspacing="0"
cellpadding="0" v-loading="loading">
<tr>
<th>账户名称</th>
<th>别名</th>
<th>开户人</th>
<th>类型</th>
<th>关联科目</th>
<th width="150px">操作</th>
</tr>
<tr v-for="(item,index) in list" :key="index">
<td>{{item.BackName}}</td>
<td>{{item.Alias}}</td>
<td>{{item.Accountholder}}</td>
<td>{{item.TypeName}}</td>
<td style="white-space: warp;">
<p style="padding: 3px 0;" v-for="(i,indexs) in item.KingdeeList" :key="indexs">
<span class="q-mr-xs">{{i.BranchName}}: </span>
<el-tag size="mini" class="tagF"
closable @close="Delete(item,i)">
{{i.KingdeeName}}<span class="q-ml-xs">{{i.KingdeeCode}}</span>
</el-tag>
</p>
</td>
<td width="150px">
<span style="cursor: pointer;color:blue;text-decoration:underline;margin-right: 5px" @click="AddR(item)">新增</span>
</td>
</tr>
</table>
<div class="noData" v-if="list&&list.length==0">
{{$t('system.content_noData')}}
</div>
</div>
</template>
<script>
export default {
props: {
list: {
type: Array,
default: null
},
loading: {
type: Boolean,
default: null
},
type: {
type: Number,
default: null
}
},
data() {
return {
}
},
watch: {
list: {
handler(val) {
this.list = val
},
deep: true
},
loading: {
handler(val) {
this.loading = val
},
deep: true
},
type: {
handler(val) {
this.type = val
},
deep: true
}
},
created(){
},
mounted(){
},
methods: {
Delete(item,i){
let _this = this
let msg = {
Type: this.type,
TargetId: item.ID,
SubjectId: i.SubjectId,
}
this.$q.dialog({
title: '将删除此科目数据',
message: '是否继续?',
cancel: true,
persistent: true,
ok: "确定",
cancel: "取消",
}).onOk(() => {
this.apipost('Financial_post_DelCostTypeKingdeeRelation',msg, res => {
if(res.data.resultCode == 1) {
this.$q.notify({
icon: 'iconfont icon-chenggong',
color: 'accent',
timeout: 2000,
message: res.data.Message,
position: 'top'
});
this.$emit('success');
} else {
}
}, err => {
})
}).onCancel(() => {
});
},
AddR(item){
this.$emit('clickEdit',item)
},
},
}
</script>
This diff is collapsed.
......@@ -3977,6 +3977,47 @@ export default {
},
},
{ //金蝶对接 金蝶币种
path: '/KingdeeCurrency',
name: 'KingdeeCurrency',
component: resolve => require(['@/components/FinancialModule/Kingdee/currency'], resolve),
meta: {
title: '金蝶币种'
},
},
{ //金蝶对接 金蝶科目
path: '/KingdeeLemonCloudSubjects',
name: 'KingdeeLemonCloudSubjects',
component: resolve => require(['@/components/FinancialModule/Kingdee/LemonCloudSubjects'], resolve),
meta: {
title: '金蝶科目'
},
},
{ //金蝶对接 金蝶项目
path: '/KingdeeProject',
name: 'KingdeeProject',
component: resolve => require(['@/components/FinancialModule/Kingdee/project'], resolve),
meta: {
title: '金蝶项目'
},
},
{ //金蝶对接 金蝶科目对照表
path: '/KingdeeSubjectContrast',
name: 'KingdeeSubjectContrast',
component: resolve => require(['@/components/FinancialModule/Kingdee/SubjectContrast'], resolve),
meta: {
title: '金蝶科目对照表'
},
},
{ //金蝶对接 金蝶导出查询
path: '/KingdeeRecPayQuery',
name: 'KingdeeRecPayQuery',
component: resolve => require(['@/components/FinancialModule/Kingdee/RecPayQuery'], resolve),
meta: {
title: '金蝶导出查询'
},
},
{ //财务 线路收客
path: '/LineReceiver',
name: 'LineReceiver',
......
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