12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="wrap">
- <uni-list>
- <uni-list-item title="你好" note="你是谁"></uni-list-item>
- </uni-list>
- </view>
- </template>
- <script >
- export default {
- data() {
- return {
- user:1,
- users:[]
- }
- },
- created() {
- this.init();
- },
- methods: {
- init(){
-
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .handle-wrap{
- display: flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- button{
- margin:20upx 20upx 0;
- &[type="success"]{
- background-color:#09BB07;
- color:#fff ;
- }
- }
- }
- </style>
|