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

This commit is contained in:
闫晓茹 2022-11-07 11:53:38 +08:00
commit 7dedc8fd00
7 changed files with 40 additions and 14 deletions

View File

@ -1,10 +1,10 @@
# 页面标题 # 页面标题
VUE_APP_TITLE = 全医通护理站管理平台 VUE_APP_TITLE = 泉医到家护理站管理平台
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'
# 全医通护理站管理平台/开发环境 # 泉医到家护理站管理平台/开发环境
# VUE_APP_BASE_API = '/dev-api' # VUE_APP_BASE_API = '/dev-api'
VUE_APP_BASE_API = 'http://192.168.16.64:8080' VUE_APP_BASE_API = 'http://192.168.16.64:8080'

View File

@ -1,8 +1,8 @@
# 页面标题 # 页面标题
VUE_APP_TITLE = 全医通护理站管理平台 VUE_APP_TITLE = 泉医到家护理站管理平台
# 生产环境配置 # 生产环境配置
ENV = 'production' ENV = 'production'
# 全医通护理站管理平台/生产环境 # 泉医到家护理站管理平台/生产环境
VUE_APP_BASE_API = '/prod-api' VUE_APP_BASE_API = '/prod-api'

View File

@ -1,10 +1,10 @@
# 页面标题 # 页面标题
VUE_APP_TITLE = 全医通护理站管理平台 VUE_APP_TITLE = 泉医到家护理站管理平台
NODE_ENV = production NODE_ENV = production
# 测试环境配置 # 测试环境配置
ENV = 'staging' ENV = 'staging'
# 全医通护理站管理平台/测试环境 # 泉医到家护理站管理平台/测试环境
VUE_APP_BASE_API = '/stage-api' VUE_APP_BASE_API = '/stage-api'

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

View File

@ -13,7 +13,7 @@
type="text" type="text"
auto-complete="off" auto-complete="off"
placeholder="账号" placeholder="账号"
style="width: 300px;" style="width: 310px"
> >
<svg-icon <svg-icon
slot="prefix" slot="prefix"
@ -29,7 +29,8 @@
auto-complete="off" auto-complete="off"
placeholder="密码" placeholder="密码"
@keyup.enter.native="handleLogin" @keyup.enter.native="handleLogin"
style="width: 300px" style="width: 310px"
> >
<svg-icon <svg-icon
slot="prefix" slot="prefix"
@ -187,7 +188,20 @@ export default {
}; };
</script> </script>
<style rel="stylesheet/scss" lang="scss"> <style rel="stylesheet/scss" lang="scss" scoped>
// .login .el-input::v-deep .el-input__inner {
// width: 300px;
// background-color: #F8F8F8;
// border: none;
// }
.el-input--medium ::v-deep .el-input__inner{
height: 50px;
line-height: 36px;
background-color: #F8F8F6;
border: none;
border-radius: 10px;
}
.login { .login {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -201,7 +215,9 @@ export default {
text-align: center; text-align: center;
color: #707070; color: #707070;
} }
.login-form .el-input{
border: none;
}
.login-form { .login-form {
margin-left: 20%; margin-left: 20%;
border-radius: 6px; border-radius: 6px;
@ -218,6 +234,7 @@ export default {
height: 39px; height: 39px;
width: 14px; width: 14px;
margin-left: 2px; margin-left: 2px;
margin-top: 5px;
} }
} }
.login-tip { .login-tip {
@ -249,6 +266,7 @@ export default {
} }
.login-code-img { .login-code-img {
height: 38px; height: 38px;
margin-top: 5px;
} }
// .el-button{ // .el-button{
// background-image: linear-gradient(to right , #90C8DF, #4CA8CD); // background-image: linear-gradient(to right , #90C8DF, #4CA8CD);

View File

@ -24,7 +24,7 @@
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
<el-form-item label="订单状态" prop="orderStatusinfo"> <el-form-item label="订单状态" prop="orderStatus">
<el-select <el-select
v-model="queryParams.orderStatus" v-model="queryParams.orderStatus"
placeholder="请选择订单状态" placeholder="请选择订单状态"
@ -729,6 +729,9 @@ seelogistics(id) {
searchlogistics() { searchlogistics() {
console.log(this.queryexpressNo) console.log(this.queryexpressNo)
editExpressNo(this.queryexpressNo).then(res => { editExpressNo(this.queryexpressNo).then(res => {
if(res.code == 200){
this.$modal.msgSuccess("录入成功");
}
this.queryexpressNo.expressNo = "" this.queryexpressNo.expressNo = ""
this.innerlogistics = false this.innerlogistics = false
console.log(res) console.log(res)
@ -759,6 +762,9 @@ submitRefundOrder() {
obj.remark = this.refundlist.refundReasonRemark obj.remark = this.refundlist.refundReasonRemark
obj.goodsStatus = this.refundlist.orderStatus obj.goodsStatus = this.refundlist.orderStatus
weChatRefundOrderApply(obj).then(res => { weChatRefundOrderApply(obj).then(res => {
if(res.code == 200){
this.$modal.msgSuccess("退款成功");
}
// console.log(obj) // console.log(obj)
this.innerrefund = false this.innerrefund = false
}) })
@ -805,7 +811,6 @@ reset() {
nurseStationId: null, nurseStationId: null,
patientId: null, patientId: null,
orderNo: null, orderNo: null,
orderStatus: "0",
totalPrice: null, totalPrice: null,
receiver: null, receiver: null,
receiveAddress: null, receiveAddress: null,
@ -817,7 +822,8 @@ reset() {
createBy: null, createBy: null,
createTime: null, createTime: null,
updateBy: null, updateBy: null,
updateTime: null updateTime: null,
orderStatus: "",
}; };
this.resetForm("form"); this.resetForm("form");
}, },
@ -830,7 +836,8 @@ handleQuery() {
resetQuery() { resetQuery() {
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
// this.getList();
}, },
// //
handleSelectionChange(selection) { handleSelectionChange(selection) {

View File

@ -91,6 +91,7 @@
icon="el-icon-s-promotion" icon="el-icon-s-promotion"
@click="dispatch(scope.row)" @click="dispatch(scope.row)"
v-hasPermi="['system:nurseType:edit']" v-hasPermi="['system:nurseType:edit']"
v-if="scope.row.orderStatus==WAIT_DISPATCH"
>派单</el-button >派单</el-button
> >
<el-button <el-button