|
@@ -126,6 +126,8 @@ export default {
|
|
|
this.params.buyerName = buyerName;
|
|
|
this.params.puDept = puDept;
|
|
|
this.params.puDeptName = puDeptName;
|
|
|
+ this.params["currency"] = '1002Z0100000000001K1';
|
|
|
+ this.params["currencyName"] = '人民币';
|
|
|
this.visible = await this.fetchCode();
|
|
|
},
|
|
|
//
|
|
@@ -196,8 +198,29 @@ export default {
|
|
|
:visible.sync="visible"
|
|
|
append-to-body
|
|
|
destroy-on-close
|
|
|
+ :show-close="false"
|
|
|
@close="hide"
|
|
|
>
|
|
|
+ <div slot="title"
|
|
|
+ style="
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ ">
|
|
|
+ <h3>{{title}}</h3>
|
|
|
+ <div style="text-align: right">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ :size="$attrs.size"
|
|
|
+ :loading="loading"
|
|
|
+ @click="useSubmit('superForm')"
|
|
|
+ >确 认</el-button>
|
|
|
+ <el-button :size="$attrs.size" :loading="loading" @click="hide"
|
|
|
+ >取 消</el-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
<el-super-form
|
|
|
v-model="params"
|
|
|
:dict="dict"
|
|
@@ -258,18 +281,7 @@ export default {
|
|
|
</el-super-table>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
- <div style="padding: 20px; text-align: right">
|
|
|
- <el-button :size="$attrs.size" :loading="loading" @click="hide"
|
|
|
- >取 消</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- :size="$attrs.size"
|
|
|
- :loading="loading"
|
|
|
- @click="useSubmit('superForm')"
|
|
|
- >确 认</el-button
|
|
|
- >
|
|
|
- </div>
|
|
|
+
|
|
|
</el-drawer>
|
|
|
</el-button>
|
|
|
</template>
|