|
|
@@ -75,7 +75,9 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="shop-show_box">
|
|
|
- <view class="show-shop_box">
|
|
|
+ <view
|
|
|
+ @click="selectItem"
|
|
|
+ class="show-shop_box">
|
|
|
<image
|
|
|
class="img"
|
|
|
src="https://file02.16sucai.com/d/file/2014/0829/372edfeb74c3119b666237bd4af92be5.jpg"
|
|
|
@@ -98,6 +100,19 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <uniPopup
|
|
|
+ :show.sync="isShowFllowNum"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ <keyboardSetFlower></keyboardSetFlower>
|
|
|
+ </div>
|
|
|
+ </uniPopup>
|
|
|
+ <uniPopup
|
|
|
+ :show.sync="isShowUser"
|
|
|
+ >
|
|
|
+ <selectCustomer></selectCustomer>
|
|
|
+ </uniPopup>
|
|
|
+
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
@@ -105,12 +120,17 @@ import { mapGetters,mapActions } from "vuex";
|
|
|
import NotLogin from "@/components/not-login";
|
|
|
import productMins from "@/mixins/product";
|
|
|
import autoUpdateMixins from "@/mixins/autoUpdate";
|
|
|
+import uniPopup from '@/components/uni-popup'
|
|
|
+import keyboardSetFlower from '@/components/app-boardSet-flower.vue'
|
|
|
+import selectCustomer from './components/select-customer.vue'
|
|
|
export default {
|
|
|
name: "workbench",
|
|
|
- components: { NotLogin },
|
|
|
+ components: { NotLogin,uniPopup,keyboardSetFlower,selectCustomer },
|
|
|
mixins: [productMins,autoUpdateMixins],
|
|
|
data() {
|
|
|
return {
|
|
|
+ isShowFllowNum: false,
|
|
|
+ isShowUser: true,
|
|
|
shopListType:[
|
|
|
{
|
|
|
name:'今日特价',
|
|
|
@@ -141,6 +161,9 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
init() {
|
|
|
+ },
|
|
|
+ selectItem(){
|
|
|
+ this.isShowFllowNum = true
|
|
|
}
|
|
|
}
|
|
|
};
|