37 lines
563 B
Vue
37 lines
563 B
Vue
<template>
|
|
<view class="app">
|
|
<u-parse :html="content"></u-parse>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getContent
|
|
} from '@/api/pagesC/contractsigningprotocol/index.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
orgNo: null,
|
|
content: null,
|
|
};
|
|
},
|
|
methods: {
|
|
info() {
|
|
getContent(this.orgNo, '1').then(res => {
|
|
this.content = res.data.content
|
|
})
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
console.log(options)
|
|
this.orgNo = options.orgNo
|
|
this.info();
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app {
|
|
margin-top: 100rpx;
|
|
}
|
|
</style> |