提交 3ba9c2c3 编写于 作者: zhongyao.qiao's avatar zhongyao.qiao

feat 库存校验

上级 6d768caa
此差异已折叠。
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"private": true, "private": true,
"license": "GPL", "license": "GPL",
"scripts": { "scripts": {
"dev": "cross-env BUILD_ENV=development node build/dev-server.js", "dev": "cross-env BUILD_ENV=test node build/dev-server.js",
"local": "cross-env BUILD_ENV=development node build/dev-server.js", "local": "cross-env BUILD_ENV=development node build/dev-server.js",
"build": "node build/build.js", "build": "node build/build.js",
"build:dev": "cross-env BUILD_ENV=development node build/build.js", "build:dev": "cross-env BUILD_ENV=development node build/build.js",
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
"iscroll": "^5.2.0", "iscroll": "^5.2.0",
"js-cookie": "^2.2.0", "js-cookie": "^2.2.0",
"js-md5": "^0.7.3", "js-md5": "^0.7.3",
"jsencrypt": "^3.2.1", "jsencrypt": "^3.3.1",
"jspdf": "^1.5.3", "jspdf": "^1.5.3",
"node-sass": "^4.9.2", "node-sass": "^4.9.2",
"pdfh5": "^1.3.9", "pdfh5": "^1.3.9",
......
...@@ -3,7 +3,7 @@ import Vue from 'vue' ...@@ -3,7 +3,7 @@ import Vue from 'vue'
import VueRouter from 'vue-router' import VueRouter from 'vue-router'
import routes from './router/router' import routes from './router/router'
import store from './store/' import store from './store/'
const mixins = require('@/utils/mixins'); import mixins from '@/utils/mixins';
import FastClick from 'fastclick' import FastClick from 'fastclick'
import vueFilters from '@/utils/filter' import vueFilters from '@/utils/filter'
import draggable from 'vuedraggable' import draggable from 'vuedraggable'
...@@ -30,12 +30,12 @@ Vue.use(VueVideoPlayer); ...@@ -30,12 +30,12 @@ Vue.use(VueVideoPlayer);
Vue.use(ElementUI) Vue.use(ElementUI)
// 注册所有公用过滤器 // 注册所有公用过滤器
for(let key in vueFilters) { for (let key in vueFilters) {
Vue.filter(key, vueFilters[key]) Vue.filter(key, vueFilters[key])
} }
if ('addEventListener' in document) { if ('addEventListener' in document) {
document.addEventListener('DOMContentLoaded', function() { document.addEventListener('DOMContentLoaded', function () {
FastClick.attach(document.body); FastClick.attach(document.body);
}, false); }, false);
} }
...@@ -45,7 +45,7 @@ const router = new VueRouter({ ...@@ -45,7 +45,7 @@ const router = new VueRouter({
routes, routes,
mode: 'hash', mode: 'hash',
strict: process.env.NODE_ENV !== 'production', strict: process.env.NODE_ENV !== 'production',
scrollBehavior (to, from, savedPosition) { scrollBehavior(to, from, savedPosition) {
if (savedPosition) { if (savedPosition) {
return savedPosition return savedPosition
} else { } else {
...@@ -59,14 +59,14 @@ const router = new VueRouter({ ...@@ -59,14 +59,14 @@ const router = new VueRouter({
import utils from '@/utils/followup/followupUtils'; import utils from '@/utils/followup/followupUtils';
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
if(to.meta.checkAuth){ if (to.meta.checkAuth) {
utils.checkAuthFunc().then(res=>{ utils.checkAuthFunc().then(res => {
if(res==3){ if (res == 3) {
if(to.meta.doctorAuth){ if (to.meta.doctorAuth) {
utils.getDoctorAuth(router).then(resAuth=>{ utils.getDoctorAuth(router).then(resAuth => {
if(resAuth==3){ if (resAuth == 3) {
next() next()
}else{ } else {
next(false) next(false)
return return
} }
...@@ -74,7 +74,7 @@ router.beforeEach((to, from, next) => { ...@@ -74,7 +74,7 @@ router.beforeEach((to, from, next) => {
return return
} }
next(); next();
}else{ } else {
next({ path: "/home" }); next({ path: "/home" });
return return
} }
......
import fetch from '@/utils/fetch' import fetch from '@/utils/fetch'
import { getBaseUrl, getReportUrl, getWorkApi } from '@/utils/index' import { getBaseUrl, getReportUrl, getWorkApi } from '@/utils/index'
import { CryptoJS } from '@/plugins/aes' import { CryptoJS } from '@/plugins/aes'
import 'jsencrypt' import JSEncrypt from 'jsencrypt/bin/jsencrypt'
import { getPubKey } from '@/utils/account/accountApi'; import { getPubKey } from '@/utils/account/accountApi';
let pubKey = ""; let pubKey = "";
module.exports = { export default {
data: function () { data: function () {
return { return {
token: null token: null
...@@ -18,7 +18,7 @@ module.exports = { ...@@ -18,7 +18,7 @@ module.exports = {
// this.token = this.getUrlSearch(location.href, 'token') || (query && query.token) || null // this.token = this.getUrlSearch(location.href, 'token') || (query && query.token) || null
// this.token = this.getUrlKey('token') || (query && query.token) || null // this.token = this.getUrlKey('token') || (query && query.token) || null
}, },
mounted: function() { mounted: function () {
}, },
methods: { methods: {
...@@ -29,33 +29,33 @@ module.exports = { ...@@ -29,33 +29,33 @@ module.exports = {
var aesKey = ""; var aesKey = "";
var strList = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; var strList = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
var strLen = strList.length; var strLen = strList.length;
for(var i=0; i<len; i++){ for (var i = 0; i < len; i++) {
aesKey += strList.charAt( Math.floor( Math.random()*strLen ) ); aesKey += strList.charAt(Math.floor(Math.random() * strLen));
}; };
return aesKey; return aesKey;
}, },
// 加密传参,发送请求 // 加密传参,发送请求
sendEncryptRequest(content, cb){ sendEncryptRequest(content, cb) {
content = JSON.stringify(content); // 后端要求转 string content = JSON.stringify(content); // 后端要求转 string
// debugger; // debugger;
if(pubKey){ // pubKey获取过就不用再获取了 if (pubKey) { // pubKey获取过就不用再获取了
let params = this.formatContent(content, pubKey); let params = this.formatContent(content, pubKey);
cb && cb(params); cb && cb(params);
}else{ } else {
this.handleGetPubKey(content, cb); this.handleGetPubKey(content, cb);
} }
}, },
// get public key // get public key
handleGetPubKey(content, cb){ handleGetPubKey(content, cb) {
getPubKey().then(res => { getPubKey().then(res => {
// console.log('>>>>>>>>>>>>>>>>>>>> publicKey: ', res) // console.log('>>>>>>>>>>>>>>>>>>>> publicKey: ', res)
if(res.code == '000000'){ if (res.code == '000000') {
pubKey = res.data; pubKey = res.data;
if(cb){ if (cb) {
let params = this.formatContent(content, pubKey); let params = this.formatContent(content, pubKey);
cb && cb(params); cb && cb(params);
} }
}else{ } else {
this.$message({ this.$message({
message: (res && res.message) || '接口出错', message: (res && res.message) || '接口出错',
type: 'warning' type: 'warning'
...@@ -81,11 +81,11 @@ module.exports = { ...@@ -81,11 +81,11 @@ module.exports = {
AesEncrypt(content, aesKey) { AesEncrypt(content, aesKey) {
let sKey = CryptoJS.enc.Utf8.parse(aesKey); let sKey = CryptoJS.enc.Utf8.parse(aesKey);
let sContent = CryptoJS.enc.Utf8.parse(content); let sContent = CryptoJS.enc.Utf8.parse(content);
let encrypted = CryptoJS.AES.encrypt(sContent, sKey, {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7}); let encrypted = CryptoJS.AES.encrypt(sContent, sKey, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 });
return encrypted.toString(); return encrypted.toString();
}, },
// RSA encrypt // RSA encrypt
RsaEncrypt(aesKey, pubKey){ RsaEncrypt(aesKey, pubKey) {
let _encrypt = new JSEncrypt(); let _encrypt = new JSEncrypt();
let boss_public_key = pubKey; let boss_public_key = pubKey;
_encrypt.setPublicKey(boss_public_key); _encrypt.setPublicKey(boss_public_key);
...@@ -108,12 +108,12 @@ module.exports = { ...@@ -108,12 +108,12 @@ module.exports = {
return '' return ''
}, },
setRouterParm(paramList){ setRouterParm(paramList) {
let parm = {}; let parm = {};
if(paramList.length<=1){ if (paramList.length <= 1) {
return ''; return '';
} }
for(let i=1;i<paramList.length;i++){ for (let i = 1; i < paramList.length; i++) {
parm[paramList[i].key] = paramList[i].value; parm[paramList[i].key] = paramList[i].value;
} }
return parm; return parm;
...@@ -121,12 +121,12 @@ module.exports = { ...@@ -121,12 +121,12 @@ module.exports = {
// 拼接多个参数 // 拼接多个参数
getUrlParmByCode(paramList) { getUrlParmByCode(paramList) {
if ( paramList.length <= 1) { if (paramList.length <= 1) {
return '' return ''
} }
let dataStr = '' let dataStr = ''
let list = []; let list = [];
for( let i = 1; i < paramList.length; i ++) { for (let i = 1; i < paramList.length; i++) {
list.push(paramList[i].key + '=' + paramList[i].value) list.push(paramList[i].key + '=' + paramList[i].value)
} }
dataStr = list.join('&') dataStr = list.join('&')
...@@ -145,7 +145,7 @@ module.exports = { ...@@ -145,7 +145,7 @@ module.exports = {
// 根据条件排序 // 根据条件排序
async searchForOrder(searchCategory = '1', searchValue = '', sortItem = 1, pageSize = 10, sourceData = []) { async searchForOrder(searchCategory = '1', searchValue = '', sortItem = 1, pageSize = 10, sourceData = []) {
if(pageSize <=0 ) return; if (pageSize <= 0) return;
let str2 = (searchValue || '').replace(/[\-\_\,\!\|\~\`\(\)\#\$\%\^\&\*\{\}\:\;\"\L\<\>\?]/g, '');// 去掉特殊字符 let str2 = (searchValue || '').replace(/[\-\_\,\!\|\~\`\(\)\#\$\%\^\&\*\{\}\:\;\"\L\<\>\?]/g, '');// 去掉特殊字符
let _this = this, let _this = this,
para = { para = {
...@@ -164,17 +164,17 @@ module.exports = { ...@@ -164,17 +164,17 @@ module.exports = {
// _this.searchText = '' // _this.searchText = ''
if (res.code == '000000') { if (res.code == '000000') {
// 课程 // 课程
if(searchCategory.indexOf('1') >= 0) { if (searchCategory.indexOf('1') >= 0) {
sourceData = (res.data && res.data.contentAppModels) || [] sourceData = (res.data && res.data.contentAppModels) || []
} }
if(searchCategory.indexOf('2') >= 0) { if (searchCategory.indexOf('2') >= 0) {
// sourceData = [] // sourceData = []
sourceData = this.handelFive(res.data.fiveMinutesMedicalContentList || []) sourceData = this.handelFive(res.data.fiveMinutesMedicalContentList || [])
} }
if(searchCategory.indexOf('3') >= 0) { if (searchCategory.indexOf('3') >= 0) {
sourceData = (res.data && res.data.pCourseDoctorModels) || [] sourceData = (res.data && res.data.pCourseDoctorModels) || []
} }
if(searchCategory.indexOf('4') >= 0) { if (searchCategory.indexOf('4') >= 0) {
sourceData = res.data.educationContents sourceData = res.data.educationContents
} }
} }
...@@ -183,17 +183,17 @@ module.exports = { ...@@ -183,17 +183,17 @@ module.exports = {
return csourceData return csourceData
}, },
setEventByModuleCode(itemData){ setEventByModuleCode(itemData) {
let modeCode = itemData.appModuleInfo.code || ''; let modeCode = itemData.appModuleInfo.code || '';
let paramList = itemData.appModuleInfo.paramList ? itemData.appModuleInfo.paramList : '' let paramList = itemData.appModuleInfo.paramList ? itemData.appModuleInfo.paramList : ''
if( modeCode === 'M001' || modeCode === 'M002' || modeCode === 'M003') { if (modeCode === 'M001' || modeCode === 'M002' || modeCode === 'M003') {
paramList = '' paramList = ''
}else if( modeCode === 'M100' || modeCode === 'M300' ) { } else if (modeCode === 'M100' || modeCode === 'M300') {
// 支持多个参数 // 支持多个参数
let urlPara = this.getUrlParmByCode(paramList); let urlPara = this.getUrlParmByCode(paramList);
if(paramList[0]){ if (paramList[0]) {
if( paramList[0].value.indexOf("?") == -1){ if (paramList[0].value.indexOf("?") == -1) {
paramList[0].value += urlPara paramList[0].value += urlPara
} }
} }
...@@ -203,8 +203,8 @@ module.exports = { ...@@ -203,8 +203,8 @@ module.exports = {
let v = paramList[0]['value']; let v = paramList[0]['value'];
let query = this.setRouterParm(paramList); let query = this.setRouterParm(paramList);
paramList = [{ paramList = [{
url:v, url: v,
query:query query: query
}] }]
this.$router.push({ this.$router.push({
path: v, path: v,
...@@ -213,14 +213,14 @@ module.exports = { ...@@ -213,14 +213,14 @@ module.exports = {
//alert(this.token); //alert(this.token);
return 'NO' return 'NO'
} }
if(typeof paramList === 'string' && !paramList){ if (typeof paramList === 'string' && !paramList) {
paramList = [] paramList = []
} }
return paramList; return paramList;
}, },
// 通用GET请求 // 通用GET请求
GET(api, para, callback,str) { GET(api, para, callback, str) {
// para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE" // para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE"
let url = api + this.getUrlPara(para) let url = api + this.getUrlPara(para)
url = encodeURI(url); url = encodeURI(url);
...@@ -230,7 +230,7 @@ module.exports = { ...@@ -230,7 +230,7 @@ module.exports = {
data: para data: para
}) })
}, },
reportGET(api, para, callback,str) { reportGET(api, para, callback, str) {
// para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE" // para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE"
let url = api + this.getUrlPara(para) let url = api + this.getUrlPara(para)
url = encodeURI(url); url = encodeURI(url);
...@@ -254,7 +254,7 @@ module.exports = { ...@@ -254,7 +254,7 @@ module.exports = {
}, },
// 通用DELETE请求 // 通用DELETE请求
DELETE(api, para, callback,str) { DELETE(api, para, callback, str) {
// para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE" // para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE"
let url = api + this.getUrlPara(para) let url = api + this.getUrlPara(para)
return fetch({ return fetch({
...@@ -293,7 +293,7 @@ module.exports = { ...@@ -293,7 +293,7 @@ module.exports = {
saasPOST(api, para, cType) { saasPOST(api, para, cType) {
// para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE" // para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE"
let header = {} let header = {}
if(cType) { if (cType) {
header['Content-Type'] = cType; header['Content-Type'] = cType;
} }
return fetch({ return fetch({
......
...@@ -3,13 +3,6 @@ ...@@ -3,13 +3,6 @@
*/ */
export const envConfig = { export const envConfig = {
development: { development: {
// // baseUrl: 'http://10.177.15.180:10202/',
// // baseUrl: 'http://192.168.140.14:10201/',
// baseUrl: 'https://test1-sc.yunqueyi.com/',
// baseUrl: 'https://uat-sc.yunqueyi.com/',
// baseUrl: 'http://10.177.15.150:10401/',
// baseUrl: 'http://10.177.15.150:11905/',
baseUrl: 'https://dev-sc.yunqueyi.com/', baseUrl: 'https://dev-sc.yunqueyi.com/',
// baseUrl: 'https://test1-sc.yunqueyi.com/', // baseUrl: 'https://test1-sc.yunqueyi.com/',
// baseUrl: 'https://sc.yunqueyi.com/', // baseUrl: 'https://sc.yunqueyi.com/',
......
...@@ -213,7 +213,7 @@ export const getGoodsListAll = (params) => { ...@@ -213,7 +213,7 @@ export const getGoodsListAll = (params) => {
}); });
}; };
// 条形码获取信息 // 条形码获取信息
export const getBarcodeData =(barCode) => { export const getBarcodeData = (barCode) => {
return fetch({ return fetch({
headers, headers,
url: getBaseUrl(`store/admin/medical/queryByBarcode/${barCode}`), url: getBaseUrl(`store/admin/medical/queryByBarcode/${barCode}`),
...@@ -221,3 +221,13 @@ export const getBarcodeData =(barCode) => { ...@@ -221,3 +221,13 @@ export const getBarcodeData =(barCode) => {
description: "条形码获取信息", description: "条形码获取信息",
}); });
} }
export const getGoodsStock = (params) => {
return fetch({
headers,
url: getBaseUrl('store/qianfang/storage/queryStorageStock'),
method: "get",
params,
description: "查询药品库存",
});
};
\ No newline at end of file
import fetch from '@/utils/fetch' import fetch from '@/utils/fetch'
import { getBaseUrl, getReportUrl, getWorkApi, getCmsUrl } from '@/utils/index' import { getBaseUrl, getReportUrl, getWorkApi, getCmsUrl } from '@/utils/index'
import { CryptoJS } from '@/plugins/aes' import { CryptoJS } from '@/plugins/aes'
import JSEncrypt from 'jsencrypt' import JSEncrypt from 'jsencrypt/bin/jsencrypt'
import { getPubKey } from '@/utils/account/accountApi'; import { getPubKey } from '@/utils/account/accountApi';
...@@ -18,7 +18,7 @@ module.exports = { ...@@ -18,7 +18,7 @@ module.exports = {
// this.token = this.getUrlSearch(location.href, 'token') || (query && query.token) || null // this.token = this.getUrlSearch(location.href, 'token') || (query && query.token) || null
// this.token = this.getUrlKey('token') || (query && query.token) || null // this.token = this.getUrlKey('token') || (query && query.token) || null
}, },
mounted: function() { mounted: function () {
}, },
methods: { methods: {
...@@ -29,33 +29,33 @@ module.exports = { ...@@ -29,33 +29,33 @@ module.exports = {
var aesKey = ""; var aesKey = "";
var strList = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; var strList = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
var strLen = strList.length; var strLen = strList.length;
for(var i=0; i<len; i++){ for (var i = 0; i < len; i++) {
aesKey += strList.charAt( Math.floor( Math.random()*strLen ) ); aesKey += strList.charAt(Math.floor(Math.random() * strLen));
}; };
return aesKey; return aesKey;
}, },
// 加密传参,发送请求 // 加密传参,发送请求
sendEncryptRequest(content, cb){ sendEncryptRequest(content, cb) {
content = JSON.stringify(content); // 后端要求转 string content = JSON.stringify(content); // 后端要求转 string
// debugger; // debugger;
if(pubKey){ // pubKey获取过就不用再获取了 if (pubKey) { // pubKey获取过就不用再获取了
let params = this.formatContent(content, pubKey); let params = this.formatContent(content, pubKey);
cb && cb(params); cb && cb(params);
}else{ } else {
this.handleGetPubKey(content, cb); this.handleGetPubKey(content, cb);
} }
}, },
// get public key // get public key
handleGetPubKey(content, cb){ handleGetPubKey(content, cb) {
getPubKey().then(res => { getPubKey().then(res => {
// console.log('>>>>>>>>>>>>>>>>>>>> publicKey: ', res) // console.log('>>>>>>>>>>>>>>>>>>>> publicKey: ', res)
if(res.code == '000000'){ if (res.code == '000000') {
pubKey = res.data; pubKey = res.data;
if(cb){ if (cb) {
let params = this.formatContent(content, pubKey); let params = this.formatContent(content, pubKey);
cb && cb(params); cb && cb(params);
} }
}else{ } else {
this.$message({ this.$message({
message: (res && res.message) || '接口出错', message: (res && res.message) || '接口出错',
type: 'warning' type: 'warning'
...@@ -81,11 +81,11 @@ module.exports = { ...@@ -81,11 +81,11 @@ module.exports = {
AesEncrypt(content, aesKey) { AesEncrypt(content, aesKey) {
let sKey = CryptoJS.enc.Utf8.parse(aesKey); let sKey = CryptoJS.enc.Utf8.parse(aesKey);
let sContent = CryptoJS.enc.Utf8.parse(content); let sContent = CryptoJS.enc.Utf8.parse(content);
let encrypted = CryptoJS.AES.encrypt(sContent, sKey, {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7}); let encrypted = CryptoJS.AES.encrypt(sContent, sKey, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 });
return encrypted.toString(); return encrypted.toString();
}, },
// RSA encrypt // RSA encrypt
RsaEncrypt(aesKey, pubKey){ RsaEncrypt(aesKey, pubKey) {
let _encrypt = new JSEncrypt(); let _encrypt = new JSEncrypt();
let boss_public_key = pubKey; let boss_public_key = pubKey;
_encrypt.setPublicKey(boss_public_key); _encrypt.setPublicKey(boss_public_key);
...@@ -108,12 +108,12 @@ module.exports = { ...@@ -108,12 +108,12 @@ module.exports = {
return '' return ''
}, },
setRouterParm(paramList){ setRouterParm(paramList) {
let parm = {}; let parm = {};
if(paramList.length<=1){ if (paramList.length <= 1) {
return ''; return '';
} }
for(let i=1;i<paramList.length;i++){ for (let i = 1; i < paramList.length; i++) {
parm[paramList[i].key] = paramList[i].value; parm[paramList[i].key] = paramList[i].value;
} }
return parm; return parm;
...@@ -121,12 +121,12 @@ module.exports = { ...@@ -121,12 +121,12 @@ module.exports = {
// 拼接多个参数 // 拼接多个参数
getUrlParmByCode(paramList) { getUrlParmByCode(paramList) {
if ( paramList.length <= 1) { if (paramList.length <= 1) {
return '' return ''
} }
let dataStr = '' let dataStr = ''
let list = []; let list = [];
for( let i = 1; i < paramList.length; i ++) { for (let i = 1; i < paramList.length; i++) {
list.push(paramList[i].key + '=' + paramList[i].value) list.push(paramList[i].key + '=' + paramList[i].value)
} }
dataStr = list.join('&') dataStr = list.join('&')
...@@ -145,7 +145,7 @@ module.exports = { ...@@ -145,7 +145,7 @@ module.exports = {
// 根据条件排序 // 根据条件排序
async searchForOrder(searchCategory = '1', searchValue = '', sortItem = 1, pageSize = 10, sourceData = []) { async searchForOrder(searchCategory = '1', searchValue = '', sortItem = 1, pageSize = 10, sourceData = []) {
if(pageSize <=0 ) return; if (pageSize <= 0) return;
let str2 = (searchValue || '').replace(/[\-\_\,\!\|\~\`\(\)\#\$\%\^\&\*\{\}\:\;\"\L\<\>\?]/g, '');// 去掉特殊字符 let str2 = (searchValue || '').replace(/[\-\_\,\!\|\~\`\(\)\#\$\%\^\&\*\{\}\:\;\"\L\<\>\?]/g, '');// 去掉特殊字符
let _this = this, let _this = this,
para = { para = {
...@@ -164,17 +164,17 @@ module.exports = { ...@@ -164,17 +164,17 @@ module.exports = {
// _this.searchText = '' // _this.searchText = ''
if (res.code == '000000') { if (res.code == '000000') {
// 课程 // 课程
if(searchCategory.indexOf('1') >= 0) { if (searchCategory.indexOf('1') >= 0) {
sourceData = (res.data && res.data.contentAppModels) || [] sourceData = (res.data && res.data.contentAppModels) || []
} }
if(searchCategory.indexOf('2') >= 0) { if (searchCategory.indexOf('2') >= 0) {
// sourceData = [] // sourceData = []
sourceData = this.handelFive(res.data.fiveMinutesMedicalContentList || []) sourceData = this.handelFive(res.data.fiveMinutesMedicalContentList || [])
} }
if(searchCategory.indexOf('3') >= 0) { if (searchCategory.indexOf('3') >= 0) {
sourceData = (res.data && res.data.pCourseDoctorModels) || [] sourceData = (res.data && res.data.pCourseDoctorModels) || []
} }
if(searchCategory.indexOf('4') >= 0) { if (searchCategory.indexOf('4') >= 0) {
sourceData = res.data.educationContents sourceData = res.data.educationContents
} }
} }
...@@ -183,17 +183,17 @@ module.exports = { ...@@ -183,17 +183,17 @@ module.exports = {
return csourceData return csourceData
}, },
setEventByModuleCode(itemData){ setEventByModuleCode(itemData) {
let modeCode = itemData.appModuleInfo.code || ''; let modeCode = itemData.appModuleInfo.code || '';
let paramList = itemData.appModuleInfo.paramList ? itemData.appModuleInfo.paramList : '' let paramList = itemData.appModuleInfo.paramList ? itemData.appModuleInfo.paramList : ''
if( modeCode === 'M001' || modeCode === 'M002' || modeCode === 'M003') { if (modeCode === 'M001' || modeCode === 'M002' || modeCode === 'M003') {
paramList = '' paramList = ''
}else if( modeCode === 'M100' || modeCode === 'M300' ) { } else if (modeCode === 'M100' || modeCode === 'M300') {
// 支持多个参数 // 支持多个参数
let urlPara = this.getUrlParmByCode(paramList); let urlPara = this.getUrlParmByCode(paramList);
if(paramList[0]){ if (paramList[0]) {
if( paramList[0].value.indexOf("?") == -1){ if (paramList[0].value.indexOf("?") == -1) {
paramList[0].value += urlPara paramList[0].value += urlPara
} }
} }
...@@ -203,8 +203,8 @@ module.exports = { ...@@ -203,8 +203,8 @@ module.exports = {
let v = paramList[0]['value']; let v = paramList[0]['value'];
let query = this.setRouterParm(paramList); let query = this.setRouterParm(paramList);
paramList = [{ paramList = [{
url:v, url: v,
query:query query: query
}] }]
this.$router.push({ this.$router.push({
path: v, path: v,
...@@ -213,7 +213,7 @@ module.exports = { ...@@ -213,7 +213,7 @@ module.exports = {
//alert(this.token); //alert(this.token);
return 'NO' return 'NO'
} }
if(typeof paramList === 'string' && !paramList){ if (typeof paramList === 'string' && !paramList) {
paramList = [] paramList = []
} }
return paramList; return paramList;
...@@ -255,7 +255,7 @@ module.exports = { ...@@ -255,7 +255,7 @@ module.exports = {
}, },
// 通用DELETE请求 // 通用DELETE请求
DELETE(api, para, callback,str) { DELETE(api, para, callback, str) {
// para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE" // para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE"
let url = api + this.getUrlPara(para) let url = api + this.getUrlPara(para)
return fetch({ return fetch({
...@@ -304,7 +304,7 @@ module.exports = { ...@@ -304,7 +304,7 @@ module.exports = {
saasPOST(api, para, cType) { saasPOST(api, para, cType) {
// para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE" // para.token = para.token || this.token || "343BCABC890349ACAF357FA79122F9FE"
let header = {} let header = {}
if(cType) { if (cType) {
header['Content-Type'] = cType; header['Content-Type'] = cType;
} }
return fetch({ return fetch({
......
...@@ -32,6 +32,7 @@ const form = { ...@@ -32,6 +32,7 @@ const form = {
saleType: 1, saleType: 1,
minWhole: 1, minWhole: 1,
expressLimitFlag: 0, //是否支持退货退款 expressLimitFlag: 0, //是否支持退货退款
availableStock: "",
}; };
const form3 = { const form3 = {
......
...@@ -959,7 +959,7 @@ import { ...@@ -959,7 +959,7 @@ import {
getMedList, getMedList,
saveMedList, saveMedList,
updateGoods, updateGoods,
updateStock, getGoodsStock,
} from "@/utils/goods"; } from "@/utils/goods";
import { isEmptyUtils } from "@/utils/index"; import { isEmptyUtils } from "@/utils/index";
import { createFilePath, doUpload, getFilePath } from "@/utils/qiniu-util"; import { createFilePath, doUpload, getFilePath } from "@/utils/qiniu-util";
...@@ -1617,7 +1617,6 @@ export default { ...@@ -1617,7 +1617,6 @@ export default {
}, },
updateStock() { updateStock() {
let r = /^\+?[1-9][0-9]*$/; let r = /^\+?[1-9][0-9]*$/;
//造假 接口来了删掉
if (this.stock.num <= 0) { if (this.stock.num <= 0) {
return this.$message({ return this.$message({
message: "增加库存数量不得为0", message: "增加库存数量不得为0",
...@@ -1642,6 +1641,16 @@ export default { ...@@ -1642,6 +1641,16 @@ export default {
this.formData.decrStock = Number(this.stock.num); this.formData.decrStock = Number(this.stock.num);
this.formData.incrStock = ""; this.formData.incrStock = "";
} else if (this.stock.type == 2) { } else if (this.stock.type == 2) {
if (
this.formData3.availableStock > 0 &&
this.formData3.availableStock <
this.formData.goodsStock + this.stock.num
) {
return this.$message({
message: `最大可用库存:${this.formData3.availableStock}`,
type: "warning",
});
}
this.formData.stock = this.formData.stock =
Number(this.stock.num) + Number(this.formData.goodsStock); Number(this.stock.num) + Number(this.formData.goodsStock);
this.formData.incrStock = Number(this.stock.num); this.formData.incrStock = Number(this.stock.num);
...@@ -1664,6 +1673,24 @@ export default { ...@@ -1664,6 +1673,24 @@ export default {
num: "", num: "",
placeholderTxt: txt, placeholderTxt: txt,
}; };
if (this.formData3.medicationId) {
getGoodsStock({
medicationId: this.formData3.medicationId,
medicationDetailId: this.formData3.medicationDetailId,
})
.then((res) => {
if (res.code != "000000") {
return this.$message({
message: res.message,
type: "error",
});
}
this.formData.availableStock = res.data;
})
.catch((err) => {
console.log(err);
});
}
this.stockDio = true; this.stockDio = true;
}, },
complete() { complete() {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册