|
@@ -156,7 +156,10 @@
|
|
|
type="text"
|
|
|
>下载协议</el-button
|
|
|
>
|
|
|
- <el-button @click="setHfMerchant(scope.row)" type="text"
|
|
|
+ <el-button
|
|
|
+ @click="setHfMerchant(scope.row)"
|
|
|
+ type="text"
|
|
|
+ v-if="$helpers.permission('hfMerchantConfig/queryByTenantId')"
|
|
|
>汇付账号设置</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -182,13 +185,13 @@
|
|
|
:protocolVersions="protocolVersions"
|
|
|
/>
|
|
|
</el-dialog>
|
|
|
- <hfPayCount ref='hfPayCount'/>
|
|
|
+ <hfPayCount ref="hfPayCount" />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
import pagination from "@/components/Pagination/index";
|
|
|
import QrCode from "@/components/QrCode/index";
|
|
|
-import hfPayCount from "./components/hfPayCount"
|
|
|
+import hfPayCount from "./components/hfPayCount";
|
|
|
import protocolModel from "@/views/studentManager/modals/protocolModel";
|
|
|
import {
|
|
|
tenantInfoQueryPage,
|
|
@@ -205,7 +208,7 @@ const initSearch = {
|
|
|
createdName: null,
|
|
|
};
|
|
|
export default {
|
|
|
- components: { pagination, QrCode, protocolModel,hfPayCount },
|
|
|
+ components: { pagination, QrCode, protocolModel, hfPayCount },
|
|
|
data() {
|
|
|
return {
|
|
|
tableList: [],
|
|
@@ -318,7 +321,7 @@ export default {
|
|
|
// },
|
|
|
setHfMerchant(row) {
|
|
|
console.log("setHfMerchant", row);
|
|
|
- this.$refs.hfPayCount.init(row)
|
|
|
+ this.$refs.hfPayCount.init(row);
|
|
|
},
|
|
|
},
|
|
|
};
|