12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <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>
|