Commit 565bd136 authored by JingChao's avatar JingChao

动态配置

parent fd2ae777
......@@ -159,7 +159,7 @@ export default {
content: '*';
color: #D24E4E;
height: 8px;
padding-top: 4px;
padding-top: 2px;
margin-left: 2px;
}
}
......
......@@ -75,9 +75,9 @@ export default {
},
mounted () {
let vm = this
setTimeout(()=>{
setTimeout(() => {
this.items[vm.current].$el.classList.add('activated')
},100)
}, 100)
this.scrollToActiveTab(vm.current, this.items[vm.current].$el.clientWidth)
},
methods: {
......
......@@ -45,9 +45,9 @@
<script>
import layoutData from '../common/layout'
import ButtonTab from "vux/src/components/button-tab/button-tab";
export default {
components: {ButtonTab},
data() {
return {
layoutData: [],
......
......@@ -4,7 +4,7 @@
*/
<template>
<h-view>
<h-view class="form">
<h-header>
<div slot="left" class="h-header-btn" @click="$hlsExit()">
<i class="ion-ios-arrow-back"/>
......@@ -13,158 +13,173 @@
<div slot="right" class="h-header-btn">右边</div>
</h-header>
<h-content>
<section v-for="(com, index) in component" :key="index">
<section v-if="com.name=='tab'">
<s-tab v-if="com.item" :class="com.class">
<tab-item v-for="(tab,key) in com.item" :key="key">{{ tab.name }}</tab-item>
</s-tab>
</section>
<section v-else-if="com.name=='form'">
<list-item v-if="com.fileds" :class="com.class">
<item v-for="(filed, index) in com.fileds" :key="index" :class="filed.class">
<div slot="name" :class="{'required':filed.request}">{{ filed.description }}</div>
<div slot="content">
<input
v-if="filed.type=='input'" v-model="data[com.dataName][filed.name]" :request="filed.request"
:readonly="filed.readonly"
:placeholder="filed.placeholder">
<input
v-if="filed.type=='select'" v-model="data[com.dataName][filed.name+'_n']" readonly="true"
@click="showSelect(filed.selectList,filed.name,com.dataName)">
<input
v-if="filed.type=='time'" v-model="data[com.dataName][filed.name]" readonly="true"
@click="showTime(com.dataName,filed)">
</div>
</item>
</list-item>
</section>
<section v-for="(com, index) in layoutData" :key="index">
<s-tab
v-if="com.configType==='TAB' && com.layoutFiledList.length"
:default-active="tabIndex" :class="com.cssClass" @tabClick="layoutTabClick"
@click.native="tabClick(com)">
<tab-item v-for="(tab,key) in com.layoutFiledList" :key="key"><section v-html="tab.tabContent || tab.filedName"/></tab-item>
</s-tab>
<list-item v-if="com.configType==='FORM' && com.layoutFiledList.length" v-show="tabFromHide(com)" :class="com.cssClass">
<item v-show="showFormTitle" class="form-title" @click.native="hideFormClick(index)">
<div slot="name">{{ com.configName }}</div>
<img
slot="right-icon" :class="{'hide-down-icon':!com.hideForm,'hide-up-icon':com.hideForm}"
class="right-icon " src="@/assets/image/right-arrow@2x.png">
</item>
<item
v-for="(filed, index) in com.layoutFiledList"
v-show="!com.hideForm" :key="index" :class="filed.cssClass" :has-border="filed.hasBorder"
:hasContent="filed.showContent" :proportion="proportionArray(filed.proportion)" :showName="filed.showName"
:showArrow="filed.showArrow"
:item-height="filed.filedHeight">
<img v-if="filed.leftIcon" slot="left-icon" :src="filed.leftIcon" class="left-icon">
<div slot="name" :class="{'required':filed.inputMode=='required'}">{{ filed.filedName }}</div>
<input
v-if="filed.filedType==='INPUT'" slot="content"
:readonly="filed.inputMode==='readOnly'"
:placeholder="filed.placeholder" :value="filed.defaultValue" :type="filed.inputType" :name="filed.filedName">
<input
v-else-if="filed.filedType==='SELECT'"
slot="content" :name="filed.filedName"
readonly @click="showSelect(com,filed)">
<input
v-else-if="filed.filedType=='TIME'"
slot="content" :name="filed.filedName"
readonly @click="showTime(com,filed)">
<h-switch v-else-if="filed.filedType==='SWITCH'" slot="content"/>
<div v-else slot="content" v-html="filed.defaultValue"/>
<img v-if="filed.rightIcon" slot="right-icon" :src="filed.rightIcon" class="right-icon">
</item>
</list-item>
</section>
</h-content>
<section v-for="(com, index) in layoutData" :key="index">
<bottom-tab v-if="com.configType==='BOTTOM-BUTTON' && com.layoutFiledList.length" :show-divider="true">
<tab-button v-for="(btn, index) in com.layoutFiledList" :key="index"><section v-html="btn.btnContent || btn.filedName"/></tab-button>
</bottom-tab>
</section>
</h-view>
</template>
<script>
import layoutData from './layout.json'
import ButtonTab from 'vux/src/components/button-tab/button-tab'
export default {
name: 'Form',
components: { ButtonTab },
data () {
return {
component: [
{
name: 'tab',
class: '',
item: [
{
name: 'APP',
}, {
name: 'WeiXin',
}, {
name: 'Vue',
},
],
},
{
name: 'form',
readonly: false,
class: '',
dataName: 'person',
fileds: [
{
class: '',
type: 'input',
description: '手机号',
name: 'phone',
defaultValue: '',
request: false,
readonly: false,
placeholder: '请输入手机号',
}, {
class: '',
type: 'input',
description: '姓名',
name: 'name',
defaultValue: 'li',
request: true,
readonly: false,
}, {
class: '',
type: 'select',
description: '性别',
name: 'sex',
defaultValue: 'N',
defaultValueN: '男',
request: false,
readonly: false,
selectList: [{
code: 'man',
code_name: '男',
}, {
code: 'woman',
code_name: '女',
}],
}, {
class: '',
type: 'time',
description: '出生时间',
name: 'brithDay',
defaultValue: '2003-05-26',
request: true,
format: 'yyyy-mm-dd',
},
],
},
],
tabIndex: 1,
showFormTitle: true,
layoutData: null,
data: {},
activeTab: null,
activeTabFiled: null,
}
},
created () {
let vm = this
vm.component.forEach((com, index) => {
if (com.name === 'form') {
let form = com
let temp = {
readonly: form['readonly'],
if (layoutData.rows && layoutData.rows[0].layoutConfigList.length) {
vm.layoutData = layoutData.rows[0].layoutConfigList
vm.layoutData.forEach((com, index) => {
if (com.configType === 'FORM') {
let form = com
let temp = {}
if (form.layoutFiledList.length) {
let filed = form.layoutFiledList
filed.forEach((filed, index) => {
temp[filed.filedCode] = filed.defaultValue
if (filed.type === 'select') {
temp[filed.filedCode + '_n'] = filed.defaultValueN
}
})
vm.$set(this.data, [form.configCode], temp)
}
} else if (com.configType === 'TAB') {
vm.activeTab = com.configCode
vm.activeTabFiled = com.layoutFiledList.length ? com.layoutFiledList[vm.tabIndex].filedCode : ''
}
if (form.fileds.length) {
let fileds = form.fileds
fileds.forEach((filed, index) => {
temp[filed.name] = filed.defaultValue
if (filed.type === 'select') {
temp[filed.name + '_n'] = filed.defaultValueN
}
})
vm.$set(this.data, [form.dataName], temp)
}
}
})
})
}
},
methods: {
showSelect (list, code, dataName) {
proportionArray (proportion) {
return proportion.split(',')
},
layoutTabClick (index) {
let vm = this
vm.hlsPopup.selectList({
list: list,
code: code,
object: {},
returnItem (index, obj) {
vm.data[dataName][code] = list[index].code
vm.data[dataName][code + '_n'] = list[index].code_name
},
})
vm.tabIndex = index
},
showTime (dataName, filed) {
tabClick (com) {
let vm = this
vm.hlsPopup.showTime({
format: filed.format,
callback (value) {
vm.data[dataName][filed.name] = value
},
})
vm.activeTab = com.configCode
vm.activeTabFiled = com.layoutFiledList.length ? com.layoutFiledList[vm.tabIndex].filedCode : ''
},
hideFormClick (index) {
let vm = this
vm.layoutData[index]['hideForm'] = !vm.layoutData[index]['hideForm']
},
tabFromHide (com) {
let vm = this
if (com.tabConfigCode && com.tabFiledCode) {
if (com.tabConfigCode === vm.activeTab && com.tabFiledCode === vm.activeTabFiled) {
return true
}
} return false
},
showSelect (com, filed) {
},
showTime (com, filed) {
},
},
}
</script>
<style scoped lang="less">
<style lang="less">
.form {
.hls-switch-tab {
.tab-content {
.h-tab-item {
.h-item{
img{
width: 20px;
}
}
}
}
}
.content {
.form-title {
.contents {
.add-name {
font-weight: 500;
}
}
}
.hls-item {
.contents {
.add-content {
.right-icon {
height: 12px;
}
.hide-up-icon {
transform: rotate(90deg);
}
.hide-down-icon {
transform: rotate(-90deg);
}
}
}
}
}
}
</style>
......@@ -17,7 +17,7 @@
</div>
<div v-show="item.isFromeMe" class="message-wrap">
<img v-show="userImg" :src="userImg" class="head-pic-right">
<img v-show="!userImg" src="../assets/image/robot/user7.png" class="head-pic-right">
<img v-show="!userImg" src="@/assets/image/robot/user7.png" class="head-pic-right">
<span class="triangle-right"/>
<p class="message-right" v-text="item.content"/>
</div>
......
{
"rows": [
{
"_token": "5c7ed163aabdb97edbb4023503ad33f8",
"objectVersionNumber": null,
"layoutId": "1",
"layoutCode": "CON_QURERY",
"layoutName": "合同查询",
"layoutCategory": "CONTRACT",
"enableFlag": "Y",
"layoutConfigList": [
{
"_token": "3ae2e02aece2b0edeb990b0e8b4ae9ac",
"objectVersionNumber": null,
"configId": "123",
"layoutId": "1",
"configCode": "WFL_TAB",
"configName": "工作流tab",
"configType": "TAB",
"configOrder": "10",
"tabFlag": "N",
"tabConfigId": null,
"tabFiledId": null,
"cssClass": null,
"enableFlag": "Y",
"hideForm": false,
"tabConfigCode": null,
"tabFiledCode": null,
"tabFiledName": null,
"layoutFiledList": [
{
"_token": "edc13ba2c737506fe18aaa8722c4525f",
"objectVersionNumber": 2,
"filedId": "1234",
"layoutId": "1",
"configId": "123",
"filedCode": "TODO",
"filedName": "代办",
"defaultValue": null,
"filedType": "OTHES",
"inputType": null,
"placeholder": null,
"filedOrder": "1",
"inputMode": "readOnly",
"leftIcon": null,
"rightIcon": null,
"format": null,
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": "<img src=\"http://hlsapp.hand-china.com/file/hel_dev/function/project@2x.png\"/>",
"btnContent": null,
"cssClass": null
},
{
"_token": "4b56b36ba77f9dccbfcd63682d7c9cb8",
"objectVersionNumber": 1,
"filedId": "1235",
"layoutId": "1",
"configId": "123",
"filedCode": "DONING",
"filedName": "已办",
"defaultValue": null,
"filedType": "OTHES",
"inputType": null,
"placeholder": null,
"filedOrder": "2",
"inputMode": "readOnly",
"leftIcon": null,
"rightIcon": null,
"format": null,
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "e7a625a36c66a8488527baa6245fba6e",
"objectVersionNumber": 1,
"filedId": "0e1c1faa32af474ab8dc44635c0e9c20",
"layoutId": "1",
"configId": "123",
"filedCode": "MY",
"filedName": "我的",
"defaultValue": null,
"filedType": "OTHES",
"inputType": "text",
"placeholder": null,
"filedOrder": "3",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
}
]
},
{
"_token": "77584740da030e0bacb494c94c9a2ff6",
"objectVersionNumber": null,
"configId": "124",
"layoutId": "1",
"configCode": "contract",
"configName": "合同信息",
"configType": "FORM",
"configOrder": "20",
"tabFlag": "Y",
"tabConfigId": "123",
"tabFiledId": "1235",
"cssClass": null,
"enableFlag": "Y",
"hideForm": false,
"tabConfigCode": "WFL_TAB",
"tabFiledCode": "DONING",
"tabFiledName": "已办",
"layoutFiledList": [
{
"_token": "79cd351deb4d2afb9cc3f235a62bc217",
"objectVersionNumber": 1,
"filedId": "5e27dff547dd4eec9fb78b88b6af63ab",
"layoutId": "1",
"configId": "124",
"filedCode": "contract_number",
"filedName": "合同名称",
"defaultValue": null,
"filedType": "INPUT",
"inputType": "text",
"placeholder": "合同名称",
"filedOrder": "1",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "33d0890c473d1e4df77834ed334172ee",
"objectVersionNumber": 1,
"filedId": "ff061ecb37664c6e976df4255c449b2c",
"layoutId": "1",
"configId": "124",
"filedCode": "contract_name",
"filedName": "合同名称",
"defaultValue": "小兵的合同",
"filedType": "INPUT",
"inputType": "text",
"placeholder": null,
"filedOrder": "2",
"inputMode": "other",
"leftIcon": "http://hlsapp.hand-china.com/file/hel_dev/function/partner@2x.png",
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": true,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "d2e41d2f3fff154c3d05f818e7edf90f",
"objectVersionNumber": 2,
"filedId": "5e6b05bf5d9c4f3a8c78e60c1ce58add",
"layoutId": "1",
"configId": "124",
"filedCode": "position",
"filedName": "岗位",
"defaultValue": null,
"filedType": "SELECT",
"inputType": "text",
"placeholder": "请选择岗位",
"filedOrder": "3",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": true,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "6ff4c37a505994033bf5f076dadb1b05",
"objectVersionNumber": 1,
"filedId": "fde9d1d26d5b4823a894f20ff3ffab7d",
"layoutId": "1",
"configId": "124",
"filedCode": "order_date",
"filedName": "订单时间",
"defaultValue": "2019-07-11",
"filedType": "TIME",
"inputType": "text",
"placeholder": "请输入时间",
"filedOrder": "4",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": true,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "e75d4471480a50a2899626610f449ea2",
"objectVersionNumber": 1,
"filedId": "199658a5b961490a90238a9e9f95fe8d",
"layoutId": "1",
"configId": "124",
"filedCode": "note",
"filedName": "备注",
"defaultValue": "请在经销商指导下操作",
"filedType": "OTHES",
"inputType": "text",
"placeholder": null,
"filedOrder": "5",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": false,
"showContent": true,
"showArrow": false,
"hasBorder": false,
"filedHeight": 30,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": "tip-note"
},
{
"_token": "b33a2e4a25c47f60475220ad016ed9ab",
"objectVersionNumber": 1,
"filedId": "d4664c3a8ef34e1fb47acb325bb9bfb4",
"layoutId": "1",
"configId": "124",
"filedCode": "enable_flag",
"filedName": "启用标志",
"defaultValue": "true",
"filedType": "SWITCH",
"inputType": "text",
"placeholder": null,
"filedOrder": "5",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": true,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
}
]
},
{
"_token": "8643ea256e65a92b00b4911453a4794d",
"objectVersionNumber": null,
"configId": "125",
"layoutId": "1",
"configCode": "project",
"configName": "项目信息",
"configType": "FORM",
"configOrder": "30",
"tabFlag": "Y",
"tabConfigId": "123",
"tabFiledId": "1234",
"cssClass": null,
"enableFlag": "Y",
"hideForm": false,
"tabConfigCode": "WFL_TAB",
"tabFiledCode": "TODO",
"tabFiledName": "代办",
"layoutFiledList": [
{
"_token": "3cd4d94aa1ebafc8d6e00c774c14aa21",
"objectVersionNumber": 1,
"filedId": "e04940d051ca4a06b20804bb3bb3b434",
"layoutId": "1",
"configId": "125",
"filedCode": "project_name",
"filedName": "项目名称",
"defaultValue": "常州XX公司500万项目",
"filedType": "INPUT",
"inputType": "text",
"placeholder": null,
"filedOrder": "10",
"inputMode": "readOnly",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "ebfb340021c74d7c0a9453fc90509425",
"objectVersionNumber": 1,
"filedId": "ff400ff5c6294de39d5db2b59793a79f",
"layoutId": "1",
"configId": "125",
"filedCode": "bp_name",
"filedName": "客户名称",
"defaultValue": null,
"filedType": "INPUT",
"inputType": "text",
"placeholder": "请输入客户名称",
"filedOrder": "20",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "3527ec9b1e2bbe7f73ebda66718081bc",
"objectVersionNumber": 1,
"filedId": "e9467eab249e4c119771c4610dfb9e04",
"layoutId": "1",
"configId": "125",
"filedCode": "phone",
"filedName": "联系电话",
"defaultValue": null,
"filedType": "INPUT",
"inputType": "tel",
"placeholder": "请输入电话",
"filedOrder": "30",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "1422183cb05c0da250151354164bb864",
"objectVersionNumber": 1,
"filedId": "91ad3a6b85a0486d8d8c25dee2076b63",
"layoutId": "1",
"configId": "125",
"filedCode": "email",
"filedName": "邮箱",
"defaultValue": null,
"filedType": "INPUT",
"inputType": "email",
"placeholder": "请输入邮箱",
"filedOrder": "40",
"inputMode": "required",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "73dfcfc81146c9adb79169545734381e",
"objectVersionNumber": 2,
"filedId": "6f58ed5f1d7e48b6b25a788683dfde3b",
"layoutId": "1",
"configId": "125",
"filedCode": "account",
"filedName": "账户号",
"defaultValue": null,
"filedType": "INPUT",
"inputType": "number",
"placeholder": "请输入账户号",
"filedOrder": "50",
"inputMode": "required",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "a7d14cf6a1003168b0f290c763137dab",
"objectVersionNumber": 2,
"filedId": "8c675685769b40b48f2a594af7cecb25",
"layoutId": "1",
"configId": "125",
"filedCode": "password",
"filedName": "账户密码",
"defaultValue": "123456",
"filedType": "INPUT",
"inputType": "password",
"placeholder": "请输入账户密码",
"filedOrder": "60",
"inputMode": "required",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
}
]
},
{
"_token": "8144efaaca1d9636d95a89dcb1fd4252",
"objectVersionNumber": null,
"configId": "f71d2a8c68e44f15a38bc3b8f8d9a0a5",
"layoutId": "1",
"configCode": "bp",
"configName": "客户信息",
"configType": "FORM",
"configOrder": "35",
"tabFlag": "Y",
"tabConfigId": "123",
"tabFiledId": "1235",
"cssClass": null,
"enableFlag": "Y",
"hideForm": false,
"tabConfigCode": "WFL_TAB",
"tabFiledCode": "DONING",
"tabFiledName": "已办",
"layoutFiledList": [
{
"_token": "57b5058c3e3e6c683c6587a533ff448e",
"objectVersionNumber": 1,
"filedId": "ab5988de79ff4110bd6ffb53ad2bbbf6",
"layoutId": "1",
"configId": "f71d2a8c68e44f15a38bc3b8f8d9a0a5",
"filedCode": "bp_name",
"filedName": "客户名称",
"defaultValue": null,
"filedType": "INPUT",
"inputType": "text",
"placeholder": "请输入客户名称",
"filedOrder": "10",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
}
]
},
{
"_token": "db3ad35d036691c5b0caa2e273d31f25",
"objectVersionNumber": null,
"configId": "5c95cde581a64f42a86900712c53502a",
"layoutId": "1",
"configCode": "SAVE_BUTTON",
"configName": "底部按钮",
"configType": "BOTTOM-BUTTON",
"configOrder": "40",
"tabFlag": "N",
"tabConfigId": null,
"tabFiledId": null,
"cssClass": "btn-button",
"enableFlag": "Y",
"hideForm": false,
"tabConfigCode": null,
"tabFiledCode": null,
"tabFiledName": null,
"layoutFiledList": [
{
"_token": "7e61d576cfa5d12ee68bdf7ec36d99b2",
"objectVersionNumber": 1,
"filedId": "3d7ba60e16594e1fb170790d166c8bb1",
"layoutId": "1",
"configId": "5c95cde581a64f42a86900712c53502a",
"filedCode": "save",
"filedName": "保存",
"defaultValue": null,
"filedType": "OTHES",
"inputType": "text",
"placeholder": null,
"filedOrder": "1",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
},
{
"_token": "974a18dedc6a0960a4ad0f6be96dacea",
"objectVersionNumber": 1,
"filedId": "f64a1e6b0c834f5fa0db15e999e84eb0",
"layoutId": "1",
"configId": "5c95cde581a64f42a86900712c53502a",
"filedCode": "submit",
"filedName": "提交",
"defaultValue": null,
"filedType": "OTHES",
"inputType": "text",
"placeholder": null,
"filedOrder": "2",
"inputMode": "other",
"leftIcon": null,
"rightIcon": null,
"format": "N",
"proportion": "1,2",
"showName": true,
"showContent": true,
"showArrow": false,
"hasBorder": true,
"filedHeight": 45,
"enableFlag": "Y",
"tabContent": null,
"btnContent": null,
"cssClass": null
}
]
}
]
}
],
"success": true,
"total": 1
}
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