diff --git a/pages.json b/pages.json
index 8ba0d15..586ba28 100644
--- a/pages.json
+++ b/pages.json
@@ -53,6 +53,13 @@
"navigationBarTitleText": "账单",
"enablePullDownRefresh": false
}
+ },
+ {
+ "path": "pages/index/goodsOrderAdd",
+ "style": {
+ "navigationBarTitleText": "商品订单",
+ "enablePullDownRefresh": false
+ }
},
// {
// "path": "pages/cart/index",
diff --git a/pages/index/goodsOrderAdd.vue b/pages/index/goodsOrderAdd.vue
new file mode 100644
index 0000000..27e938b
--- /dev/null
+++ b/pages/index/goodsOrderAdd.vue
@@ -0,0 +1,338 @@
+
+
+
+ 商品
+
+
+
+
+
+ 商品
+
+
+
+ {{ item.goods_type_name }} - {{ item.goods_name }}
+
+ 请选择商品
+
+
+
+
+
+ 售价
+
+
+ {{item.goods_price}}
+
+
+
+
+
+
+ 支付状态
+
+
+ {{item.goods_pay_status_txt}}
+
+
+
+
+ 操作
+
+
+ 删除商品
+
+
+
+
+
+
+
+ 新增商品
+
+ 订单优惠
+
+
+ 优惠金额
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提交订单
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/index/index.vue b/pages/index/index.vue
index ed5c550..d45c4fb 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -2,7 +2,7 @@
-
+
新增商品订单
@@ -43,7 +43,7 @@
-
{{tempRoom?.room_name}}
@@ -52,7 +52,7 @@
-
diff --git a/pages/index/orderAdd.vue b/pages/index/orderAdd.vue
index 0f395c6..42bbcdf 100644
--- a/pages/index/orderAdd.vue
+++ b/pages/index/orderAdd.vue
@@ -160,6 +160,10 @@
+
+
+
@@ -239,34 +243,6 @@
-
- // // 选择房间弹窗
- // const visibleRoomsPopup = ref(false);
- // // 选中的房间
- // const popupRoomsVal = ref([])
- // // 房间列表
- // const rooms = [{
- // value: 1,
- // label: '房间 101'
- // },
- // {
- // value: 2,
- // label: '房间 102'
- // },
- // {
- // value: 3,
- // label: '房间 103'
- // }
- // ];
- // // 选择房间
- // const onConfirmRoom = (selectedValue) => {
- // console.log(selectedValue);
- // form.room_name = selectedValue.selectedOptions[0].label
- // form.room_id = selectedValue.selectedOptions[0].value
- // console.log(form);
- // visibleRoomsPopup.value = false
- // }
-
// 选择房间弹窗
const visibleFeeTypePopup = ref(false);
// 台费结算类型
@@ -296,7 +272,6 @@
if (form.fee_type !== 3) {
getCombos();
}
-
visibleFeeTypePopup.value = false
}
@@ -486,6 +461,8 @@
discount_amount: null, // 优惠金额
+ remarks: null
+
})
@@ -502,13 +479,6 @@
// 提交表单
const submitForm = () => {
- // const formData = {
- // room: room.value,
- // feeType: feeType.value,
- // selectedPackage: selectedPackage.value,
- // amount: amount.value,
- // paymentStatus: paymentStatus.value
- // };
let data = {
order_goods: orderGoods.value,
order: form
@@ -517,7 +487,18 @@
// console.log('提交的订单数据:', form);
fetchAddOrder(data).then(res => {
console.log(res);
- // selectGoods.value = res;
+ uni.showToast({
+ icon: 'none',
+ title: '开台成功'
+ })
+ setTimeout(() => {
+ uni.switchTab({
+ url: '/pages/index/index'
+ });
+ // uni.navigateBack({
+ // delta: 1 // 返回上一页
+ // });
+ }, 500)
})
};
diff --git a/pages/index/orderEdit.vue b/pages/index/orderEdit.vue
index aa6a153..c2784ff 100644
--- a/pages/index/orderEdit.vue
+++ b/pages/index/orderEdit.vue
@@ -151,14 +151,22 @@
+
+
+
-
+
+
+ 仅保存账单
+
+
-
- 开台
+
+ 保存账单并结束该房间
@@ -253,36 +261,10 @@
form.over_pay_status = res.over_pay_status.value
form.over_pay_status_txt = res.over_pay_status.text
- // is_show_edit.value = true;
- // console.log("====>", res);
- // form.goods_id = res.goods_id
- // form.goods_name = res.goods_name
- // form.goods_no = res.goods_no
- // form.goods_price = res.goods_price
- // // form.goods_stock = res.goods_stock
- // form.content = res.content
- // form.details_content = res.details_content
- // form.status = res.status.value.toString()
+ form.discount_amount = res.discount_amount
+ form.remarks = res.remarks
- // form.degree_id = res.degree?.degree_id ?? 0
- // form.degree_name = res.degree?.degree_name ?? '未选择'
- // form.type_id = res.type?.type_id ?? 0
- // form.type_name = res.type?.name ?? '未选择'
- // form.brand_id = res.brand?.brand_id ?? 0
- // form.brand_name = res.brand?.name ?? '未选择'
- // form.product_id = res.product?.product_id ?? 0
- // form.product_name = res.product?.name ?? '未选择'
- // popup_degree_val.value = [res.degree?.degree_id ?? 0]
- // cascader_product_val.value = [res.type?.type_id ?? 0, res.brand?.brand_id ?? 0, res.product
- // ?.product_id ?? 0
- // ]
- // form.images = []
- // res.image?.forEach(item => {
- // form.images.push({
- // id: item.image_id,
- // file_path: item.file_path,
- // })
- // })
+ orderGoods.value = res.goods
})
}
@@ -291,33 +273,6 @@
- // // 选择房间弹窗
- // const visibleRoomsPopup = ref(false);
- // // 选中的房间
- // const popupRoomsVal = ref([])
- // // 房间列表
- // const rooms = [{
- // value: 1,
- // label: '房间 101'
- // },
- // {
- // value: 2,
- // label: '房间 102'
- // },
- // {
- // value: 3,
- // label: '房间 103'
- // }
- // ];
- // // 选择房间
- // const onConfirmRoom = (selectedValue) => {
- // console.log(selectedValue);
- // form.room_name = selectedValue.selectedOptions[0].label
- // form.room_id = selectedValue.selectedOptions[0].value
- // console.log(form);
- // visibleRoomsPopup.value = false
- // }
-
// 选择房间弹窗
const visibleFeeTypePopup = ref(false);
// 台费结算类型
@@ -405,8 +360,8 @@
console.log(type);
}
+ // 选择支付状态
const onConfirmPaymentStatus = (selectedValue) => {
-
if (popupPaymentTypeVal.value == 'fee') {
form.fee_pay_status_txt = selectedValue.selectedOptions[0].label
form.fee_pay_status = selectedValue.selectedOptions[0].value
@@ -414,7 +369,8 @@
if (popupPaymentTypeVal.value == 'over') {
form.over_pay_status_txt = selectedValue.selectedOptions[0].label
form.over_pay_status = selectedValue.selectedOptions[0].value
- }
+ }
+ // 商品
if (popupPaymentTypeVal.value == 'goods' && goodsPayIndex.value >= 0) {
console.log("处理商品支付状态", goodsPayIndex.value);
orderGoods.value[goodsPayIndex.value].goods_pay_status_txt = selectedValue.selectedOptions[0].label
diff --git a/unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map b/unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map
index a6a1c16..b6c13a6 100644
--- a/unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map
+++ b/unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map
@@ -1 +1 @@
-{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["\n\n\n","import App from './App'\n\n// #ifndef VUE3\nimport Vue from 'vue'\nimport './uni.promisify.adaptor'\nVue.config.productionTip = false\nApp.mpType = 'app'\nconst app = new Vue({\n ...App\n})\napp.$mount()\n// #endif\n\n// #ifdef VUE3\nimport { createSSRApp } from 'vue'\nexport function createApp() {\n const app = createSSRApp(App)\n return {\n app\n }\n}\n// #endif"],"names":["uni","createSSRApp","App"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAEC,MAAK,YAAU;AAAA,EACf,UAAU,WAAY;AAOpBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAElBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACJM,SAAS,YAAY;AAC1B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAC5B,SAAO;AAAA,IACL;AAAA,EACD;AACH;;;"}
\ No newline at end of file
+{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["\n\n\n","import App from './App'\n\n// #ifndef VUE3\nimport Vue from 'vue'\nimport './uni.promisify.adaptor'\nVue.config.productionTip = false\nApp.mpType = 'app'\nconst app = new Vue({\n ...App\n})\napp.$mount()\n// #endif\n\n// #ifdef VUE3\nimport { createSSRApp } from 'vue'\nexport function createApp() {\n const app = createSSRApp(App)\n return {\n app\n }\n}\n// #endif"],"names":["uni","createSSRApp","App"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAEC,MAAK,YAAU;AAAA,EACf,UAAU,WAAY;AAOpBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAElBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACJM,SAAS,YAAY;AAC1B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAC5B,SAAO;AAAA,IACL;AAAA,EACD;AACH;;;"}
\ No newline at end of file
diff --git a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/goodsOrderAdd.js.map b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/goodsOrderAdd.js.map
new file mode 100644
index 0000000..69ed3f4
--- /dev/null
+++ b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/goodsOrderAdd.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"goodsOrderAdd.js","sources":["pages/index/goodsOrderAdd.vue","pages/index/goodsOrderAdd.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t商品 \r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t商品\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t{{ item.goods_type_name }} - {{ item.goods_name }}\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t请选择商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t售价\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_price}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_pay_status_txt}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t操作\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t删除商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\n\t\t\t\n\t\t\t\t新增商品\n\t\t\t\r\n\t\t\t订单优惠 \r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t优惠金额\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t提交订单\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/goodsOrderAdd.vue'\nwx.createPage(MiniProgramPage)"],"names":["onLoad","uni","ref","computed","reactive","onMounted","fetchGoods","fetchAddOrder"],"mappings":"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"}
\ No newline at end of file
diff --git a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
index 2ea96a0..2b4b6f1 100644
--- a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
+++ b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
@@ -1 +1 @@
-{"version":3,"file":"index.js","sources":["pages/index/index.vue","pages/index/index.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t新增商品订单\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t{{room.room_name}}\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t尾号: {{room.tel}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t预约\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t取消预约\r\n\t\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t详情\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t开台\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t{{tempRoom?.room_name}} \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t预约\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/index.vue'\nwx.createPage(MiniProgramPage)"],"names":["reactive","ref","uni","fetchRooms","fetchBooking","fetchUnBooking","onShow","onMounted"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAwFC,UAAM,OAAOA,cAAAA,SAAS;AAAA,MACrB,SAAS;AAAA,MACT,KAAK;AAAA,MACL,SAAS;AAAA,IACX,CAAE;AAED,UAAM,QAAQC,kBAAI,CAAA,CAAE;AACpB,UAAM,eAAe,CAAC,WAAW;AAChC,UAAI,kBAAkB;AAEtB,cAAQ,QAAM;AAAA,QACb,KAAK;AACJ,4BAAkB;AAClB;AAAA,QACD,KAAK;AACJ,4BAAkB;AAClB;AAAA,QACD,KAAK;AACJ,4BAAkB;AAClB;AAAA,QAKD;AACC,4BAAkB;AAAA,MACnB;AACD,aAAO;AAAA,QACN,oBAAoB;AAAA,MACvB;AAAA,IACE;AACD,UAAM,eAAeA,cAAG,IAAC,KAAK;AAC9B,UAAM,WAAWD,cAAQ,SAAC,EAAE;AAC5B,UAAM,YAAY,CAAC,SAAS;AAC3BE,oBAAY,MAAA,MAAA,OAAA,gCAAA,QAAQ,IAAI;AACxB,aAAO,OAAO,UAAU,IAAI;AAC5B,WAAK,UAAU,KAAK;AACpB,mBAAa,QAAQ;AAAA,IACrB;AACD,UAAM,eAAe,MAAM;AAC1B,aAAO,OAAO,UAAU,EAAE;AAC1B,aAAO,OAAO,MAAM;AAAA,QACnB,SAAS;AAAA,QACT,KAAK;AAAA,QACL,SAAS;AAAA,MACZ,CAAG;AACD,mBAAa,QAAQ;AACrBA,oBAAAA,mDAAY,IAAI;AAAA,IAClB;AAEC,UAAM,WAAW,MAAM;AACtBA,oBAAAA,mDAAY,IAAI;AAChBC,2BAAY,EAAC,KAAK,SAAO;AACxBD,sBAAAA,MAAY,MAAA,OAAA,gCAAA,GAAG;AACf,cAAM,QAAQ;AAAA,MACjB,CAAG;AAAA,IACD;AAGD,UAAM,WAAW,MAAM;AACtBE,gBAAAA,aAAa,IAAI,EAAE,KAAK,SAAO;AAC9BF,sBAAAA,MAAY,MAAA,OAAA,gCAAA,GAAG;AACfA,sBAAAA,MAAI,UAAU;AAAA,UACb,MAAM;AAAA,UACN,OAAO;AAAA,QACX,CAAI;AACD,qBAAc;AACd,iBAAU;AAAA,MACb,CAAG;AAAA,IACD;AAED,UAAM,cAAc,CAAC,SAAS;AAC7BG,+BAAe;AAAA,QACd,IAAI,KAAK;AAAA,MACZ,CAAG,EAAE,KAAK,SAAO;AACdH,sBAAAA,MAAY,MAAA,OAAA,gCAAA,GAAG;AACfA,sBAAAA,MAAI,UAAU;AAAA,UACb,MAAM;AAAA,UACN,OAAO;AAAA,QACX,CAAI;AACD,iBAAU;AAAA,MACb,CAAG;AAAA,IACD;AAED,UAAM,OAAO,MAAM;AAClBA,oBAAAA,MAAY,MAAA,OAAA,gCAAA,MAAM;AAClB,eAAU;AAAA,IACV;AAEDI,kBAAAA,OAAO,MAAM;AACZJ,oBAAAA,MAAA,MAAA,OAAA,gCAAY,WAAW;AACvB,eAAU;AAAA,IACZ,CAAE;AAEDK,kBAAAA,UAAU,MAAM;AACf;IACF,CAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACvLF,GAAG,WAAW,eAAe;"}
\ No newline at end of file
+{"version":3,"file":"index.js","sources":["pages/index/index.vue","pages/index/index.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t新增商品订单\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t{{room.room_name}}\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t尾号: {{room.tel}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t预约\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t取消预约\r\n\t\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t详情\r\n\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t开台\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t{{tempRoom?.room_name}} \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t预约\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/index.vue'\nwx.createPage(MiniProgramPage)"],"names":["reactive","ref","uni","fetchRooms","fetchBooking","fetchUnBooking","onShow","onMounted"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAwFC,UAAM,OAAOA,cAAAA,SAAS;AAAA,MACrB,SAAS;AAAA,MACT,KAAK;AAAA,MACL,SAAS;AAAA,IACX,CAAE;AAED,UAAM,QAAQC,kBAAI,CAAA,CAAE;AACpB,UAAM,eAAe,CAAC,WAAW;AAChC,UAAI,kBAAkB;AAEtB,cAAQ,QAAM;AAAA,QACb,KAAK;AACJ,4BAAkB;AAClB;AAAA,QACD,KAAK;AACJ,4BAAkB;AAClB;AAAA,QACD,KAAK;AACJ,4BAAkB;AAClB;AAAA,QAKD;AACC,4BAAkB;AAAA,MACnB;AACD,aAAO;AAAA,QACN,oBAAoB;AAAA,MACvB;AAAA,IACE;AACD,UAAM,eAAeA,cAAG,IAAC,KAAK;AAC9B,UAAM,WAAWD,cAAQ,SAAC,EAAE;AAC5B,UAAM,YAAY,CAAC,SAAS;AAC3BE,oBAAY,MAAA,MAAA,OAAA,gCAAA,QAAQ,IAAI;AACxB,aAAO,OAAO,UAAU,IAAI;AAC5B,WAAK,UAAU,KAAK;AACpB,mBAAa,QAAQ;AAAA,IACrB;AACD,UAAM,eAAe,MAAM;AAC1B,aAAO,OAAO,UAAU,EAAE;AAC1B,aAAO,OAAO,MAAM;AAAA,QACnB,SAAS;AAAA,QACT,KAAK;AAAA,QACL,SAAS;AAAA,MACZ,CAAG;AACD,mBAAa,QAAQ;AACrBA,oBAAAA,mDAAY,IAAI;AAAA,IAClB;AAEC,UAAM,WAAW,MAAM;AACtBA,oBAAAA,mDAAY,IAAI;AAChBC,2BAAY,EAAC,KAAK,SAAO;AACxBD,sBAAAA,MAAY,MAAA,OAAA,gCAAA,GAAG;AACf,cAAM,QAAQ;AAAA,MACjB,CAAG;AAAA,IACD;AAGD,UAAM,WAAW,MAAM;AACtBE,gBAAAA,aAAa,IAAI,EAAE,KAAK,SAAO;AAC9BF,sBAAAA,MAAY,MAAA,OAAA,gCAAA,GAAG;AACfA,sBAAAA,MAAI,UAAU;AAAA,UACb,MAAM;AAAA,UACN,OAAO;AAAA,QACX,CAAI;AACD,qBAAc;AACd,iBAAU;AAAA,MACb,CAAG;AAAA,IACD;AAED,UAAM,cAAc,CAAC,SAAS;AAC7BG,+BAAe;AAAA,QACd,IAAI,KAAK;AAAA,MACZ,CAAG,EAAE,KAAK,SAAO;AACdH,sBAAAA,MAAY,MAAA,OAAA,gCAAA,GAAG;AACfA,sBAAAA,MAAI,UAAU;AAAA,UACb,MAAM;AAAA,UACN,OAAO;AAAA,QACX,CAAI;AACD,iBAAU;AAAA,MACb,CAAG;AAAA,IACD;AAED,UAAM,OAAO,MAAM;AAClBA,oBAAAA,MAAY,MAAA,OAAA,gCAAA,MAAM;AAClB,eAAU;AAAA,IACV;AAEDI,kBAAAA,OAAO,MAAM;AACZJ,oBAAAA,MAAA,MAAA,OAAA,gCAAY,WAAW;AACvB,eAAU;AAAA,IACZ,CAAE;AAEDK,kBAAAA,UAAU,MAAM;AACf;IACF,CAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACvLF,GAAG,WAAW,eAAe;"}
\ No newline at end of file
diff --git a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderAdd.js.map b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderAdd.js.map
index 1faeacd..50561bc 100644
--- a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderAdd.js.map
+++ b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderAdd.js.map
@@ -1 +1 @@
-{"version":3,"file":"orderAdd.js","sources":["pages/index/orderAdd.vue","pages/index/orderAdd.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t基础台费 \r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t结算方式\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_type_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t选择团购\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_combo_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t线下收款\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t超时收费 \r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t时长(小时)\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t超时金额\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.over_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\t\t\t商品 \r\n\t\t\t\r\n\t\t\t\t新增商品\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t商品\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t{{ item.goods_type_name }} - {{ item.goods_name }}\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t请选择商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t售价\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_price}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_pay_status_txt}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t操作\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t删除商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\t\t\t订单优惠 \r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t优惠金额\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t开台\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/orderAdd.vue'\nwx.createPage(MiniProgramPage)"],"names":["onLoad","uni","ref","fetchCombos","computed","reactive","onMounted","fetchGoods","fetchAddOrder"],"mappings":"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"}
\ No newline at end of file
+{"version":3,"file":"orderAdd.js","sources":["pages/index/orderAdd.vue","pages/index/orderAdd.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t基础台费 \r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t结算方式\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_type_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t选择团购\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_combo_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t线下收款\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t超时收费 \r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t时长(小时)\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t超时金额\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.over_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\t\t\t商品 \r\n\t\t\t\r\n\t\t\t\t新增商品\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t商品\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t{{ item.goods_type_name }} - {{ item.goods_name }}\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t请选择商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t售价\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_price}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_pay_status_txt}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t操作\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t删除商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\t\t\t订单优惠 \r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t优惠金额\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t开台\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/orderAdd.vue'\nwx.createPage(MiniProgramPage)"],"names":["onLoad","uni","ref","fetchCombos","computed","reactive","onMounted","fetchGoods","fetchAddOrder"],"mappings":"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"}
\ No newline at end of file
diff --git a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderEdit.js.map b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderEdit.js.map
index a7f64fd..b14b23b 100644
--- a/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderEdit.js.map
+++ b/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/orderEdit.js.map
@@ -1 +1 @@
-{"version":3,"file":"orderEdit.js","sources":["pages/index/orderEdit.vue","pages/index/orderEdit.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t基础台费 \r\n\t\t\t\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t结算方式\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_type_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t选择团购\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_combo_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t线下收款\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t超时收费 \r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t时长(小时)\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t超时金额\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.over_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\t\t\t商品 \r\n\t\t\t\r\n\t\t\t\t新增商品\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t商品\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t{{ item.goods_type_name }} - {{ item.goods_name }}\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t请选择商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t售价\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_price}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_pay_status_txt}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t操作\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t删除商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\t\t\t订单优惠 \r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t优惠金额\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t开台\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/orderEdit.vue'\nwx.createPage(MiniProgramPage)"],"names":["onLoad","uni","fetchRoomOrder","ref","fetchCombos","computed","reactive","onMounted","fetchGoods","fetchAddOrder"],"mappings":"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"}
\ No newline at end of file
+{"version":3,"file":"orderEdit.js","sources":["pages/index/orderEdit.vue","pages/index/orderEdit.vue?type=page"],"sourcesContent":["\r\n\t\r\n\t\t\r\n\t\t\t基础台费 \r\n\t\t\t\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t结算方式\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_type_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t选择团购\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_combo_name}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t线下收款\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.fee_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t超时收费 \r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t时长(小时)\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t超时金额\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t{{form.over_pay_status_txt}}\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\t\t\t商品 \r\n\t\t\t\r\n\t\t\t\t新增商品\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t商品\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t{{ item.goods_type_name }} - {{ item.goods_name }}\r\n\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t请选择商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t售价\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_price}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t支付状态\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t{{item.goods_pay_status_txt}}\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t操作\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t删除商品\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\t\t\t订单优惠 \r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t优惠金额\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t仅保存账单\r\n\t\t\t\t\r\n\t\t\t\r\n\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t保存账单并结束该房间\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\r\n\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n","import MiniProgramPage from '/Users/iuu/Developer/PHP/Work/cmgd/mini-app/pages/index/orderEdit.vue'\nwx.createPage(MiniProgramPage)"],"names":["onLoad","uni","fetchRoomOrder","ref","fetchCombos","computed","reactive","onMounted","fetchGoods","fetchAddOrder"],"mappings":"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"}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/app.js b/unpackage/dist/dev/mp-weixin/app.js
index ea7b0eb..3c92864 100644
--- a/unpackage/dist/dev/mp-weixin/app.js
+++ b/unpackage/dist/dev/mp-weixin/app.js
@@ -5,6 +5,7 @@ if (!Math) {
"./pages/index/index.js";
"./pages/index/orderAdd.js";
"./pages/index/orderEdit.js";
+ "./pages/index/goodsOrderAdd.js";
"./pages/mine/index.js";
"./pages/mall/detail.js";
"./pages/mall/houseDetail.js";
diff --git a/unpackage/dist/dev/mp-weixin/app.json b/unpackage/dist/dev/mp-weixin/app.json
index 2acf9ac..3fc6f74 100644
--- a/unpackage/dist/dev/mp-weixin/app.json
+++ b/unpackage/dist/dev/mp-weixin/app.json
@@ -3,6 +3,7 @@
"pages/index/index",
"pages/index/orderAdd",
"pages/index/orderEdit",
+ "pages/index/goodsOrderAdd",
"pages/mine/index",
"pages/mall/detail",
"pages/mall/houseDetail",
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.js b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.js
new file mode 100644
index 0000000..bc54e71
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.js
@@ -0,0 +1,274 @@
+"use strict";
+const common_vendor = require("../../common/vendor.js");
+const api_index = require("../../api/index.js");
+if (!Array) {
+ const _easycom_nut_form_item2 = common_vendor.resolveComponent("nut-form-item");
+ const _easycom_nut_button2 = common_vendor.resolveComponent("nut-button");
+ const _easycom_nut_form2 = common_vendor.resolveComponent("nut-form");
+ const _easycom_nut_input2 = common_vendor.resolveComponent("nut-input");
+ const _easycom_nut_textarea2 = common_vendor.resolveComponent("nut-textarea");
+ const _easycom_nut_cascader2 = common_vendor.resolveComponent("nut-cascader");
+ const _easycom_nut_picker2 = common_vendor.resolveComponent("nut-picker");
+ const _easycom_nut_popup2 = common_vendor.resolveComponent("nut-popup");
+ (_easycom_nut_form_item2 + _easycom_nut_button2 + _easycom_nut_form2 + _easycom_nut_input2 + _easycom_nut_textarea2 + _easycom_nut_cascader2 + _easycom_nut_picker2 + _easycom_nut_popup2)();
+}
+const _easycom_nut_form_item = () => "../../uni_modules/nutui-uni/components/formitem/formitem.js";
+const _easycom_nut_button = () => "../../uni_modules/nutui-uni/components/button/button.js";
+const _easycom_nut_form = () => "../../uni_modules/nutui-uni/components/form/form.js";
+const _easycom_nut_input = () => "../../uni_modules/nutui-uni/components/input/input.js";
+const _easycom_nut_textarea = () => "../../uni_modules/nutui-uni/components/textarea/textarea.js";
+const _easycom_nut_cascader = () => "../../uni_modules/nutui-uni/components/cascader/cascader.js";
+const _easycom_nut_picker = () => "../../uni_modules/nutui-uni/components/picker/picker.js";
+const _easycom_nut_popup = () => "../../uni_modules/nutui-uni/components/popup/popup.js";
+if (!Math) {
+ (_easycom_nut_form_item + _easycom_nut_button + _easycom_nut_form + _easycom_nut_input + _easycom_nut_textarea + _easycom_nut_cascader + _easycom_nut_picker + _easycom_nut_popup)();
+}
+const _sfc_main = {
+ __name: "goodsOrderAdd",
+ setup(__props) {
+ common_vendor.onLoad((options) => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:118", options);
+ });
+ const visiblePaymentStatusPopup = common_vendor.ref(false);
+ const popupPaymentTypeVal = common_vendor.ref("");
+ const paymentStatuses = [
+ {
+ value: 1,
+ label: "已付"
+ }
+ ];
+ const openPayStatusPopup = (type, index = -1) => {
+ popupPaymentTypeVal.value = type;
+ goodsPayIndex.value = index;
+ visiblePaymentStatusPopup.value = true;
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:141", type);
+ };
+ const onConfirmPaymentStatus = (selectedValue) => {
+ if (popupPaymentTypeVal.value == "goods" && goodsPayIndex.value >= 0) {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:145", "处理商品支付状态", goodsPayIndex.value);
+ orderGoods.value[goodsPayIndex.value].goods_pay_status_txt = selectedValue.selectedOptions[0].label;
+ orderGoods.value[goodsPayIndex.value].goods_pay_status = selectedValue.selectedOptions[0].value;
+ }
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:149", form);
+ visiblePaymentStatusPopup.value = false;
+ popupPaymentTypeVal.value = "";
+ goodsPayIndex.value = -1;
+ };
+ const orderGoods = common_vendor.ref([
+ // {
+ // goods_type_name: null,
+ // goods_type_id: null,
+ // goods_name: null,
+ // goods_id: null,
+ // goods_price: null,
+ // goods_pay_status: 0,
+ // goods_pay_status_txt: "请选择",
+ // cascader_val: []
+ // },
+ ]);
+ const goodsPayIndex = common_vendor.ref(0);
+ const goodsIndex = common_vendor.ref(0);
+ const addGoods = () => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:176", orderGoods.value);
+ orderGoods.value.push({
+ goods_type_name: null,
+ goods_type_id: null,
+ goods_name: null,
+ goods_id: null,
+ goods_price: null,
+ goods_pay_status: 1,
+ goods_pay_status_txt: "已付",
+ cascader_val: []
+ });
+ };
+ const removeGoods = (index) => {
+ orderGoods.value.splice(index, 1);
+ };
+ const visibleGoodsCascader = common_vendor.ref(false);
+ const cascaderGoodsValue = common_vendor.computed(() => {
+ var _a;
+ let cascader_val = [];
+ if (goodsIndex.value >= 0) {
+ return ((_a = orderGoods.value[goodsIndex.value]) == null ? void 0 : _a.cascader_val) ?? [];
+ } else {
+ return cascader_val;
+ }
+ });
+ const onGoodsChange = (...args) => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:204", "onGoodsChange", args);
+ };
+ const onGoodsPathChange = (args) => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:208", "onGoodsPathChange", args);
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:209", "goodsIndex", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:210", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
+ orderGoods.value[goodsIndex.value].goods_type_name = null;
+ orderGoods.value[goodsIndex.value].goods_type_id = null;
+ orderGoods.value[goodsIndex.value].goods_name = null;
+ orderGoods.value[goodsIndex.value].goods_id = null;
+ orderGoods.value[goodsIndex.value].goods_price = null;
+ if (args.length >= 1 && args[0] !== null) {
+ orderGoods.value[goodsIndex.value].goods_type_name = args[0].text;
+ orderGoods.value[goodsIndex.value].goods_type_id = args[0].value;
+ }
+ if (args.length >= 2 && args[1] !== null) {
+ orderGoods.value[goodsIndex.value].goods_name = args[1].text;
+ orderGoods.value[goodsIndex.value].goods_id = args[1].value;
+ orderGoods.value[goodsIndex.value].goods_price = args[1].goods_price;
+ }
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:226", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
+ };
+ const onCloseGoodsCascader = () => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:229", "onCloseGoodsCascader");
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:230", "goodsIndex.value", goodsIndex.value);
+ if (orderGoods.value[goodsIndex.value].goods_type_id && orderGoods.value[goodsIndex.value].goods_id) {
+ orderGoods.value[goodsIndex.value].cascader_val = [
+ orderGoods.value[goodsIndex.value].goods_type_id,
+ orderGoods.value[goodsIndex.value].goods_id
+ ];
+ }
+ goodsIndex.value = 0;
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:238", "goodsIndex.value", goodsIndex.value);
+ };
+ const onOpenGoodsCascader = () => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:241", "onOpenGoodsCascader");
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:242", "goodsIndex.value", goodsIndex.value);
+ };
+ const form = common_vendor.reactive({
+ order_type: 2,
+ // 开台订单
+ discount_amount: null,
+ // 优惠金额
+ remarks: null
+ });
+ const selectGoods = common_vendor.ref([]);
+ common_vendor.onMounted(() => {
+ api_index.fetchGoods().then((res) => {
+ selectGoods.value = res;
+ });
+ });
+ const submitForm = () => {
+ let data = {
+ order_goods: orderGoods.value,
+ order: form
+ };
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:269", "提交的订单数据:", data);
+ api_index.fetchAddOrder(data).then((res) => {
+ common_vendor.index.__f__("log", "at pages/index/goodsOrderAdd.vue:271", res);
+ common_vendor.index.showToast({
+ icon: "none",
+ title: "商品订单记录成功"
+ });
+ setTimeout(() => {
+ common_vendor.index.switchTab({
+ url: "/pages/index/index"
+ });
+ }, 500);
+ });
+ };
+ return (_ctx, _cache) => {
+ return {
+ a: common_vendor.f(orderGoods.value, (item, index, i0) => {
+ return common_vendor.e({
+ a: item.goods_type_name && item.goods_name
+ }, item.goods_type_name && item.goods_name ? {
+ b: common_vendor.t(item.goods_type_name),
+ c: common_vendor.t(item.goods_name)
+ } : {}, {
+ d: common_vendor.o(($event) => {
+ visibleGoodsCascader.value = true;
+ goodsIndex.value = index;
+ }, index),
+ e: "bd18e2e4-1-" + i0 + ",bd18e2e4-0",
+ f: common_vendor.t(item.goods_price),
+ g: "bd18e2e4-2-" + i0 + ",bd18e2e4-0",
+ h: common_vendor.t(item.goods_pay_status_txt),
+ i: common_vendor.o(($event) => openPayStatusPopup("goods", index), index),
+ j: "bd18e2e4-3-" + i0 + ",bd18e2e4-0",
+ k: common_vendor.o(($event) => removeGoods(index), index),
+ l: "bd18e2e4-5-" + i0 + "," + ("bd18e2e4-4-" + i0),
+ m: "bd18e2e4-4-" + i0 + ",bd18e2e4-0",
+ n: index
+ });
+ }),
+ b: common_vendor.p({
+ ["label-position"]: "top"
+ }),
+ c: common_vendor.p({
+ ["label-position"]: "top"
+ }),
+ d: common_vendor.p({
+ ["label-position"]: "top"
+ }),
+ e: common_vendor.p({
+ type: "danger",
+ size: "mini"
+ }),
+ f: common_vendor.p({
+ ["label-position"]: "top"
+ }),
+ g: common_vendor.o(addGoods),
+ h: common_vendor.p({
+ type: "primary",
+ plain: true,
+ size: "small"
+ }),
+ i: common_vendor.o(($event) => form.discount_amount = $event),
+ j: common_vendor.p({
+ placeholder: "请输入金额",
+ type: "number",
+ modelValue: form.discount_amount
+ }),
+ k: common_vendor.o(($event) => form.remarks = $event),
+ l: common_vendor.p({
+ rows: 3,
+ ["adjust-keyboard-to"]: "bottom",
+ placeholder: "请输入备注",
+ modelValue: form.remarks
+ }),
+ m: common_vendor.p({
+ label: "备注"
+ }),
+ n: common_vendor.o(submitForm),
+ o: common_vendor.p({
+ type: "primary",
+ block: true
+ }),
+ p: common_vendor.o(onGoodsChange),
+ q: common_vendor.o(onGoodsPathChange),
+ r: common_vendor.o(onOpenGoodsCascader),
+ s: common_vendor.o(onCloseGoodsCascader),
+ t: common_vendor.o(($event) => visibleGoodsCascader.value = $event),
+ v: common_vendor.o(($event) => cascaderGoodsValue.value = $event),
+ w: common_vendor.p({
+ title: "商品选择",
+ ["text-key"]: "label",
+ ["value-key"]: "value",
+ ["children-key"]: "children",
+ options: selectGoods.value,
+ ["title-ellipsis"]: false,
+ visible: visibleGoodsCascader.value,
+ modelValue: cascaderGoodsValue.value
+ }),
+ x: common_vendor.o(onConfirmPaymentStatus),
+ y: common_vendor.o(($event) => visiblePaymentStatusPopup.value = false),
+ z: common_vendor.p({
+ columns: paymentStatuses,
+ ["field-names"]: {
+ text: "label",
+ value: "value"
+ },
+ title: "选择支付状态"
+ }),
+ A: common_vendor.o(($event) => visiblePaymentStatusPopup.value = $event),
+ B: common_vendor.p({
+ position: "bottom",
+ ["safe-area-inset-bottom"]: true,
+ visible: visiblePaymentStatusPopup.value
+ })
+ };
+ };
+ }
+};
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-bd18e2e4"]]);
+wx.createPage(MiniProgramPage);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/index/goodsOrderAdd.js.map
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.json b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.json
new file mode 100644
index 0000000..940e9c0
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.json
@@ -0,0 +1,14 @@
+{
+ "navigationBarTitleText": "商品订单",
+ "enablePullDownRefresh": false,
+ "usingComponents": {
+ "nut-form-item": "../../uni_modules/nutui-uni/components/formitem/formitem",
+ "nut-button": "../../uni_modules/nutui-uni/components/button/button",
+ "nut-form": "../../uni_modules/nutui-uni/components/form/form",
+ "nut-input": "../../uni_modules/nutui-uni/components/input/input",
+ "nut-textarea": "../../uni_modules/nutui-uni/components/textarea/textarea",
+ "nut-cascader": "../../uni_modules/nutui-uni/components/cascader/cascader",
+ "nut-picker": "../../uni_modules/nutui-uni/components/picker/picker",
+ "nut-popup": "../../uni_modules/nutui-uni/components/popup/popup"
+ }
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.wxml b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.wxml
new file mode 100644
index 0000000..16ff6cb
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.wxml
@@ -0,0 +1 @@
+商品 商品{{item.b}} - {{item.c}}请选择商品售价{{item.f}}支付状态{{item.h}}操作删除商品新增商品订单优惠 优惠金额 提交订单
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.wxss b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.wxss
new file mode 100644
index 0000000..c553253
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/index/goodsOrderAdd.wxss
@@ -0,0 +1,84 @@
+/**
+ * 这里是uni-app内置的常用样式变量
+ *
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
+ *
+ */
+/**
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
+ *
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
+ */
+/* 颜色变量 */
+/* 行为相关颜色 */
+/* 文字基本颜色 */
+/* 背景颜色 */
+/* 边框颜色 */
+/* 尺寸变量 */
+/* 文字尺寸 */
+/* 图片尺寸 */
+/* Border Radius */
+/* 水平间距 */
+/* 垂直间距 */
+/* 透明度 */
+/* 文章场景相关 */
+/**
+ * 这里是uni-app内置的常用样式变量
+ *
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
+ *
+ */
+/**
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
+ *
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
+ */
+/* 颜色变量 */
+/* 行为相关颜色 */
+/* 文字基本颜色 */
+/* 背景颜色 */
+/* 边框颜色 */
+/* 尺寸变量 */
+/* 文字尺寸 */
+/* 图片尺寸 */
+/* Border Radius */
+/* 水平间距 */
+/* 垂直间距 */
+/* 透明度 */
+/* 文章场景相关 */
+.page-content.data-v-bd18e2e4 {
+ min-height: 100vh;
+ background-color: #f2f3f5;
+}
+.title.data-v-bd18e2e4 {
+ padding: 0 20rpx;
+ margin-top: 20rpx;
+ margin-bottom: 20rpx;
+ font-size: 28rpx;
+ color: #909ca4;
+}
+.inline-form.data-v-bd18e2e4 {
+ display: flex;
+ justify-content: space-between;
+ gap: 10rpx;
+ /* 在元素之间添加间距 */
+}
+.top-bar.data-v-bd18e2e4 {
+ background: #fff;
+ padding: 20rpx;
+ display: flex;
+ justify-content: space-between;
+ border-top: 1px solid #eee;
+}
+
+/* 每个商品项容器 */
+/* 行容器 */
+.form-row.data-v-bd18e2e4 {
+ display: flex;
+ justify-content: space-between;
+ align-items: flex-start;
+ gap: 20rpx;
+ margin-bottom: 20rpx;
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/index.js b/unpackage/dist/dev/mp-weixin/pages/index/index.js
index 0f0bf5a..a6a8486 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/index.js
+++ b/unpackage/dist/dev/mp-weixin/pages/index/index.js
@@ -109,7 +109,7 @@ const _sfc_main = {
});
return (_ctx, _cache) => {
return {
- a: common_vendor.o(($event) => common_vendor.unref(utils_helper.navigateTo)("/pages/index/orderAdd")),
+ a: common_vendor.o(($event) => common_vendor.unref(utils_helper.navigateTo)("/pages/index/goodsOrderAdd")),
b: common_vendor.p({
type: "primary",
block: true
@@ -198,7 +198,7 @@ const _sfc_main = {
o: common_vendor.o(($event) => visiblePopup.value = $event),
p: common_vendor.p({
["custom-style"]: {
- height: "60%"
+ height: "75%"
},
position: "bottom",
["safe-area-inset-bottom"]: true,
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.js b/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.js
index 9beaeaf..8346c22 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.js
+++ b/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.js
@@ -6,29 +6,31 @@ if (!Array) {
const _easycom_nut_input2 = common_vendor.resolveComponent("nut-input");
const _easycom_nut_form2 = common_vendor.resolveComponent("nut-form");
const _easycom_nut_button2 = common_vendor.resolveComponent("nut-button");
+ const _easycom_nut_textarea2 = common_vendor.resolveComponent("nut-textarea");
const _easycom_nut_cascader2 = common_vendor.resolveComponent("nut-cascader");
const _easycom_nut_picker2 = common_vendor.resolveComponent("nut-picker");
const _easycom_nut_popup2 = common_vendor.resolveComponent("nut-popup");
- (_easycom_nut_form_item2 + _easycom_nut_input2 + _easycom_nut_form2 + _easycom_nut_button2 + _easycom_nut_cascader2 + _easycom_nut_picker2 + _easycom_nut_popup2)();
+ (_easycom_nut_form_item2 + _easycom_nut_input2 + _easycom_nut_form2 + _easycom_nut_button2 + _easycom_nut_textarea2 + _easycom_nut_cascader2 + _easycom_nut_picker2 + _easycom_nut_popup2)();
}
const _easycom_nut_form_item = () => "../../uni_modules/nutui-uni/components/formitem/formitem.js";
const _easycom_nut_input = () => "../../uni_modules/nutui-uni/components/input/input.js";
const _easycom_nut_form = () => "../../uni_modules/nutui-uni/components/form/form.js";
const _easycom_nut_button = () => "../../uni_modules/nutui-uni/components/button/button.js";
+const _easycom_nut_textarea = () => "../../uni_modules/nutui-uni/components/textarea/textarea.js";
const _easycom_nut_cascader = () => "../../uni_modules/nutui-uni/components/cascader/cascader.js";
const _easycom_nut_picker = () => "../../uni_modules/nutui-uni/components/picker/picker.js";
const _easycom_nut_popup = () => "../../uni_modules/nutui-uni/components/popup/popup.js";
if (!Math) {
- (_easycom_nut_form_item + _easycom_nut_input + _easycom_nut_form + _easycom_nut_button + _easycom_nut_cascader + _easycom_nut_picker + _easycom_nut_popup)();
+ (_easycom_nut_form_item + _easycom_nut_input + _easycom_nut_form + _easycom_nut_button + _easycom_nut_textarea + _easycom_nut_cascader + _easycom_nut_picker + _easycom_nut_popup)();
}
const _sfc_main = {
__name: "orderAdd",
setup(__props) {
common_vendor.onLoad((options) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:233", "onLoad");
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:237", "onLoad");
form.room_id = options.roomId;
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:236", form);
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:237", options);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:240", form);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:241", options);
});
const visibleFeeTypePopup = common_vendor.ref(false);
const feeTypes = [
@@ -46,21 +48,21 @@ const _sfc_main = {
}
];
const onConfirmFeeType = (selectedValue) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:292", selectedValue);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:268", selectedValue);
form.fee_type_name = selectedValue.selectedOptions[0].label;
form.fee_type = selectedValue.selectedOptions[0].value;
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:295", form);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:271", form);
if (form.fee_type !== 3) {
getCombos();
}
visibleFeeTypePopup.value = false;
};
const getCombos = () => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:304", "获取套餐");
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:279", "获取套餐");
api_index.fetchCombos({
type: form.fee_type
}).then((res) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:308", res);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:283", res);
combos.value = res;
});
};
@@ -68,10 +70,10 @@ const _sfc_main = {
const popupCombosVal = common_vendor.ref([]);
const combos = common_vendor.ref([]);
const onConfirmCombos = (selectedValue) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:323", selectedValue);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:298", selectedValue);
form.fee_combo_name = selectedValue.selectedOptions[0].label;
form.fee_combo_id = selectedValue.selectedOptions[0].value;
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:326", form);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:301", form);
visibleCombosPopup.value = false;
};
const visiblePaymentStatusPopup = common_vendor.ref(false);
@@ -95,7 +97,7 @@ const _sfc_main = {
popupPaymentTypeVal.value = type;
goodsPayIndex.value = index;
visiblePaymentStatusPopup.value = true;
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:354", type);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:329", type);
};
const onConfirmPaymentStatus = (selectedValue) => {
if (popupPaymentTypeVal.value == "fee") {
@@ -107,11 +109,11 @@ const _sfc_main = {
form.over_pay_status = selectedValue.selectedOptions[0].value;
}
if (popupPaymentTypeVal.value == "goods" && goodsPayIndex.value >= 0) {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:368", "处理商品支付状态", goodsPayIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:343", "处理商品支付状态", goodsPayIndex.value);
orderGoods.value[goodsPayIndex.value].goods_pay_status_txt = selectedValue.selectedOptions[0].label;
orderGoods.value[goodsPayIndex.value].goods_pay_status = selectedValue.selectedOptions[0].value;
}
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:372", form);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:347", form);
visiblePaymentStatusPopup.value = false;
popupPaymentTypeVal.value = "";
goodsPayIndex.value = -1;
@@ -131,7 +133,7 @@ const _sfc_main = {
const goodsPayIndex = common_vendor.ref(0);
const goodsIndex = common_vendor.ref(0);
const addGoods = () => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:399", orderGoods.value);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:374", orderGoods.value);
orderGoods.value.push({
goods_type_name: null,
goods_type_id: null,
@@ -157,12 +159,12 @@ const _sfc_main = {
}
});
const onGoodsChange = (...args) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:427", "onGoodsChange", args);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:402", "onGoodsChange", args);
};
const onGoodsPathChange = (args) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:431", "onGoodsPathChange", args);
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:432", "goodsIndex", goodsIndex.value);
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:433", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:406", "onGoodsPathChange", args);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:407", "goodsIndex", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:408", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
orderGoods.value[goodsIndex.value].goods_type_name = null;
orderGoods.value[goodsIndex.value].goods_type_id = null;
orderGoods.value[goodsIndex.value].goods_name = null;
@@ -177,11 +179,11 @@ const _sfc_main = {
orderGoods.value[goodsIndex.value].goods_id = args[1].value;
orderGoods.value[goodsIndex.value].goods_price = args[1].goods_price;
}
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:449", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:424", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
};
const onCloseGoodsCascader = () => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:452", "onCloseGoodsCascader");
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:453", "goodsIndex.value", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:427", "onCloseGoodsCascader");
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:428", "goodsIndex.value", goodsIndex.value);
if (orderGoods.value[goodsIndex.value].goods_type_id && orderGoods.value[goodsIndex.value].goods_id) {
orderGoods.value[goodsIndex.value].cascader_val = [
orderGoods.value[goodsIndex.value].goods_type_id,
@@ -189,11 +191,11 @@ const _sfc_main = {
];
}
goodsIndex.value = 0;
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:461", "goodsIndex.value", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:436", "goodsIndex.value", goodsIndex.value);
};
const onOpenGoodsCascader = () => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:464", "onOpenGoodsCascader");
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:465", "goodsIndex.value", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:439", "onOpenGoodsCascader");
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:440", "goodsIndex.value", goodsIndex.value);
};
const form = common_vendor.reactive({
order_type: 1,
@@ -219,8 +221,9 @@ const _sfc_main = {
// 超时支付状态
over_pay_status_txt: "请选择",
// 超时支付状态
- discount_amount: null
+ discount_amount: null,
// 优惠金额
+ remarks: null
});
const selectGoods = common_vendor.ref([]);
common_vendor.onMounted(() => {
@@ -233,9 +236,18 @@ const _sfc_main = {
order_goods: orderGoods.value,
order: form
};
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:516", "提交的订单数据:", data);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:486", "提交的订单数据:", data);
api_index.fetchAddOrder(data).then((res) => {
- common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:519", res);
+ common_vendor.index.__f__("log", "at pages/index/orderAdd.vue:489", res);
+ common_vendor.index.showToast({
+ icon: "none",
+ title: "开台成功"
+ });
+ setTimeout(() => {
+ common_vendor.index.switchTab({
+ url: "/pages/index/index"
+ });
+ }, 500);
});
};
return (_ctx, _cache) => {
@@ -342,18 +354,28 @@ const _sfc_main = {
type: "number",
modelValue: form.discount_amount
}),
- H: common_vendor.o(submitForm),
+ H: common_vendor.o(($event) => form.remarks = $event),
I: common_vendor.p({
+ rows: 3,
+ ["adjust-keyboard-to"]: _ctx.bottom,
+ placeholder: "请输入备注",
+ modelValue: form.remarks
+ }),
+ J: common_vendor.p({
+ label: "备注"
+ }),
+ K: common_vendor.o(submitForm),
+ L: common_vendor.p({
type: "primary",
block: true
}),
- J: common_vendor.o(onGoodsChange),
- K: common_vendor.o(onGoodsPathChange),
- L: common_vendor.o(onOpenGoodsCascader),
- M: common_vendor.o(onCloseGoodsCascader),
- N: common_vendor.o(($event) => visibleGoodsCascader.value = $event),
- O: common_vendor.o(($event) => cascaderGoodsValue.value = $event),
- P: common_vendor.p({
+ M: common_vendor.o(onGoodsChange),
+ N: common_vendor.o(onGoodsPathChange),
+ O: common_vendor.o(onOpenGoodsCascader),
+ P: common_vendor.o(onCloseGoodsCascader),
+ Q: common_vendor.o(($event) => visibleGoodsCascader.value = $event),
+ R: common_vendor.o(($event) => cascaderGoodsValue.value = $event),
+ S: common_vendor.p({
title: "商品选择",
["text-key"]: "label",
["value-key"]: "value",
@@ -363,9 +385,9 @@ const _sfc_main = {
visible: visibleGoodsCascader.value,
modelValue: cascaderGoodsValue.value
}),
- Q: common_vendor.o(onConfirmPaymentStatus),
- R: common_vendor.o(($event) => visiblePaymentStatusPopup.value = false),
- S: common_vendor.p({
+ T: common_vendor.o(onConfirmPaymentStatus),
+ U: common_vendor.o(($event) => visiblePaymentStatusPopup.value = false),
+ V: common_vendor.p({
columns: paymentStatuses,
["field-names"]: {
text: "label",
@@ -373,16 +395,16 @@ const _sfc_main = {
},
title: "选择支付状态"
}),
- T: common_vendor.o(($event) => visiblePaymentStatusPopup.value = $event),
- U: common_vendor.p({
+ W: common_vendor.o(($event) => visiblePaymentStatusPopup.value = $event),
+ X: common_vendor.p({
position: "bottom",
["safe-area-inset-bottom"]: true,
visible: visiblePaymentStatusPopup.value
}),
- V: common_vendor.o(onConfirmCombos),
- W: common_vendor.o(($event) => visibleCombosPopup.value = false),
- X: common_vendor.o(($event) => popupCombosVal.value = $event),
- Y: common_vendor.p({
+ Y: common_vendor.o(onConfirmCombos),
+ Z: common_vendor.o(($event) => visibleCombosPopup.value = false),
+ aa: common_vendor.o(($event) => popupCombosVal.value = $event),
+ ab: common_vendor.p({
columns: combos.value,
["field-names"]: {
text: "label",
@@ -391,15 +413,15 @@ const _sfc_main = {
title: "选择团购套餐",
modelValue: popupCombosVal.value
}),
- Z: common_vendor.o(($event) => visibleCombosPopup.value = $event),
- aa: common_vendor.p({
+ ac: common_vendor.o(($event) => visibleCombosPopup.value = $event),
+ ad: common_vendor.p({
position: "bottom",
["safe-area-inset-bottom"]: true,
visible: visibleCombosPopup.value
}),
- ab: common_vendor.o(onConfirmFeeType),
- ac: common_vendor.o(($event) => visibleFeeTypePopup.value = false),
- ad: common_vendor.p({
+ ae: common_vendor.o(onConfirmFeeType),
+ af: common_vendor.o(($event) => visibleFeeTypePopup.value = false),
+ ag: common_vendor.p({
columns: feeTypes,
["field-names"]: {
text: "label",
@@ -407,8 +429,8 @@ const _sfc_main = {
},
title: "选择结算方式"
}),
- ae: common_vendor.o(($event) => visibleFeeTypePopup.value = $event),
- af: common_vendor.p({
+ ah: common_vendor.o(($event) => visibleFeeTypePopup.value = $event),
+ ai: common_vendor.p({
position: "bottom",
["safe-area-inset-bottom"]: true,
visible: visibleFeeTypePopup.value
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.json b/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.json
index 8e266a3..db32692 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.json
+++ b/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.json
@@ -6,6 +6,7 @@
"nut-input": "../../uni_modules/nutui-uni/components/input/input",
"nut-form": "../../uni_modules/nutui-uni/components/form/form",
"nut-button": "../../uni_modules/nutui-uni/components/button/button",
+ "nut-textarea": "../../uni_modules/nutui-uni/components/textarea/textarea",
"nut-cascader": "../../uni_modules/nutui-uni/components/cascader/cascader",
"nut-picker": "../../uni_modules/nutui-uni/components/picker/picker",
"nut-popup": "../../uni_modules/nutui-uni/components/popup/popup"
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.wxml b/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.wxml
index 4b5572b..8f8fa3f 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.wxml
+++ b/unpackage/dist/dev/mp-weixin/pages/index/orderAdd.wxml
@@ -1 +1 @@
-基础台费 结算方式{{a}}选择团购{{e}}线下收款支付状态{{k}}超时收费 时长(小时)超时金额支付状态{{t}}商品 新增商品商品{{item.b}} - {{item.c}}请选择商品售价{{item.f}}支付状态{{item.h}}操作删除商品订单优惠 优惠金额 开台
\ No newline at end of file
+基础台费 结算方式{{a}}选择团购{{e}}线下收款支付状态{{k}}超时收费 时长(小时)超时金额支付状态{{t}}商品 新增商品商品{{item.b}} - {{item.c}}请选择商品售价{{item.f}}支付状态{{item.h}}操作删除商品订单优惠 优惠金额 开台
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.js b/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.js
index cc0408e..f35de49 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.js
+++ b/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.js
@@ -6,34 +6,36 @@ if (!Array) {
const _easycom_nut_input2 = common_vendor.resolveComponent("nut-input");
const _easycom_nut_form2 = common_vendor.resolveComponent("nut-form");
const _easycom_nut_button2 = common_vendor.resolveComponent("nut-button");
+ const _easycom_nut_textarea2 = common_vendor.resolveComponent("nut-textarea");
const _easycom_nut_cascader2 = common_vendor.resolveComponent("nut-cascader");
const _easycom_nut_picker2 = common_vendor.resolveComponent("nut-picker");
const _easycom_nut_popup2 = common_vendor.resolveComponent("nut-popup");
- (_easycom_nut_form_item2 + _easycom_nut_input2 + _easycom_nut_form2 + _easycom_nut_button2 + _easycom_nut_cascader2 + _easycom_nut_picker2 + _easycom_nut_popup2)();
+ (_easycom_nut_form_item2 + _easycom_nut_input2 + _easycom_nut_form2 + _easycom_nut_button2 + _easycom_nut_textarea2 + _easycom_nut_cascader2 + _easycom_nut_picker2 + _easycom_nut_popup2)();
}
const _easycom_nut_form_item = () => "../../uni_modules/nutui-uni/components/formitem/formitem.js";
const _easycom_nut_input = () => "../../uni_modules/nutui-uni/components/input/input.js";
const _easycom_nut_form = () => "../../uni_modules/nutui-uni/components/form/form.js";
const _easycom_nut_button = () => "../../uni_modules/nutui-uni/components/button/button.js";
+const _easycom_nut_textarea = () => "../../uni_modules/nutui-uni/components/textarea/textarea.js";
const _easycom_nut_cascader = () => "../../uni_modules/nutui-uni/components/cascader/cascader.js";
const _easycom_nut_picker = () => "../../uni_modules/nutui-uni/components/picker/picker.js";
const _easycom_nut_popup = () => "../../uni_modules/nutui-uni/components/popup/popup.js";
if (!Math) {
- (_easycom_nut_form_item + _easycom_nut_input + _easycom_nut_form + _easycom_nut_button + _easycom_nut_cascader + _easycom_nut_picker + _easycom_nut_popup)();
+ (_easycom_nut_form_item + _easycom_nut_input + _easycom_nut_form + _easycom_nut_button + _easycom_nut_textarea + _easycom_nut_cascader + _easycom_nut_picker + _easycom_nut_popup)();
}
const _sfc_main = {
__name: "orderEdit",
setup(__props) {
common_vendor.onLoad((options) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:225", "onLoad");
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:233", "onLoad");
form.room_id = options.roomId;
getRoomOrder();
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:232", form);
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:233", options);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:240", form);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:241", options);
});
const getRoomOrder = () => {
api_index.fetchRoomOrder(form.room_id).then((res) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:239", res);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:247", res);
form.room_id = res.room_id;
form.order_type = res.order_type;
form.fee_type = res.fee_type.value;
@@ -47,6 +49,9 @@ const _sfc_main = {
form.over_amount = res.over_amount;
form.over_pay_status = res.over_pay_status.value;
form.over_pay_status_txt = res.over_pay_status.text;
+ form.discount_amount = res.discount_amount;
+ form.remarks = res.remarks;
+ orderGoods.value = res.goods;
});
};
const visibleFeeTypePopup = common_vendor.ref(false);
@@ -65,21 +70,21 @@ const _sfc_main = {
}
];
const onConfirmFeeType = (selectedValue) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:343", selectedValue);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:298", selectedValue);
form.fee_type_name = selectedValue.selectedOptions[0].label;
form.fee_type = selectedValue.selectedOptions[0].value;
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:346", form);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:301", form);
if (form.fee_type !== 3) {
getCombos();
}
visibleFeeTypePopup.value = false;
};
const getCombos = () => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:355", "获取套餐");
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:310", "获取套餐");
api_index.fetchCombos({
type: form.fee_type
}).then((res) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:359", res);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:314", res);
combos.value = res;
});
};
@@ -87,10 +92,10 @@ const _sfc_main = {
const popupCombosVal = common_vendor.ref([]);
const combos = common_vendor.ref([]);
const onConfirmCombos = (selectedValue) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:374", selectedValue);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:329", selectedValue);
form.fee_combo_name = selectedValue.selectedOptions[0].label;
form.fee_combo_id = selectedValue.selectedOptions[0].value;
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:377", form);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:332", form);
visibleCombosPopup.value = false;
};
const visiblePaymentStatusPopup = common_vendor.ref(false);
@@ -114,7 +119,7 @@ const _sfc_main = {
popupPaymentTypeVal.value = type;
goodsPayIndex.value = index;
visiblePaymentStatusPopup.value = true;
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:405", type);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:360", type);
};
const onConfirmPaymentStatus = (selectedValue) => {
if (popupPaymentTypeVal.value == "fee") {
@@ -126,11 +131,11 @@ const _sfc_main = {
form.over_pay_status = selectedValue.selectedOptions[0].value;
}
if (popupPaymentTypeVal.value == "goods" && goodsPayIndex.value >= 0) {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:419", "处理商品支付状态", goodsPayIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:375", "处理商品支付状态", goodsPayIndex.value);
orderGoods.value[goodsPayIndex.value].goods_pay_status_txt = selectedValue.selectedOptions[0].label;
orderGoods.value[goodsPayIndex.value].goods_pay_status = selectedValue.selectedOptions[0].value;
}
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:423", form);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:379", form);
visiblePaymentStatusPopup.value = false;
popupPaymentTypeVal.value = "";
goodsPayIndex.value = -1;
@@ -150,7 +155,7 @@ const _sfc_main = {
const goodsPayIndex = common_vendor.ref(0);
const goodsIndex = common_vendor.ref(0);
const addGoods = () => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:450", orderGoods.value);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:406", orderGoods.value);
orderGoods.value.push({
goods_type_name: null,
goods_type_id: null,
@@ -176,12 +181,12 @@ const _sfc_main = {
}
});
const onGoodsChange = (...args) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:478", "onGoodsChange", args);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:434", "onGoodsChange", args);
};
const onGoodsPathChange = (args) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:482", "onGoodsPathChange", args);
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:483", "goodsIndex", goodsIndex.value);
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:484", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:438", "onGoodsPathChange", args);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:439", "goodsIndex", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:440", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
orderGoods.value[goodsIndex.value].goods_type_name = null;
orderGoods.value[goodsIndex.value].goods_type_id = null;
orderGoods.value[goodsIndex.value].goods_name = null;
@@ -196,11 +201,11 @@ const _sfc_main = {
orderGoods.value[goodsIndex.value].goods_id = args[1].value;
orderGoods.value[goodsIndex.value].goods_price = args[1].goods_price;
}
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:500", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:456", "orderGoods.value[goodsIndex.value]", orderGoods.value[goodsIndex.value]);
};
const onCloseGoodsCascader = () => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:503", "onCloseGoodsCascader");
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:504", "goodsIndex.value", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:459", "onCloseGoodsCascader");
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:460", "goodsIndex.value", goodsIndex.value);
if (orderGoods.value[goodsIndex.value].goods_type_id && orderGoods.value[goodsIndex.value].goods_id) {
orderGoods.value[goodsIndex.value].cascader_val = [
orderGoods.value[goodsIndex.value].goods_type_id,
@@ -208,11 +213,11 @@ const _sfc_main = {
];
}
goodsIndex.value = 0;
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:512", "goodsIndex.value", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:468", "goodsIndex.value", goodsIndex.value);
};
const onOpenGoodsCascader = () => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:515", "onOpenGoodsCascader");
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:516", "goodsIndex.value", goodsIndex.value);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:471", "onOpenGoodsCascader");
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:472", "goodsIndex.value", goodsIndex.value);
};
const form = common_vendor.reactive({
order_type: 1,
@@ -252,9 +257,9 @@ const _sfc_main = {
order_goods: orderGoods.value,
order: form
};
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:567", "提交的订单数据:", data);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:523", "提交的订单数据:", data);
api_index.fetchAddOrder(data).then((res) => {
- common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:570", res);
+ common_vendor.index.__f__("log", "at pages/index/orderEdit.vue:526", res);
});
};
return (_ctx, _cache) => {
@@ -361,18 +366,33 @@ const _sfc_main = {
type: "number",
modelValue: form.discount_amount
}),
- H: common_vendor.o(submitForm),
+ H: common_vendor.o(($event) => form.remarks = $event),
I: common_vendor.p({
- type: "primary",
+ rows: 3,
+ ["adjust-keyboard-to"]: _ctx.bottom,
+ placeholder: "请输入备注",
+ modelValue: form.remarks
+ }),
+ J: common_vendor.p({
+ label: "备注"
+ }),
+ K: common_vendor.o(submitForm),
+ L: common_vendor.p({
+ type: "success",
block: true
}),
- J: common_vendor.o(onGoodsChange),
- K: common_vendor.o(onGoodsPathChange),
- L: common_vendor.o(onOpenGoodsCascader),
- M: common_vendor.o(onCloseGoodsCascader),
- N: common_vendor.o(($event) => visibleGoodsCascader.value = $event),
- O: common_vendor.o(($event) => cascaderGoodsValue.value = $event),
- P: common_vendor.p({
+ M: common_vendor.o(submitForm),
+ N: common_vendor.p({
+ type: "danger",
+ block: true
+ }),
+ O: common_vendor.o(onGoodsChange),
+ P: common_vendor.o(onGoodsPathChange),
+ Q: common_vendor.o(onOpenGoodsCascader),
+ R: common_vendor.o(onCloseGoodsCascader),
+ S: common_vendor.o(($event) => visibleGoodsCascader.value = $event),
+ T: common_vendor.o(($event) => cascaderGoodsValue.value = $event),
+ U: common_vendor.p({
title: "商品选择",
["text-key"]: "label",
["value-key"]: "value",
@@ -382,9 +402,9 @@ const _sfc_main = {
visible: visibleGoodsCascader.value,
modelValue: cascaderGoodsValue.value
}),
- Q: common_vendor.o(onConfirmPaymentStatus),
- R: common_vendor.o(($event) => visiblePaymentStatusPopup.value = false),
- S: common_vendor.p({
+ V: common_vendor.o(onConfirmPaymentStatus),
+ W: common_vendor.o(($event) => visiblePaymentStatusPopup.value = false),
+ X: common_vendor.p({
columns: paymentStatuses,
["field-names"]: {
text: "label",
@@ -392,16 +412,16 @@ const _sfc_main = {
},
title: "选择支付状态"
}),
- T: common_vendor.o(($event) => visiblePaymentStatusPopup.value = $event),
- U: common_vendor.p({
+ Y: common_vendor.o(($event) => visiblePaymentStatusPopup.value = $event),
+ Z: common_vendor.p({
position: "bottom",
["safe-area-inset-bottom"]: true,
visible: visiblePaymentStatusPopup.value
}),
- V: common_vendor.o(onConfirmCombos),
- W: common_vendor.o(($event) => visibleCombosPopup.value = false),
- X: common_vendor.o(($event) => popupCombosVal.value = $event),
- Y: common_vendor.p({
+ aa: common_vendor.o(onConfirmCombos),
+ ab: common_vendor.o(($event) => visibleCombosPopup.value = false),
+ ac: common_vendor.o(($event) => popupCombosVal.value = $event),
+ ad: common_vendor.p({
columns: combos.value,
["field-names"]: {
text: "label",
@@ -410,15 +430,15 @@ const _sfc_main = {
title: "选择团购套餐",
modelValue: popupCombosVal.value
}),
- Z: common_vendor.o(($event) => visibleCombosPopup.value = $event),
- aa: common_vendor.p({
+ ae: common_vendor.o(($event) => visibleCombosPopup.value = $event),
+ af: common_vendor.p({
position: "bottom",
["safe-area-inset-bottom"]: true,
visible: visibleCombosPopup.value
}),
- ab: common_vendor.o(onConfirmFeeType),
- ac: common_vendor.o(($event) => visibleFeeTypePopup.value = false),
- ad: common_vendor.p({
+ ag: common_vendor.o(onConfirmFeeType),
+ ah: common_vendor.o(($event) => visibleFeeTypePopup.value = false),
+ ai: common_vendor.p({
columns: feeTypes,
["field-names"]: {
text: "label",
@@ -426,8 +446,8 @@ const _sfc_main = {
},
title: "选择结算方式"
}),
- ae: common_vendor.o(($event) => visibleFeeTypePopup.value = $event),
- af: common_vendor.p({
+ aj: common_vendor.o(($event) => visibleFeeTypePopup.value = $event),
+ ak: common_vendor.p({
position: "bottom",
["safe-area-inset-bottom"]: true,
visible: visibleFeeTypePopup.value
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.json b/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.json
index dadd99f..f6faf25 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.json
+++ b/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.json
@@ -6,6 +6,7 @@
"nut-input": "../../uni_modules/nutui-uni/components/input/input",
"nut-form": "../../uni_modules/nutui-uni/components/form/form",
"nut-button": "../../uni_modules/nutui-uni/components/button/button",
+ "nut-textarea": "../../uni_modules/nutui-uni/components/textarea/textarea",
"nut-cascader": "../../uni_modules/nutui-uni/components/cascader/cascader",
"nut-picker": "../../uni_modules/nutui-uni/components/picker/picker",
"nut-popup": "../../uni_modules/nutui-uni/components/popup/popup"
diff --git a/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.wxml b/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.wxml
index 922b3a2..c61a10b 100644
--- a/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.wxml
+++ b/unpackage/dist/dev/mp-weixin/pages/index/orderEdit.wxml
@@ -1 +1 @@
-基础台费 结算方式{{a}}选择团购{{e}}线下收款支付状态{{k}}超时收费 时长(小时)超时金额支付状态{{t}}商品 新增商品商品{{item.b}} - {{item.c}}请选择商品售价{{item.f}}支付状态{{item.h}}操作删除商品订单优惠 优惠金额 开台
\ No newline at end of file
+基础台费 结算方式{{a}}选择团购{{e}}线下收款支付状态{{k}}超时收费 时长(小时)超时金额支付状态{{t}}商品 新增商品商品{{item.b}} - {{item.c}}请选择商品售价{{item.f}}支付状态{{item.h}}操作删除商品订单优惠 优惠金额 仅保存账单 保存账单并结束该房间
\ No newline at end of file