2024-08-08 11:08:55 +08:00
|
|
|
import Vue from "vue";
|
|
|
|
import store from "./store";
|
|
|
|
import App from "./App";
|
|
|
|
import uView from "uview-ui";
|
2023-11-07 10:24:08 +08:00
|
|
|
|
2024-08-08 11:08:55 +08:00
|
|
|
import empty from "@/components/empty/empty.vue";
|
|
|
|
import uniTable from "@/components/uni-table/uni-table/uni-table.vue";
|
|
|
|
import uniTbody from "@/components/uni-table/uni-tbody/uni-tbody.vue";
|
|
|
|
import uniThead from "@/components/uni-table/uni-thead/uni-thead.vue";
|
|
|
|
import uniTr from "@/components/uni-table/uni-tr/uni-tr.vue";
|
|
|
|
import uniTh from "@/components/uni-table/uni-th/uni-th.vue";
|
|
|
|
import uniTd from "@/components/uni-table/uni-td/uni-td.vue";
|
|
|
|
import line from '@/components/line/index.vue';
|
2023-11-07 10:24:08 +08:00
|
|
|
|
2024-08-08 11:08:55 +08:00
|
|
|
Vue.component("empty", empty);
|
|
|
|
Vue.component("uni-table", uniTable);
|
|
|
|
Vue.component("uni-tbody", uniTbody);
|
|
|
|
Vue.component("uni-thead", uniThead);
|
|
|
|
Vue.component("uni-tr", uniTr);
|
|
|
|
Vue.component("uni-th", uniTh);
|
|
|
|
Vue.component("uni-td", uniTd);
|
|
|
|
Vue.component("AppLine", line);
|
|
|
|
Vue.use(uView);
|
|
|
|
Vue.config.productionTip = false;
|
2023-11-07 10:24:08 +08:00
|
|
|
// Vue.prototype.$filePath = 'https://qgqy.qhdsafety.com/file/'
|
2024-08-08 11:08:55 +08:00
|
|
|
Vue.prototype.$filePath = "https://skqhdg.porthebei.com:9004/file/";
|
2023-11-07 10:24:08 +08:00
|
|
|
|
2024-08-08 11:08:55 +08:00
|
|
|
App.mpType = "app";
|
2023-11-07 10:24:08 +08:00
|
|
|
const app = new Vue({
|
2024-08-08 11:08:55 +08:00
|
|
|
...App,
|
|
|
|
store,
|
|
|
|
});
|
|
|
|
app.$mount();
|