|
@@ -5,47 +5,47 @@
|
|
|
align="left"
|
|
|
top="12vh"
|
|
|
width="1040px"
|
|
|
- @close="closeModel"
|
|
|
:close-on-click-modal="false"
|
|
|
:visible.sync="showModelThis"
|
|
|
+ @close="closeModel"
|
|
|
>
|
|
|
- <el-card>
|
|
|
+ <el-card>
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="24">
|
|
|
<div
|
|
|
v-if="
|
|
|
left &&
|
|
|
- left.header &&
|
|
|
- left.header.length > 0 &&
|
|
|
- right &&
|
|
|
- right.header &&
|
|
|
- right.header.length > 0
|
|
|
+ left.header &&
|
|
|
+ left.header.length > 0 &&
|
|
|
+ right &&
|
|
|
+ right.header &&
|
|
|
+ right.header.length > 0
|
|
|
"
|
|
|
>
|
|
|
<div class="list-table clearfix">
|
|
|
<div class="left" :style="{ width: lang }">
|
|
|
<div class="header">
|
|
|
<div
|
|
|
- class="header-item"
|
|
|
v-for="(lhead, lhi) in left.header"
|
|
|
:key="'lhead' + lhi"
|
|
|
+ class="header-item"
|
|
|
>
|
|
|
{{ lhead.spec_name }}
|
|
|
</div>
|
|
|
</div>
|
|
|
<div
|
|
|
- class="header-body"
|
|
|
v-if="left.spec && left.spec.length > 0"
|
|
|
+ class="header-body"
|
|
|
>
|
|
|
<div
|
|
|
- class="header-body-row"
|
|
|
v-for="(lhr, lhri) in left.spec"
|
|
|
:key="'lheadrow' + lhri"
|
|
|
+ class="header-body-row"
|
|
|
>
|
|
|
<div
|
|
|
- class="heder-body-col"
|
|
|
v-for="(lhc, lhci) in lhr"
|
|
|
:key="'lheadcol' + lhci"
|
|
|
+ class="heder-body-col"
|
|
|
>
|
|
|
{{ lhc.spec_value }}
|
|
|
</div>
|
|
@@ -55,9 +55,9 @@
|
|
|
<div class="right" :style="{ paddingLeft: lang }">
|
|
|
<div class="header">
|
|
|
<div
|
|
|
- class="header-col clearfix"
|
|
|
v-for="(lhr, lhri) in right.header"
|
|
|
:key="'lheadr' + lhri"
|
|
|
+ class="header-col clearfix"
|
|
|
>
|
|
|
<div class="header-col-jieti clearfix">
|
|
|
<div class="header-col-jieti-title tc clearfix">
|
|
@@ -71,18 +71,18 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div
|
|
|
- class="right-body"
|
|
|
v-if="right.spec && right.spec.length > 0"
|
|
|
+ class="right-body"
|
|
|
>
|
|
|
<div
|
|
|
- class="right-body-col"
|
|
|
v-for="(lbr, lbri) in right.spec"
|
|
|
:key="'lbodyr' + lbri"
|
|
|
+ class="right-body-col"
|
|
|
>
|
|
|
<div
|
|
|
- class="right-body-col-item clearfix"
|
|
|
v-for="(lbritem, lbritemi) in lbr.limit"
|
|
|
:key="'lbritem' + lbritemi"
|
|
|
+ class="right-body-col-item clearfix"
|
|
|
>
|
|
|
<div class="right-body-col-item-div fl tc">
|
|
|
{{ lbritem.begin_num }}
|
|
@@ -104,40 +104,40 @@
|
|
|
</el-card>
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
- <script>
|
|
|
+<script>
|
|
|
export default {
|
|
|
- name: "active",
|
|
|
- props: ["showModel", "left", "right", "lang"],
|
|
|
+ name: 'Active',
|
|
|
+ props: ['showModel', 'left', 'right', 'lang'],
|
|
|
data() {
|
|
|
return {
|
|
|
loading: true,
|
|
|
- title: "商品阶梯价格",
|
|
|
- showModelThis: this.showModel,
|
|
|
- };
|
|
|
- },
|
|
|
- methods: {
|
|
|
- closeModel(e) {
|
|
|
- console.log(e);
|
|
|
- this.showModelThis = false;
|
|
|
- },
|
|
|
- async initForm() {
|
|
|
- this.loading = false;
|
|
|
- },
|
|
|
+ title: '商品阶梯价格',
|
|
|
+ showModelThis: this.showModel
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- showModel: function (val) {
|
|
|
- this.showModelThis = val;
|
|
|
+ showModel: function(val) {
|
|
|
+ this.showModelThis = val
|
|
|
if (val) {
|
|
|
- this.initForm();
|
|
|
+ this.initForm()
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
|
if (!val) {
|
|
|
- this.$emit("cancel");
|
|
|
+ this.$emit('cancel')
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
-};
|
|
|
+ methods: {
|
|
|
+ closeModel(e) {
|
|
|
+ console.log(e)
|
|
|
+ this.showModelThis = false
|
|
|
+ },
|
|
|
+ async initForm() {
|
|
|
+ this.loading = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
@@ -255,4 +255,4 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
-
|
|
|
+
|