e2d96b10 by simon

默认提交

1 parent e36d71bf
......@@ -19,7 +19,12 @@ export default {
components: {},
methods: {
onFavoriteHandler() {
this.$router.push({
path: "/shop/detail",
query: {
c: "c870bafe904b483eaf1e8f91da9fe5a2",
}
})
},
onContactUsHandler() {
......
......@@ -10,7 +10,7 @@ export default {
data() {
return {
key: 'value',
contactUsVisible: true,
contactUsVisible: false,
store: {},
storeCollect: 0,
page: 1,
......
# chmod u+x sync.sh
cp -R dist/* /Users/simonfung/simonfungc/work/workspace/git/vuejs/baohui-jewelry
cd /Users/simonfung/simonfungc/work/workspace/git/vuejs/baohui-jewelry
read -p "请输入commit提交的描述: " msg
if [[ $msg == "" ]]; then
msg="默认提交"
fi
git add -A
git commit -m $msg
git push
git status