diff --git a/fuintAdmin/src/views/power/payment/index.vue b/fuintAdmin/src/views/power/payment/index.vue index db16d294e..f4b1cf33e 100644 --- a/fuintAdmin/src/views/power/payment/index.vue +++ b/fuintAdmin/src/views/power/payment/index.vue @@ -291,6 +291,8 @@ export default { this.$modal.msgSuccess("添加成功"); this.getList() this.dialogVisible = false + }else { + this.$modal.msgError("添加失败,此通道暂未配置"); } }) } diff --git a/fuintAdmin_zt/src/api/login.js b/fuintAdmin_zt/src/api/login.js index fca43c04c..11b9aa9ad 100644 --- a/fuintAdmin_zt/src/api/login.js +++ b/fuintAdmin_zt/src/api/login.js @@ -26,6 +26,15 @@ export function getInfo() { }) } +// 获取手机验证码 +export function gettelcode(data) { + return request({ + url: 'backendApi/login/sendMsg', + method: 'post', + data:data + }) +} + // 退出方法 export function logout() { return request({ diff --git a/fuintAdmin_zt/src/api/payConfig/merchantconfig.js b/fuintAdmin_zt/src/api/payConfig/merchantconfig.js index c65cbc22d..0006b2d5e 100644 --- a/fuintAdmin_zt/src/api/payConfig/merchantconfig.js +++ b/fuintAdmin_zt/src/api/payConfig/merchantconfig.js @@ -28,6 +28,15 @@ export function editMerchant(data) { }) } +// 修改商户备注信息 +export function editMerchantRemark(data) { + return request({ + url: '/api/merchantConfig/edit', + method: 'post', + data: data, + }) +} + // 添加商户使用状态 export function addMerchantApi(data) { @@ -44,4 +53,4 @@ export function merchantInfo(id) { url: '/api/merchantConfig/'+id, method: 'get', }) -} \ No newline at end of file +} diff --git a/fuintAdmin_zt/src/views/components/Service/payment.vue b/fuintAdmin_zt/src/views/components/Service/payment.vue index 75fe90b7a..fb786cc8d 100644 --- a/fuintAdmin_zt/src/views/components/Service/payment.vue +++ b/fuintAdmin_zt/src/views/components/Service/payment.vue @@ -38,7 +38,23 @@ 当前使用中
商户编号: {{ item.mchntCd }}
-
备注: {{ item.remark ? item.remark : "--" }}
+
+ 备注: {{ item.remark ? item.remark : "--" }} + + 修改 + 删除 + +
@@ -268,6 +284,16 @@ export default { this.getList(); }, methods:{ + handleUpdate(data){ + merchantInfo(data.id).then(res => { + this.title = "商户信息" + this.dialogVisible = true + this.form1 = res.data + }) + }, + handleDelete(data){ + + }, // 修改商户备注信息 submitRemark(){ editMerchantRemark(this.merchantConfig).then(res => { diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/controller/MerchantConfigController.java b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/controller/MerchantConfigController.java index 3432f704c..71e202956 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/controller/MerchantConfigController.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/controller/MerchantConfigController.java @@ -66,8 +66,9 @@ public class MerchantConfigController extends BaseController { public ResponseObject selectMerchant(@PathVariable Integer id){ return getSuccessResult(merchantConfigService.selectMerchById(id)); } + /** - * 修改商户备注信息 + * 修改商户信息 * @param merchantConfig * @return */ @@ -75,4 +76,14 @@ public class MerchantConfigController extends BaseController { public ResponseObject editMerchantRemark(@RequestBody MerchantConfig merchantConfig){ return getSuccessResult(merchantConfigService.updateMerchRemark(merchantConfig)); } + + /** + * 删除商户信息 + * @param id + * @return + */ + @DeleteMapping("{id}") + public ResponseObject delete(@PathVariable Integer id){ + return getSuccessResult(merchantConfigService.deleteMerch(id)); + } } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/MerchantConfigService.java b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/MerchantConfigService.java index e32487b6b..e87aa2999 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/MerchantConfigService.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/MerchantConfigService.java @@ -90,4 +90,11 @@ public interface MerchantConfigService extends IService { * @return */ public int insertMerch(MerchantConfig merchantConfig); + + /** + * 根据id删除配置信息 + * @param id + * @return + */ + public int deleteMerch(Integer id); } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/FyPayServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/FyPayServiceImpl.java index 31bb09987..20ef2f6c0 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/FyPayServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/FyPayServiceImpl.java @@ -145,7 +145,7 @@ public class FyPayServiceImpl implements FyPayService { ReceiveParameter receiveParameter = new ReceiveParameter(); receiveParameter.setOrderNo(orderNo); - receiveParameter.setGoodsMoney(allAmount*100); + receiveParameter.setGoodsMoney(allAmount/100); receiveParameter.setStoreId(storeId1); receiveParameter.setPayType(payType); @@ -381,7 +381,9 @@ public class FyPayServiceImpl implements FyPayService { receiveParameter.setContent("积分订单"); } - this.insertAllOrderInfo(receiveParameter,payStatus); + if (!reqMap.get("trans_stat").equals("USERPAYING")){ + this.insertAllOrderInfo(receiveParameter,payStatus); + } } }catch (Exception e){ log.error(e.getMessage()); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/MerchantConfigServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/MerchantConfigServiceImpl.java index b1f09d808..c50b65c14 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/MerchantConfigServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/api/fuyou/service/impl/MerchantConfigServiceImpl.java @@ -99,10 +99,9 @@ public class MerchantConfigServiceImpl extends ServiceImpl(); queryWrapper.eq("is_use",1); - queryWrapper.eq("store_id",nowAccountInfo.getStoreId()); + queryWrapper.eq("store_id",merchantConfig.getStoreId()); List list = baseMapper.selectList(queryWrapper); for (MerchantConfig config : list) { config.setIsUse("0"); @@ -149,6 +148,7 @@ public class MerchantConfigServiceImpl extends ServiceImpl { * @param orderNo * @return */ - public List selectOilOrderByOrderNo(@Param("orderNo") String orderNo); + public List selectOilOrderByOrderNo(@Param("orderNo") String orderNo,@Param("storeId") Integer storeId); public Map orderAmountStatistics(@Param("startTime") String startTime,@Param("endTime") String endTime,@Param("storeId") Integer storeId); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/OilOrderMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/OilOrderMapper.xml index 78d808298..667d1b20b 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/OilOrderMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/OilOrderMapper.xml @@ -45,9 +45,10 @@ diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/ReturnRecordMapper.xml b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/ReturnRecordMapper.xml index 372d14fda..9321e7e98 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/ReturnRecordMapper.xml +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/mapper/xml/ReturnRecordMapper.xml @@ -12,6 +12,7 @@ rd.hang_bill_id = #{returnRecord.hangBillId} + order by pay_time desc diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/HangBillServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/HangBillServiceImpl.java index 288769aff..2f4ec1225 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/HangBillServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/HangBillServiceImpl.java @@ -11,10 +11,12 @@ import com.fuint.api.fuyou.entity.MerchantConfig; import com.fuint.api.fuyou.service.FyPayService; import com.fuint.api.fuyou.service.MerchantConfigService; import com.fuint.api.fuyou.service.OilConfigService; +import com.fuint.business.order.entity.AllOrderInfo; import com.fuint.business.order.entity.CreditUnit; import com.fuint.business.order.entity.HangBill; import com.fuint.business.order.entity.ReturnRecord; import com.fuint.business.order.mapper.HangBillMapper; +import com.fuint.business.order.service.AllOrderInfoService; import com.fuint.business.order.service.CreditUnitService; import com.fuint.business.order.service.HangBillService; import com.fuint.business.order.service.ReturnRecordService; @@ -209,6 +211,7 @@ public class HangBillServiceImpl extends ServiceImpl i returnRecord.setPayTime(new Date()); Double amount = Double.valueOf(jsonObject.get("repaidAmount").toString()); this.updateHangBill(returnRecord.getHangBillId(), amount); + this.insertAllOrderInfo(orderNo,(Integer) jsonObject.get("storeId"),Double.valueOf(jsonObject.get("repaidAmount").toString()),map.get("payType"),(Integer) jsonObject.get("creditUnitId"),"PC"); }else { returnRecord.setCollectAmount(Double.valueOf(jsonObject.get("repaidAmount").toString())); returnRecord.setReturnType("0"); @@ -222,6 +225,26 @@ public class HangBillServiceImpl extends ServiceImpl i return orderNo; } + @Autowired + private AllOrderInfoService allOrderInfoService; + + /** + * 添加所有订单信息 + */ + private void insertAllOrderInfo(String orderNo,Integer storeId,Double goodsMoney,String payType,Integer userId,String payChannel){ + AllOrderInfo allOrderInfo = new AllOrderInfo(); + allOrderInfo.setOrderNo(orderNo); + allOrderInfo.setType("7"); + allOrderInfo.setStoreId(storeId); + allOrderInfo.setGoodsMoney(goodsMoney); + allOrderInfo.setPayType(payType); + allOrderInfo.setUserId(userId); + allOrderInfo.setPayChannel(payChannel); + allOrderInfo.setStatus("paid"); + allOrderInfo.setContent("挂账订单"); + allOrderInfoService.insertAllOrderInfo(allOrderInfo); + } + @Override public int updateHangBills(HangBill hangBill, Double repaidAmount,String status) { HangBill hangBill1 = this.updateStatus(hangBill, repaidAmount); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/OilOrderServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/OilOrderServiceImpl.java index ce8615200..4712dd8d6 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/OilOrderServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/order/service/impl/OilOrderServiceImpl.java @@ -151,7 +151,8 @@ public class OilOrderServiceImpl extends ServiceImpl i @Override public List queryOilOrderByOrderNo(String orderNo) { - List oilOrderVos = baseMapper.selectOilOrderByOrderNo(orderNo); + AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); + List oilOrderVos = baseMapper.selectOilOrderByOrderNo(orderNo,nowAccountInfo.getStoreId()); return oilOrderVos; } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilGunController.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilGunController.java index acad763c0..3660ca759 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilGunController.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilGunController.java @@ -115,5 +115,14 @@ public class OilGunController extends BaseController { public ResponseObject queryGunList(@PathVariable Integer numberId){ return getSuccessResult(oilGunService.selectOilGunByNumberId(numberId)); } + + /** + * 查询当前店铺所有油枪列表信息 + * @return + */ + @GetMapping("/queryOilGunList") + public ResponseObject selectGunList(){ + return getSuccessResult(oilGunService.selectOilGuns()); + } } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilNumberController.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilNumberController.java index b33e6b82c..ce9a0e96f 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilNumberController.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/controller/OilNumberController.java @@ -129,6 +129,15 @@ public class OilNumberController extends BaseController { return getSuccessResult(oilPresetPricesService.selectOilNumberNameByStoreId(storeId)); } + /** + * 根据店铺id查询油号信息 + * @return + */ + @GetMapping("/getOilNumber") + public ResponseObject queryOilNumbers(){ + return getSuccessResult(oilPresetPricesService.selectOilNumberNameByStoreId(null)); + } + } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/OilGunService.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/OilGunService.java index 0d1a20425..4ee679a44 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/OilGunService.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/OilGunService.java @@ -67,4 +67,10 @@ public interface OilGunService { * @return */ List selectOilGunByNumberId(Integer numberId); + + /** + * 根据油号id查询油枪列表信息 + * @return + */ + List selectOilGuns(); } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilGunServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilGunServiceImpl.java index 582087b30..f0ff6aecd 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilGunServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilGunServiceImpl.java @@ -140,7 +140,17 @@ public class OilGunServiceImpl implements OilGunService { public List selectOilGunByNumberId(Integer numberId) { QueryWrapper queryWrapper = new QueryWrapper(); queryWrapper.eq("number_id",numberId); + queryWrapper.eq("status","启用"); List list = oilGunDao.selectList(queryWrapper); return list; } + + @Override + public List selectOilGuns() { + AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("store_id",nowAccountInfo.getStoreId()); + queryWrapper.eq("status","启用"); + return oilGunDao.selectList(queryWrapper); + } } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilNumberServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilNumberServiceImpl.java index 244de6c25..7b44e8914 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilNumberServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/petrolStationManagement/service/impl/OilNumberServiceImpl.java @@ -96,6 +96,10 @@ public class OilNumberServiceImpl extends ServiceImpl selectOilNumberNameByStoreId(Integer storeId) { + if (storeId==null){ + AccountInfo nowAccountInfo = TokenUtil.getNowAccountInfo(); + storeId = nowAccountInfo.getStoreId(); + } return baseMapper.selectOilNumberNameByStoreId(storeId); } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/LJUserServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/LJUserServiceImpl.java index 7e05bf5d6..c08df71c7 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/LJUserServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/userManager/service/impl/LJUserServiceImpl.java @@ -165,8 +165,10 @@ public class LJUserServiceImpl extends ServiceImpl impleme LJUserVo ljUserVo = new LJUserVo(); if (ObjectUtil.isNotEmpty(store)){ ljUserVo = baseMapper.selectUserByMobileAndChantStoreId(mobile,store.getChainStoreId()); + if (ObjectUtil.isNotEmpty(ljUserVo)){ + ljUserVo.setStoreId(store.getId()); + } } - ljUserVo.setStoreId(store.getId()); return ljUserVo; } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/common/shiroConfig/ShiroConfig.java b/fuintBackend/fuint-application/src/main/java/com/fuint/common/shiroConfig/ShiroConfig.java index 885765461..00392f9b6 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/common/shiroConfig/ShiroConfig.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/common/shiroConfig/ShiroConfig.java @@ -35,6 +35,8 @@ public class ShiroConfig { filterMap.put("/clientApi/captcha/getCode","anon"); filterMap.put("/clientApi/sign/**","anon"); filterMap.put("/backendApi/login/loginByPhone","anon"); + filterMap.put("/backendApi/login/getInfo","anon"); + filterMap.put("/backendApi/login/logout","anon"); /*filterMap.put("/business/largeSscreen","anon"); filterMap.put("/business/largeSscreen/goods","anon"); filterMap.put("/business/largeSscreen/staff","anon"); diff --git a/fuintCashierWeb/src/api/cashier/oilGuns.js b/fuintCashierWeb/src/api/cashier/oilGuns.js index 90ff565a1..a5110d209 100644 --- a/fuintCashierWeb/src/api/cashier/oilGuns.js +++ b/fuintCashierWeb/src/api/cashier/oilGuns.js @@ -16,3 +16,27 @@ export function getOilTank(id) { method: 'get', }) } + +// 查询油罐信息 +export function getOilGunInfo(numberId) { + return request({ + url: '/business/petrolStationManagement/oilGun/queryGunList/'+numberId, + method: 'get', + }) +} + +// 查询油罐信息 +export function getOilGuns() { + return request({ + url: '/business/petrolStationManagement/oilGun/queryOilGunList', + method: 'get', + }) +} + +// 查询油罐信息 +export function getOilNumberGun() { + return request({ + url: '/business/petrolStationManagement/oilGun/selectByNumberTGUn', + method: 'get', + }) +} diff --git a/fuintCashierWeb/src/api/cashier/oilnumber.js b/fuintCashierWeb/src/api/cashier/oilnumber.js index a3c253db1..f277d87ac 100644 --- a/fuintCashierWeb/src/api/cashier/oilnumber.js +++ b/fuintCashierWeb/src/api/cashier/oilnumber.js @@ -17,3 +17,13 @@ export function oilNumberList() { // data: data }) } + + +// 查询所有油号 +export function oilNumbers() { + return request({ + url: '/business/petrolStationManagement/oilNumber/getOilNumber', + method: 'get', + // data: data + }) +} diff --git a/fuintCashierWeb/src/views/cashier/NewComponents/Integral.vue b/fuintCashierWeb/src/views/cashier/NewComponents/Integral.vue index fe9421891..f2fdd99d9 100644 --- a/fuintCashierWeb/src/views/cashier/NewComponents/Integral.vue +++ b/fuintCashierWeb/src/views/cashier/NewComponents/Integral.vue @@ -15,7 +15,7 @@ background-color: rgb(67,119,204)">
@@ -218,12 +218,12 @@ title="请选择会员" :visible.sync="dialogVisibleMember" :close-on-click-modal="false"> -
+
@@ -408,6 +408,7 @@ import {getUserInfoMobile, getUserVoMobile, getUserVoName} from "@/api/cashier/u dict: [], data(){ return{ + baseUrl:process.env.VUE_APP_BASE_API, shoppingCart:[], giftList:'', giftCategoryList:'', @@ -573,7 +574,7 @@ import {getUserInfoMobile, getUserVoMobile, getUserVoName} from "@/api/cashier/u }) }else { getUserVoName({name:this.userNo}).then( response => { - this.memberList = response.data + this.memberList = response.data.userVo }) this.dialogVisibleMember = true; } @@ -623,6 +624,7 @@ import {getUserInfoMobile, getUserVoMobile, getUserVoName} from "@/api/cashier/u this.allAmout=0 this.allMoneyRatio=0 this.paymentType = '' + this.resetMember() }, // 打开购物车 shoppingCartMethod() { @@ -888,7 +890,7 @@ import {getUserInfoMobile, getUserVoMobile, getUserVoName} from "@/api/cashier/u } this.paymentType = '' - + this.reset() }, // 清楚数据 handClose(){ @@ -1149,7 +1151,7 @@ import {getUserInfoMobile, getUserVoMobile, getUserVoName} from "@/api/cashier/u } .wrap-box2{ - background: #36b713 !important; + background: #30a1ff !important; color: white; //width: 100%; //height: 100%; diff --git a/fuintCashierWeb/src/views/cashier/NewComponents/credit.vue b/fuintCashierWeb/src/views/cashier/NewComponents/credit.vue index b0370ece4..24479a57c 100644 --- a/fuintCashierWeb/src/views/cashier/NewComponents/credit.vue +++ b/fuintCashierWeb/src/views/cashier/NewComponents/credit.vue @@ -139,7 +139,7 @@ - + diff --git a/fuintCashierWeb/src/views/cashier/NewComponents/homeindex.vue b/fuintCashierWeb/src/views/cashier/NewComponents/homeindex.vue index 6273fd73e..c6b6136ee 100644 --- a/fuintCashierWeb/src/views/cashier/NewComponents/homeindex.vue +++ b/fuintCashierWeb/src/views/cashier/NewComponents/homeindex.vue @@ -196,10 +196,12 @@
{{ item.dictLabel }}
-
+
挂账
@@ -1114,6 +1116,7 @@ }, // 挂账 addCredits(){ + this.map.payType = "credit" this.dialogVisibleCredit = true this.form1.amount = this.oilAmount + this.goodsAmount }, @@ -2237,6 +2240,7 @@ chooseStaff(data){ this.staff = data; this.map.staffId = this.staff.id; + this.dialogVisible = false }, // 删除商品列表信息 delGoods(index){ @@ -2553,7 +2557,7 @@ this.gunList.forEach(item => { if (item.id==data.id){ this.form.id = item.id - this.form.gunName = item.gunName + this.form.gunName = item.id } }) }) @@ -3083,6 +3087,20 @@ margin-bottom: 10px; } + .wrap-box2{ + background: #30a1ff !important; + color: white; + //width: 100%; + //height: 100%; + //border-radius: 8px; + //height: 80px; + //display: flex; + //align-items: center; + //justify-content: center; + //border: 1px solid #20b400; + //cursor: pointer; + //color: #20b400; + } .wrap-box :hover{ /*background: #00afff !important;*/ width: 100%; diff --git a/fuintCashierWeb/src/views/cashier/index.vue b/fuintCashierWeb/src/views/cashier/index.vue index 4c80e0f82..da62b9949 100644 --- a/fuintCashierWeb/src/views/cashier/index.vue +++ b/fuintCashierWeb/src/views/cashier/index.vue @@ -203,9 +203,9 @@ -
- -
+ + + diff --git a/fuintCashierWeb/src/views/cashier/orderComponents/order_Cashier.vue b/fuintCashierWeb/src/views/cashier/orderComponents/order_Cashier.vue index 2ad8f1b49..8682bd074 100644 --- a/fuintCashierWeb/src/views/cashier/orderComponents/order_Cashier.vue +++ b/fuintCashierWeb/src/views/cashier/orderComponents/order_Cashier.vue @@ -2,18 +2,6 @@
- + - - + - + + - + + - - - - + + - - + - + - - - - + + - + + + + - - - + - - +