提交 9963edf3 编写于 作者: ibizdev's avatar ibizdev

xignzi006 发布系统代码

上级 b5cd7e83
......@@ -214,7 +214,7 @@ export default {
title: 'account编辑视图',
},
},
account_form: {
accountinfo_form: {
details: {
group1: "客户基本信息",
formpage1: "基本信息",
......
......@@ -213,7 +213,7 @@ export default {
title: 'account编辑视图',
},
},
account_form: {
accountinfo_form: {
details: {
group1: '客户基本信息',
formpage1: '基本信息',
......
......@@ -2,7 +2,7 @@
import { Component } from 'vue-property-decorator';
import AccountAccountBase from './account-account-base.vue';
import view_form from '@widgets/account/account-form/account-form.vue';
import view_form from '@widgets/account/accountinfo-form/accountinfo-form.vue';
@Component({
components: {
view_form,
......
/**
* Accountinfo 部件模型
*
* @export
* @class AccountinfoModel
*/
export default class AccountinfoModel {
/**
* 获取数据项集合
*
* @returns {any[]}
* @memberof AccountinfoModel
*/
public getDataItems(): any[] {
return [
{
name: 'srfwfmemo',
prop: 'srfwfmemo',
dataType: 'TEXT',
},
// 前端新增修改标识,新增为"0",修改为"1"或未设值
{
name: 'srffrontuf',
prop: 'srffrontuf',
dataType: 'TEXT',
},
{
name: 'srfupdatedate',
prop: 'updatedate',
dataType: 'DATETIME',
},
{
name: 'srforikey',
},
{
name: 'srfkey',
prop: 'accountid',
dataType: 'GUID',
},
{
name: 'srfmajortext',
prop: 'accountname',
dataType: 'TEXT',
},
{
name: 'srftempmode',
},
{
name: 'srfuf',
},
{
name: 'srfdeid',
},
{
name: 'srfsourcekey',
},
{
name: 'accountname',
prop: 'accountname',
dataType: 'TEXT',
},
{
name: 'telephone1',
prop: 'telephone1',
dataType: 'TEXT',
},
{
name: 'fax',
prop: 'fax',
dataType: 'TEXT',
},
{
name: 'websiteurl',
prop: 'websiteurl',
dataType: 'TEXT',
},
{
name: 'parentaccountname',
prop: 'parentaccountname',
dataType: 'PICKUPTEXT',
},
{
name: 'tickersymbol',
prop: 'tickersymbol',
dataType: 'TEXT',
},
{
name: 'customertypecode',
prop: 'customertypecode',
dataType: 'SSCODELIST',
},
{
name: 'defaultpricelevelname',
prop: 'defaultpricelevelname',
dataType: 'PICKUPTEXT',
},
{
name: 'defaultpricelevelid',
prop: 'defaultpricelevelid',
dataType: 'PICKUP',
},
{
name: 'parentaccountid',
prop: 'parentaccountid',
dataType: 'PICKUP',
},
{
name: 'accountid',
prop: 'accountid',
dataType: 'GUID',
},
{
name: 'account',
prop: 'accountid',
dataType: 'FONTKEY',
},
]
}
}
\ No newline at end of file
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import AccountinfoBase from './accountinfo-form-base.vue';
@Component({
components: {
}
})
export default class Accountinfo extends AccountinfoBase {
}
</script>
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册