Merge remote-tracking branch 'origin/dev' into test

test
郑明梁 2 years ago
commit 9ff6a78404

@ -61,6 +61,7 @@
"vue-cropper": "0.5.5", "vue-cropper": "0.5.5",
"vue-meta": "2.4.0", "vue-meta": "2.4.0",
"vue-router": "3.4.9", "vue-router": "3.4.9",
"vue-splitpane": "^1.0.6",
"vue2-verify": "^1.1.5", "vue2-verify": "^1.1.5",
"vuedraggable": "2.24.3", "vuedraggable": "2.24.3",
"vuex": "3.6.0" "vuex": "3.6.0"

@ -48,6 +48,8 @@ import VueMeta from "vue-meta";
// 字典数据组件 // 字典数据组件
import DictData from "@/components/DictData"; import DictData from "@/components/DictData";
import splitPane from 'vue-splitpane'
// 去除控制台的 Vue warn 警告信息 // 去除控制台的 Vue warn 警告信息
Vue.config.silent = true; Vue.config.silent = true;
@ -74,6 +76,7 @@ Vue.component("Editor", Editor);
Vue.component("FileUpload", FileUpload); Vue.component("FileUpload", FileUpload);
Vue.component("ImageUpload", ImageUpload); Vue.component("ImageUpload", ImageUpload);
Vue.component("ImagePreview", ImagePreview); Vue.component("ImagePreview", ImagePreview);
Vue.component('split-pane', splitPane);
Vue.use(directive); Vue.use(directive);
Vue.use(plugins); Vue.use(plugins);

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-form :model="filterQuery" size="mini" label-width="100px" v-show="showSearch"> <el-form :model="filterQuery" size="mini" label-width="100px" v-show="showSearch">
<el-row> <el-row>
<el-col :span="18"> <el-col :span="18">
<el-form-item class="query-form-item" label="UDI码:"> <el-form-item class="query-form-item" label="UDI码:">
@ -107,6 +107,7 @@ import {bindBasicHospProduct, saveBasicHospType, getBindList} from "@/api/basic/
import {saveRel, productList, SelectproductList} from "@/api/basic/basicCaterelType"; import {saveRel, productList, SelectproductList} from "@/api/basic/basicCaterelType";
import {sysFilter} from '@/api/basic/udiRelevance' import {sysFilter} from '@/api/basic/udiRelevance'
import {isBlank} from "@/utils/strUtil";
export default { export default {
@ -178,8 +179,15 @@ export default {
}, },
SelectInstentProduct(){ SelectInstentProduct(){
this.filterQuery.page = 1; if( isBlank(this.filterQuery.udiCode) && isBlank(this.filterQuery.unionCode) &&
this.getselectList(); isBlank(this.filterQuery.cpmctymc) && isBlank(this.filterQuery.ggxh)
&& isBlank(this.filterQuery.ylqxzcrbarmc) && isBlank(this.filterQuery.thrPiId)){
this.$message("请先输入搜索条件!")
return;
}
this.filterQuery.page = 1;
this.getselectList();
}, },
getSysFilter() { getSysFilter() {

@ -1925,7 +1925,6 @@ export default {
isAdavence: row.isAdavence, isAdavence: row.isAdavence,
}; };
this.checked = row.isUseDy == 1; this.checked = row.isUseDy == 1;
this.editQuery = row; this.editQuery = row;
// //
let ttquery = { let ttquery = {

@ -1360,6 +1360,8 @@ import {finProductSet} from "@/api/param/systemParamConfig";
export default { export default {
data() { data() {
return { return {
useNumEnable: true,
checked: false,
sysList: [], sysList: [],
productRemarkSet: {}, productRemarkSet: {},
inputQuery:{}, inputQuery:{},
@ -1461,7 +1463,6 @@ export default {
isAdavence: row.isAdavence, isAdavence: row.isAdavence,
}; };
this.checked = row.isUseDy == 1; this.checked = row.isUseDy == 1;
this.editQuery = row; this.editQuery = row;
// //
let ttquery = { let ttquery = {

@ -580,6 +580,7 @@ export default {
}; };
this.actDateRange = []; this.actDateRange = [];
this.auditDateRange = []; this.auditDateRange = [];
this.getBusType();
this.getList(); this.getList();
}, },
onSubmit() { onSubmit() {

@ -21,7 +21,6 @@
:disabled="list.length > 0" :disabled="list.length > 0"
@change="invChange" @change="invChange"
style="width: 90%" style="width: 90%"
clearable
> >
<el-option <el-option
v-for="item in invList" v-for="item in invList"

@ -598,7 +598,7 @@ export default {
return return
} }
if (this.$refs.uploadJrxml.uploadFiles.length < 1 && !this.uploadDisabled) { if (this.$refs.uploadJrxml.uploadFiles.length < 1 && !this.uploadDisabled) {
this.$message.warning(`请选择jasper文件`); this.$message.warning(`请选择jrxml文件`);
return return
} }
console.log(this.formName) console.log(this.formName)

@ -8,6 +8,7 @@
<el-select <el-select
v-model="editLogin.sourceAction" v-model="editLogin.sourceAction"
style="width: 100%" style="width: 100%"
filterable
placeholder="请选择本地单据类型" placeholder="请选择本地单据类型"
> >
<el-option <el-option
@ -232,6 +233,21 @@ export default {
this.editLogin.targetName = this.targetActions.find(item => item.action == this.editLogin.targetAction).name this.editLogin.targetName = this.targetActions.find(item => item.action == this.editLogin.targetAction).name
}, },
linkSubmit() { linkSubmit() {
if(isBlank(this.editLogin.sourceAction)){
return this.$message.error("本地单据类型不能为空");
}
if(isBlank(this.editLogin.invCode)){
return this.$message.error("目标部门不能为空");
}
if(isBlank(this.editLogin.invSubCode)){
return this.$message.error("目标仓库不能为空");
}
if(isBlank(this.editLogin.targetAction)){
return this.$message.error("目标单据类型不能为空");
}
linkPlatform(this.editLogin) linkPlatform(this.editLogin)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {

@ -53,12 +53,12 @@
<el-input <el-input
v-model="editLogin.platformPassword" v-model="editLogin.platformPassword"
placeholder="请输入密码" placeholder="请输入密码"
style="width: 81%" style="width: 70%"
size="small" size="small"
type="password" type="password"
show-password show-password
></el-input> ></el-input>
<el-button type="primary" style="margin-left: 7px;" @click.native="testUserInfo"> <el-button type="primary" style="margin-left: 2%;" @click.native="testUserInfo">
账号验证 账号验证
</el-button> </el-button>
</el-form-item> </el-form-item>
@ -78,6 +78,7 @@
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" size="small" :disabled="!check" @click.native.stop="addDelect(scope.row)">编辑</el-button> <el-button type="text" size="small" :disabled="!check" @click.native.stop="addDelect(scope.row)">编辑</el-button>
<el-button type="text" size="small" :disabled="!check" @click.native.stop="deleteDialog(scope.row)">删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -111,7 +112,7 @@
</template> </template>
<script> <script>
import {testUserInfo} from "@/api/userManage/platform"; import {deletePlatform, testUserInfo} from "@/api/userManage/platform";
import {getCorpLists, getPlatFormDelect} from "@/api/basic/basicUnitMaintain"; import {getCorpLists, getPlatFormDelect} from "@/api/basic/basicUnitMaintain";
import {getBussinessType} from "@/api/basic/bussinessType"; import {getBussinessType} from "@/api/basic/bussinessType";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
@ -256,7 +257,24 @@ export default {
}, },
closeDialog() { closeDialog() {
this.orderMutiVisible = false; this.orderMutiVisible = false;
this.getList(); this.getPlatFormDelect();
},
deleteDialog(row) {
this.$confirm("确认删除该自助平台信息?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
let tQuery = {
id: row.id
};
deletePlatform(tQuery).then(() => {
this.getPlatFormDelect()
});
})
.catch(() => {
});
}, },
getLocalBussinessType() { getLocalBussinessType() {
let tQuery = {}; let tQuery = {};
@ -267,8 +285,8 @@ export default {
}); });
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.query.page = val; this.query.page = val.page;
this.getList(); this.getPlatFormDelect();
}, },
addDelect(row){ addDelect(row){
if(this.check=true){ if(this.check=true){
@ -278,6 +296,17 @@ export default {
}else{ }else{
this.formQuery=2; this.formQuery=2;
this.editLogin.id=row.id this.editLogin.id=row.id
this.editLogin.platformId = row.platformId;
this.editLogin.appid = row.appid;
this.editLogin.apiKey = row.apiKey;
this.editLogin.secretKey = row.secretKey;
this.editLogin.unitId = row.unitId;
this.editLogin.customerId = row.platformId
this.editLogin.sourceAction = row.sourceAction
this.editLogin.invCode = row.invCode
this.editLogin.invSubCode = row.invSubCode
this.editLogin.targetAction = row.targetAction
console.log(this.editLogin)
this.editLoginVisible=true; this.editLoginVisible=true;
} }
}else{ }else{

Loading…
Cancel
Save