diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..b23d8bd --- /dev/null +++ b/package-lock.json @@ -0,0 +1,11 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "uview-ui": { + "version": "2.0.35", + "resolved": "https://registry.npmmirror.com/uview-ui/-/uview-ui-2.0.35.tgz", + "integrity": "sha512-OfMttN3XkHvQosXfd8bjz8ASTvypPoGzBWmQZBJ871bYMCA7t2bDFPlzjbxUj/5ykAjKnZ8zMUapSwSisVt99g==" + } + } +} diff --git a/packageMy/browseHistory/browseHistory.vue b/packageMy/browseHistory/browseHistory.vue index 004a1ad..7cb58e7 100644 --- a/packageMy/browseHistory/browseHistory.vue +++ b/packageMy/browseHistory/browseHistory.vue @@ -12,7 +12,7 @@ {{item.img_tag}} - + {{item.title}} @@ -30,10 +30,13 @@ - + + + @@ -42,6 +45,8 @@ export default { data() { return { + showM: false, + content: '您确定移除吗?', type: '', productList: [{ src: '/static/products/zhanwei_dg.png', @@ -82,12 +87,57 @@ this.type = options.id }, methods: { + //移除按钮 + showModal() { + this.showM = true + }, + confirm() { + }, + cancel() { + this.showM = false + }, + close() { + this.showM = false + } } }