4 Star 1 Fork 1

重庆团液 / tuanye-crm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 606 Bytes
一键复制 编辑 原始数据 按行查看 历史
肖有鑫 提交于 2022-04-08 11:44 . 仓库转移
import App from './App'
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
import store from './store'
// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
//对数字进行四舍五入操作
Vue.prototype.$decimalsSwitch = (num) => {
if(!num){
return 0
}else {
return Math.round((Number(num) + Number.EPSILON) * 100) / 100
}
}
App.mpType = 'app'
const app = new Vue({
...App,
store
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif
JavaScript
1
https://gitee.com/cqtuanye/salesman-side-applet.git
git@gitee.com:cqtuanye/salesman-side-applet.git
cqtuanye
salesman-side-applet
tuanye-crm
master

搜索帮助