shish 6 years ago
parent
commit
bfa954e2eb

+ 4 - 4
store/src/admin/official/index.vue

@@ -34,7 +34,7 @@
         </div>
       </div>
       <div class="official-wrap">
-        <div class="off-title">花卉宝,花店数字化建设者</div>
+        <div class="off-title">技术让花店经营更简单</div>
         <div class="off-sub-tit" @click="contactFn">
           <app-img
             :src="`${constant.imgUrl}/retail/official/phone-small.png`"
@@ -97,8 +97,8 @@ export default {
       backgroundImg: `${this.$constant.imgUrl}/retail/official/bg.png`,
       contentData: [
         {
-          title: `<span class="app-color-1">花店</span>专属商城`,
-          subTitle: `节日自动涨价,客户下单自动按距离计算运费`,
+          title: `<span class="app-color-1">日常经营更简单</span>`,
+          subTitle: `高效收集订花人信息,按距离计算运费,后台一键配送到达达,送到自动通知客户,节日自动涨价`,
           img: `${this.$constant.imgUrl}/retail/official/content-1.png`
         },
         {
@@ -118,7 +118,7 @@ export default {
         },
         {
           title: `<span class="app-color-1">规范化</span>管理订单`,
-          subTitle: `高效管理订单,从下单、制单、制作到发货、配送、 送达自动通知客户,大幅提升客户体验`,
+          subTitle: `高效管理订单,从下单、制单、制作到发货、配送、 送达通知,大幅提升客户体验`,
           img: `${this.$constant.imgUrl}/retail/official/content-2.png`
         },
         {

+ 1 - 1
store/src/admin/order/components/sel-ship-confirm.vue

@@ -115,7 +115,7 @@ export default {
       default: () => []
     }
   },
-  method: {
+  methods: {
     printerSetFn() {
       this.$util.pageTo({
         url: "/admin/order/print"

+ 2 - 2
store/src/admin/order/components/sel-ship-manage.vue

@@ -15,7 +15,7 @@
             <div v-if="orderData.hasDeliver == 1" class="axis-det btn-wrap">
               <button class="admin-button-com big blue confirm-btn" @click="sendSelfFn(1)">确认</button>
             </div>
-            <div v-else class="axis-det btn-wrap">
+            <div v-else class="axis-det btn-wrap" style="margin-bottom:16px;">
               <button
                 class="admin-button-com big blue confirm-btn"
                 @click="sendSelfFn(0)"
@@ -207,7 +207,7 @@ export default {
     },
     sendSelfFn(num) {
       if (num == 0) {
-        this.selfShipHint = "确认自己送?";
+        this.selfShipHint = "确认自己送?";
       } else {
         this.selfShipHint = "确认发货?";
       }

+ 0 - 1
store/src/admin/order/ship.vue

@@ -100,7 +100,6 @@ import SelShipConfirm from './components/sel-ship-confirm'
 // 有配送单-发货管理
 import SelShipManage from './components/sel-ship-manage'
 
-// api
 import { getDetB, orderSendDet } from '@/api/order'
 export default {
 	name: 'admin-ship',