askbot-dragon 0.7.34 → 0.7.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -105,7 +105,7 @@ export default {
|
|
|
105
105
|
},
|
|
106
106
|
computed: {
|
|
107
107
|
dataDetails() {
|
|
108
|
-
let dataDetails = this.data;
|
|
108
|
+
let dataDetails = this.data.assets;
|
|
109
109
|
let reg = /<\/?.+?\/?>/g;
|
|
110
110
|
dataDetails.description = this.data.description
|
|
111
111
|
? this.data.description.replace(reg, "")
|
|
@@ -116,7 +116,6 @@ export default {
|
|
|
116
116
|
methods: {
|
|
117
117
|
rotateClick() {
|
|
118
118
|
this.rotateFlag = !this.rotateFlag;
|
|
119
|
-
console.log(this.rotateFlag);
|
|
120
119
|
},
|
|
121
120
|
},
|
|
122
121
|
};
|
|
@@ -125,8 +124,9 @@ export default {
|
|
|
125
124
|
<style lang="less" scoped>
|
|
126
125
|
@import url("../assets/less/iconfont.css");
|
|
127
126
|
.asset {
|
|
127
|
+
width: 100%;
|
|
128
128
|
box-sizing: border-box;
|
|
129
|
-
padding:
|
|
129
|
+
padding: 8px 15px;
|
|
130
130
|
}
|
|
131
131
|
.asset-details {
|
|
132
132
|
width: 100%;
|