| 12345678910111213141516171819202122232425 |
- <template>
- <view class="add_wrap">
- <view class="container">
- 新增
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- clueId: ''
- }
- },
- onLoad(options) {
- console.log(options);
-
- this.clueId = options.clueId
- }
- }
- </script>
- <style lang="scss">
- @import "./styles/index.scss";
- </style>
|