szh_zidingyibiaoti
lilu 2 years ago
commit f86db274d6

@ -31,3 +31,10 @@ export function DjyTenantConfigSave(parameter) {
data: parameter data: parameter
}) })
} }
export function getDjyTenantConfig(parameter) {
return axios({
url: '/DjyTenantConfig/get',
method: 'get',
params: parameter
})
}

@ -8,7 +8,7 @@
<a-row :gutter="48"> <a-row :gutter="48">
<a-col :md="6" :sm="24"> <a-col :md="6" :sm="24">
<a-form-item label="字段名称:"> <a-form-item label="字段名称:">
<a-input v-model="queryParam.SearchValue" allow-clear placeholder="请输入字段名称" /> <a-input v-model="queryParam.fieldName" allow-clear placeholder="请输入字段名称" />
</a-form-item> </a-form-item>
</a-col> </a-col>
</a-row> </a-row>
@ -74,7 +74,7 @@
</div> </div>
</template> </template>
<script> <script>
import { DjyTenantConfigPage, DjyTenantConfigSave } from '@/api/modular/main/DjyTenantConfig' import { getDjyTenantConfig, DjyTenantConfigSave } from '@/api/modular/main/DjyTenantConfig'
import addForm from './addForm.vue' import addForm from './addForm.vue'
import editForm from './editForm.vue' import editForm from './editForm.vue'
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
@ -132,7 +132,7 @@ export default {
} }
}) })
this.DisplayLoadData = Rdata this.DisplayLoadData = Rdata
this.init() // this.init()
}, },
FnReset() { FnReset() {
this.queryParam = { currentPage: 1, pageSize: 9999, Type: 'booking_default_value' } this.queryParam = { currentPage: 1, pageSize: 9999, Type: 'booking_default_value' }
@ -170,10 +170,10 @@ export default {
}, },
FnGetData() { FnGetData() {
this.loading = true this.loading = true
DjyTenantConfigPage(this.queryParam).then(res => { getDjyTenantConfig({ type: 'booking_default_value' }).then(res => {
if (res.code == 200) { if (res.code == 200) {
console.log(this.userInfo) console.log(this.userInfo)
this.loadData = JSON.parse(res.data.rows[0].configJson) this.loadData = JSON.parse(res.data.configJson)
this.DisplayLoadData = this.loadData this.DisplayLoadData = this.loadData
} else { } else {
this.loadData = [] this.loadData = []

Loading…
Cancel
Save