Compare commits

..

7 Commits

  1. 2
      .env.development
  2. 1
      .env.production
  3. 4
      package.json
  4. 9
      src/components/Upload/index.vue
  5. 20
      src/main.js
  6. 42
      src/utils/index.js
  7. 14
      src/views/product/productAdd/components/CustomUpload.vue
  8. 3225
      src/views/product/productAdd/newIndex.vue
  9. 21
      src/views/product/productList/index.vue
  10. 6
      vue.config.js

@ -13,7 +13,7 @@ VUE_APP_DOMAIN = uat.xingoil.com/ws
# uat.xingoil.com/ws # uat.xingoil.com/ws
# 开发环境,不会进行加密,会打印出数据1 # 开发环境,不会进行加密,会打印出数据1
VUE_APP_ENV = 'development' VUE_APP_ENV = 'production'
#production #production
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -12,3 +12,4 @@ VUE_APP_UPLOAD_PRIVATE_URL = '/adminapi/oil-dict/imageHandler/uploadProtectedImg
VUE_APP_ENV = 'production' VUE_APP_ENV = 'production'
VUE_APP_DOMAIN = www.xingoil.com/ws VUE_APP_DOMAIN = www.xingoil.com/ws

@ -12,7 +12,9 @@
"test:ci": "npm run lint && npm run test:unit", "test:ci": "npm run lint && npm run test:unit",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml", "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
"analyzer": "cross-env use_analyzer=true npm run dev", "analyzer": "cross-env use_analyzer=true npm run dev",
"new": "plop" "new": "plop",
"dev2": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service serve",
"build:prod2": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service build"
}, },
"husky": { "husky": {
"hooks": { "hooks": {

@ -89,12 +89,13 @@ export default {
} }
}, },
beforeAvatarUpload(file) { beforeAvatarUpload(file) {
const isLt2M = file.size / 1024 < 500 console.log(file)
const isLt2M = file.size / 1024 > 5 * 1024
if (!isLt2M) { if (isLt2M) {
this.$message.error('图片大小不能超过500KB! 请重新上传!') this.$message.error('图片大小不能超过5M! 请重新上传!')
} }
return isLt2M return !isLt2M
} }
} }
} }

@ -1,12 +1,11 @@
import 'babel-polyfill'
import 'babel-polyfill'
import Vue from 'vue' import Vue from 'vue'
import router from './router' import router from './router'
import Cookies from 'js-cookie' import Cookies from 'js-cookie'
import Element from 'element-ui' import Element from 'element-ui'
import { UTable, UTableColumn } from 'umy-ui' import { UTable, UTableColumn } from 'umy-ui'
Vue.use(UTable) Vue.use(UTable)
Vue.use(UTableColumn) Vue.use(UTableColumn)
import App from './App' import App from './App'
import store from './store' import store from './store'
import * as filters from './filters' // 全局过滤器 import * as filters from './filters' // 全局过滤器
@ -24,23 +23,23 @@ import 'normalize.css/normalize.css'
import 'vue2-animate/dist/vue2-animate.min.css' import 'vue2-animate/dist/vue2-animate.min.css'
import './styles/element-variables.scss' import './styles/element-variables.scss'
import 'element-ui/lib/theme-chalk/display.css' import 'element-ui/lib/theme-chalk/display.css'
import 'wowjs/css/libs/animate.css' import 'wowjs/css/libs/animate.css'
import '@/styles/index.scss' import '@/styles/index.scss'
import './icons' // icon import './icons' // icon
import './permission' // permission control import './permission' // permission control
import { getToken, setToken, removeToken } from '@/utils/auth.js' import { getToken, setToken, removeToken } from '@/utils/auth.js'
import pagesHeader from '@/components/pagesHeader'; import pagesHeader from '@/components/pagesHeader'
import SlideVerify from 'vue-monoplasty-slide-verify' import SlideVerify from 'vue-monoplasty-slide-verify'
import '@/theme/index.scss'; import '@/theme/index.scss'
Vue.use(SlideVerify) Vue.use(SlideVerify)
Vue.use(permission) Vue.use(permission)
Vue.use(dragDialog) Vue.use(dragDialog)
Vue.use(dragDrawer) Vue.use(dragDrawer)
Vue.use(GlobalComponents) Vue.use(GlobalComponents)
Vue.component('pagesHeader', pagesHeader); Vue.component('pagesHeader', pagesHeader)
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {
// 切换环境时执行代码 // 切换环境时执行代码
@ -57,6 +56,7 @@ Object.keys(filters).forEach(key => {
Vue.config.productionTip = false Vue.config.productionTip = false
Vue.prototype.$utils = utils Vue.prototype.$utils = utils
Vue.prototype.$bus = new Vue()
new Vue({ new Vue({
el: '#app', el: '#app',

@ -212,7 +212,15 @@ export function param2Obj(url) {
if (!search) { if (!search) {
return {} return {}
} }
return JSON.parse('{"' + decodeURIComponent(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"').replace(/\+/g, ' ') + '"}') return JSON.parse(
'{"' +
decodeURIComponent(search)
.replace(/"/g, '\\"')
.replace(/&/g, '","')
.replace(/=/g, '":"')
.replace(/\+/g, ' ') +
'"}'
)
} }
/** /**
@ -288,7 +296,7 @@ export function getTime(type) {
export function debounce(func, wait, immediate) { export function debounce(func, wait, immediate) {
let timeout, args, context, timestamp, result let timeout, args, context, timestamp, result
const later = function () { const later = function() {
// 据上一次触发时间间隔 // 据上一次触发时间间隔
const last = +new Date() - timestamp const last = +new Date() - timestamp
@ -305,7 +313,7 @@ export function debounce(func, wait, immediate) {
} }
} }
return function (...args) { return function(...args) {
context = this context = this
timestamp = +new Date() timestamp = +new Date()
const callNow = immediate && !timeout const callNow = immediate && !timeout
@ -420,9 +428,9 @@ export function fileAdd(file, resolve, reject) {
const reader = new FileReader() const reader = new FileReader()
const image = new Image() const image = new Image()
reader.readAsDataURL(file) reader.readAsDataURL(file)
reader.onload = function () { reader.onload = function() {
file.src = this.result file.src = this.result
image.onload = function () { image.onload = function() {
const width = image.width const width = image.width
const height = image.height const height = image.height
file.width = width file.width = width
@ -444,7 +452,7 @@ export function startImgCompress(path, obj, resolve, reject) {
// path是指上传的图片,obj是压缩的品质,越低越模糊 // path是指上传的图片,obj是压缩的品质,越低越模糊
var img = new Image() var img = new Image()
img.src = path.src img.src = path.src
img.onload = function () { img.onload = function() {
var that = this // 这里的this 是把img的对象指向改变为that var that = this // 这里的this 是把img的对象指向改变为that
// 默认按比例压缩 // 默认按比例压缩
var w = that.width var w = that.width
@ -501,7 +509,7 @@ export function formatXML(xml, tab) {
var formatted = '' var formatted = ''
var indent = '' var indent = ''
tab = tab || ' ' tab = tab || ' '
xml.split(/>\s*</).forEach(function (node) { xml.split(/>\s*</).forEach(function(node) {
if (node.match(/^\/\w/)) indent = indent.substring(tab.length) if (node.match(/^\/\w/)) indent = indent.substring(tab.length)
formatted += indent + '<' + node + '>\r\n' formatted += indent + '<' + node + '>\r\n'
if (node.match(/^<?\w[^>]*[^\/]$/)) indent += tab if (node.match(/^<?\w[^>]*[^\/]$/)) indent += tab
@ -660,7 +668,7 @@ export const exportDefault = 'export default '
// 类型判断 // 类型判断
export function typeJudgment(object) { export function typeJudgment(object) {
try { try {
let res = {}.__proto__.toString.call(object); let res = {}.__proto__.toString.call(object)
// let type = /(?<= ).+(?=\])/.exec(res); // let type = /(?<= ).+(?=\])/.exec(res);
let type = res.replace(/[\[\]]/g, '').split(' ') let type = res.replace(/[\[\]]/g, '').split(' ')
return type.length ? type[1] : '' return type.length ? type[1] : ''
@ -668,3 +676,21 @@ export function typeJudgment(object) {
return '' return ''
} }
} }
// url取参
export function urlParamsHandle(url) {
const search = url.split('?')[1]
if (!search) {
return {}
}
const result = {}
const searchArr = search.split('&')
searchArr.forEach(v => {
const index = v.indexOf('=')
if (index !== -1) {
const name = v.substring(0, index)
const val = v.substring(index + 1, v.length)
result[name] = val
}
})
return result
}

@ -5,7 +5,7 @@
list-type="picture-card"> list-type="picture-card">
<i slot="default" class="el-icon-plus"></i> <i slot="default" class="el-icon-plus"></i>
<div slot="file" slot-scope="{file}"> <div slot="file" slot-scope="{file}">
<img class="el-upload-list__item-thumbnail" :src="file.url" alt=""> <img class="el-upload-list__item-thumbnail" :src="file.url" alt="">
<span class="el-upload-list__item-actions"> <span class="el-upload-list__item-actions">
<span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)"> <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">
<i class="el-icon-zoom-in"></i> <i class="el-icon-zoom-in"></i>
@ -16,9 +16,9 @@
<slot :file="file" name="imgButton"> <slot :file="file" name="imgButton">
</slot> </slot>
</span> </span>
</div> </div>
</el-upload> </el-upload>
<!-- <div style="width: 100%;display: flex;justify-content: center;"> <!-- <div style="width: 100%;display: flex;justify-content: center;">
<slot name="footer"> <slot name="footer">
@ -31,7 +31,7 @@
</div> </div>
</template> </template>
<script> <script>
export default { export default {
props: { props: {
limit: { limit: {
@ -57,7 +57,7 @@ export default {
this.fileList.push(Object.assign(file, { url })); this.fileList.push(Object.assign(file, { url }));
}, },
handleRemove(file) { handleRemove(file) {
this.fileList = this.fileList.filter(item => item.name !== file.name) this.fileList = this.fileList.filter(item => item !== file)
}, },
handlePictureCardPreview(file) { handlePictureCardPreview(file) {
this.dialogImageUrl = file.url; this.dialogImageUrl = file.url;
@ -68,7 +68,7 @@ export default {
} }
} }
} }
</script> </script>
<style scoped lang="scss"> ::v-deep .hiedd .el-upload--picture-card { <style scoped lang="scss"> ::v-deep .hiedd .el-upload--picture-card {
display: none !important; display: none !important;
/* 上传按钮隐藏 */ /* 上传按钮隐藏 */
@ -79,4 +79,4 @@ export default {
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
</style> </style>

File diff suppressed because it is too large Load Diff

@ -32,9 +32,9 @@
<el-option label="平台商品" value="1"> </el-option> <el-option label="平台商品" value="1"> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="油站名称:" label-for="siteName"> <!-- <el-form-item label="油站名称:" label-for="siteName">
<el-input clearable placeholder="请输入油站名称:" v-model="page.params.siteName" class="form_content_width" /> <el-input clearable placeholder="请输入油站名称:" v-model="page.params.siteName" class="form_content_width" />
</el-form-item> </el-form-item> -->
<el-form-item> <el-form-item>
<el-button type="primary" @click="userSearchs">查询</el-button> <el-button type="primary" @click="userSearchs">查询</el-button>
</el-form-item> </el-form-item>
@ -125,13 +125,13 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="油站" min-width="150" align="center"> <!-- <el-table-column label="油站" min-width="150" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
{{ scope.row.siteName || '暂无' }} {{ scope.row.siteName || '暂无' }}
</span> </span>
</template> </template>
</el-table-column> </el-table-column> -->
<el-table-column label="库存" min-width="80"> <el-table-column label="库存" min-width="80">
<template slot-scope="scope"> <template slot-scope="scope">
<!-- <span>{{ scope.row.stockList.length }}</span> <br /> --> <!-- <span>{{ scope.row.stockList.length }}</span> <br /> -->
@ -459,8 +459,17 @@ export default {
}, },
created() { created() {
this.init() this.init()
this.$bus.$on('productRefresh', () => {
console.log('productRefresh')
this.init()
})
},
activated() {
// let { refresh } = this.$utils.urlParamsHandle(location.href)
// if (refresh) {
// this.init()
// }
}, },
activated() {},
methods: { methods: {
auditing(row, auditStatus) { auditing(row, auditStatus) {
this.$prompt('审核', '提示', { this.$prompt('审核', '提示', {
@ -711,7 +720,7 @@ export default {
}, },
// //
edit(row) { edit(row) {
console.log(row) // console.log(row)
this.$router.push({ this.$router.push({
path: '/product/productAdd', path: '/product/productAdd',
query: { query: {

@ -25,12 +25,12 @@ module.exports = {
proxy: { proxy: {
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
// target: `cls`, // target: `cls`,
target: `http://192.168.0.254:38080`, // target: `http://192.168.0.254:38080`,
// target: `http://192.168.0.24:38080`, // target: `http://192.168.110.230:38080`,
// target: `http://192.168.1.83:38080`, // target: `http://192.168.1.83:38080`,
// target: 'http://222.132.26.119:8081', // target: 'http://222.132.26.119:8081',
// target: `https://www.xingoil.com/adminapi`, // target: `https://www.xingoil.com/adminapi`,
// target: 'http://uat.xingoil.com/adminapi', target: 'http://uat.xingoil.com/adminapi',
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: '' ['^' + process.env.VUE_APP_BASE_API]: ''

Loading…
Cancel
Save