46 lines
907 B
Vue
46 lines
907 B
Vue
<template>
|
|
<view class="systemForm-box">
|
|
<view class="herader">系统表单</view>
|
|
<!--商品关联系统表单-->
|
|
<view class='wrapper borRadius14' v-if="systemFormValue">
|
|
<systemFrom :value="systemFormValue"></systemFrom>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import systemFrom from '../components/systemFrom/index.vue';
|
|
import {systemFromDetail} from '@/api/api'
|
|
export default {
|
|
components: {
|
|
systemFrom
|
|
},
|
|
data() {
|
|
return {
|
|
systemFormValue: ''
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.getInfo(options.id)
|
|
},
|
|
methods:{
|
|
getInfo(id){
|
|
systemFromDetail(id).then(res=>{
|
|
this.systemFormValue=this.$util.objToArr(JSON.parse(res.data.formValue))
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.systemForm-box{
|
|
.herader{
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
background: #fff;
|
|
text-align: center;
|
|
border: 2rpx solid #d5d5d5;
|
|
}
|
|
}
|
|
</style> |