Merge branch 'cyl/v3' of http://101.37.147.115:3000/mz666/bocai_supplyChain_uni into cyl/v3
commit
fc12a2c3a4
@ -1,22 +1,12 @@
|
|||||||
import App from './App'
|
import App from './App'
|
||||||
|
import uView from './uni_modules/vk-uview-ui';
|
||||||
|
import Vue from 'vue';
|
||||||
|
|
||||||
// #ifndef VUE3
|
|
||||||
import Vue from 'vue'
|
|
||||||
import './uni.promisify.adaptor'
|
|
||||||
Vue.config.productionTip = false
|
|
||||||
App.mpType = 'app'
|
|
||||||
const app = new Vue({
|
|
||||||
...App
|
|
||||||
})
|
|
||||||
app.$mount()
|
|
||||||
// #endif
|
|
||||||
|
|
||||||
// #ifdef VUE3
|
|
||||||
import { createSSRApp } from 'vue'
|
import { createSSRApp } from 'vue'
|
||||||
export function createApp() {
|
export function createApp() {
|
||||||
const app = createSSRApp(App)
|
const app = createSSRApp(App)
|
||||||
|
app.use(uView)
|
||||||
return {
|
return {
|
||||||
app
|
app
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// #endif
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
11
|
||||||
|
<u-slider v-model="value"></u-slider>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default{
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
value:30
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
@ -1,8 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>首页</div>
|
<div>首页
|
||||||
|
|
||||||
|
<button>111</button>
|
||||||
|
<!-- <empty-panel /> -->
|
||||||
|
<input type="text" placeholder="1111">
|
||||||
|
<div style="margin-bottom: 20px;"></div>
|
||||||
|
<emptyPanel />
|
||||||
|
<div style="margin-bottom: 20px;"></div>
|
||||||
|
<u-button>月落</u-button>
|
||||||
|
<div style="margin-bottom: 20px;"></div>
|
||||||
|
<u-search placeholder="日照香炉生紫烟" v-model="keyword"></u-search>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import emptyPanel from './empty.vue'
|
||||||
|
export default {
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
keyword:''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
'emptyPanel': emptyPanel
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|||||||
Loading…
Reference in New Issue