Commit bfded56f by zhangmeng

w 提交

parent 2300a307
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" href=./static/img/favicon.ico><title>GIC后台</title><link rel=stylesheet type=text/css href=static/css/iconfont.css><link rel=stylesheet type=text/css href=static/css/common.css><link href=/integral-mall/static/css/app.466679c4da61d4cc0caf4d49b57105f8.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/integral-mall/static/js/manifest.003beacb9c9ae622c7f2.js></script><script type=text/javascript src=/integral-mall/static/js/vendor.40d6352f8ed3f878b1d9.js></script><script type=text/javascript src=/integral-mall/static/js/app.a647f0d1b744eb656716.js></script></body></html>
\ No newline at end of file
<!DOCTYPE html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" href=./static/img/favicon.ico><title>GIC后台</title><link rel=stylesheet type=text/css href=static/css/iconfont.css><link rel=stylesheet type=text/css href=static/css/common.css><link href=/integral-mall/static/css/app.e951e0db63f550331163a90fb7e092b7.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/integral-mall/static/js/manifest.003beacb9c9ae622c7f2.js></script><script type=text/javascript src=/integral-mall/static/js/vendor.468b1a0927c2f59e9881.js></script><script type=text/javascript src=/integral-mall/static/js/app.4442a5d19abf3f60b806.js></script></body></html>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -11,10 +11,15 @@
"publish": "publish.bat"
},
"dependencies": {
"@gic-test/vue-gic-footer": "^1.0.9",
"@gic-test/vue-gic-header": "^1.3.31",
"@gic-test/vue-gic-img-preview": "^1.0.13",
"@gic-test/vue-gic-store-linkage": "^1.0.7",
"@gic-test/vue-gic-upload-image": "^1.0.35",
"@riophae/vue-treeselect": "^0.0.36",
"axios": "^0.18.0",
"element-ui": "^2.4.1",
"packele": "^1.0.5",
"packele": "^1.0.8",
"scriptjs": "^2.5.8",
"vue": "^2.5.2",
"vue-axios": "^2.1.1",
......
......@@ -2,7 +2,7 @@ import Vue from 'vue'
import App from './App'
import router from './router'
import store from './store'
import {axios} from './service/api/index'
import { axios } from './service/api/index'
import ElementUI from 'element-ui'
import vueGicHeader from '@gic-test/vue-gic-header'
import vueGicFooter from '@gic-test/vue-gic-footer'
......@@ -10,12 +10,9 @@ import vueGicImgPreview from '@gic-test/vue-gic-img-preview'
import vueGicStoreLinkage from '@gic-test/vue-gic-store-linkage/src/lib'
import vueGicAsideMenu from '@/components/aside-menu'
import vueGicUploadImage from '@gic-test/vue-gic-upload-image/src/lib'
import dmDelete from './components/dm-delete'
import install from 'packele'
//删除组件 这个组件常用,放到这不用在组件里引入
Vue.component(dmDelete.name,dmDelete)
import packele from 'packele'
Vue.config.productionTip = false
Vue.use(install)
Vue.use(packele)
Vue.use(ElementUI)
Vue.use(vueGicHeader)
Vue.use(vueGicFooter)
......@@ -27,17 +24,16 @@ Vue.prototype.axios = axios;
Vue.prototype.axios.withCredentials = true
window.$bus = new Vue();
let flag = false
Vue.prototype.$tips = function ({message = '提示',type = 'success'}) {
if (flag) { return }
else {this.$message({message,type})}
flag = true;
setTimeout(_ => {flag = false},1000)
}
/* eslint-disable no-new */
Vue.prototype.$tips = function({ message = '提示', type = 'success' }) {
if (flag) { return } else { this.$message({ message, type }) }
flag = true;
setTimeout(_ => { flag = false }, 1000)
}
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
store,
components: { App },
template: '<App/>'
})
el: '#app',
router,
store,
components: { App },
template: '<App/>'
})
\ No newline at end of file
<template>
<el-form class="dm-wrap" :model="form" ref="form" :rules="rules" label-width="120px">
<el-form-item prop="proName" label="礼品标题">
<span slot="label">
测试Label
<el-tooltip class="item" effect="dark" content="Top Left 提示文字" placement="top-start">
<i class="el-icon-warning"></i>
</el-tooltip>
</span>
<dm-input controls-position="right" placeholder="请输入礼品标题" :disabled="isInfo" v-model="form.proName" class="w300" :maxlength="20"></dm-input>
</el-form-item>
<el-form-item label="礼品主图" class="is-required">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment