|
|
@@ -40,14 +40,72 @@
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="抖音小程序" name="dy" v-loading="isLoading">
|
|
|
<el-form :model="sys" :rules="rules2" ref="form" label-position="top" @keyup.enter="saveForm" v-if="activeName=='dy'">
|
|
|
- <el-form-item label="应用ID(AppId)" prop="appid">
|
|
|
- <el-input v-model="sys.appid" clearable placeholder="请输入AppId"></el-input>
|
|
|
- <div class="el-form-item-msg">通过抖音小程序后台获取</div>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="应用密钥(AppSecret)" prop="secret">
|
|
|
- <el-input v-model="sys.secret" clearable placeholder="请输入AppSecret"></el-input>
|
|
|
- <div class="el-form-item-msg">通过抖音小程序后台获取</div>
|
|
|
- </el-form-item>
|
|
|
+ <el-row :gutter="15">
|
|
|
+ <el-col :span="this.$store.state.global.ismobile?24:24">
|
|
|
+ <el-form-item label="应用ID(AppId)" prop="appid">
|
|
|
+ <el-input v-model="sys.appid" clearable placeholder="请输入AppId"></el-input>
|
|
|
+ <div class="el-form-item-msg">通过抖音小程序后台获取</div>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="this.$store.state.global.ismobile?24:24">
|
|
|
+ <el-form-item label="应用密钥(AppSecret)" prop="secret">
|
|
|
+ <el-input v-model="sys.secret" clearable placeholder="请输入AppSecret"></el-input>
|
|
|
+ <div class="el-form-item-msg">通过抖音小程序后台获取</div>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="this.$store.state.global.ismobile?24:12">
|
|
|
+ <el-form-item label="自动呼叫快递时间-开始" prop="express_start">
|
|
|
+ <el-time-select
|
|
|
+ v-model="sys.express_start"
|
|
|
+ :style="{ width: '100%' }"
|
|
|
+ start="00:30"
|
|
|
+ step="00:15"
|
|
|
+ end="23:30"
|
|
|
+ placeholder="自动呼叫快递时间"
|
|
|
+ />
|
|
|
+ <div class="el-form-item-msg">未到该时间不允许自动或手动呼叫快递</div>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="this.$store.state.global.ismobile?24:12">
|
|
|
+ <el-form-item label="自动呼叫快递时间-结束" prop="express_end">
|
|
|
+ <el-time-select
|
|
|
+ v-model="sys.express_end"
|
|
|
+ :style="{ width: '100%' }"
|
|
|
+ start="00:30"
|
|
|
+ step="00:15"
|
|
|
+ end="23:30"
|
|
|
+ placeholder="自动呼叫快递时间"
|
|
|
+ />
|
|
|
+ <div class="el-form-item-msg">超过该时间不允许自动或手动呼叫快递</div>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="this.$store.state.global.ismobile?24:12">
|
|
|
+ <el-form-item label="核销时间-开始" prop="end_start">
|
|
|
+ <el-time-select
|
|
|
+ v-model="sys.end_start"
|
|
|
+ :style="{ width: '100%' }"
|
|
|
+ start="00:30"
|
|
|
+ step="00:15"
|
|
|
+ end="23:30"
|
|
|
+ placeholder="核销时间"
|
|
|
+ />
|
|
|
+ <div class="el-form-item-msg">未到该时间不允许自动或手动核销订单</div>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="this.$store.state.global.ismobile?24:12">
|
|
|
+ <el-form-item label="核销时间-结束" prop="end_end">
|
|
|
+ <el-time-select
|
|
|
+ v-model="sys.end_end"
|
|
|
+ :style="{ width: '100%' }"
|
|
|
+ start="00:30"
|
|
|
+ step="00:15"
|
|
|
+ end="23:30"
|
|
|
+ placeholder="核销时间"
|
|
|
+ />
|
|
|
+ <div class="el-form-item-msg">超过该时间不允许自动或手动核销订单</div>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="短信设置(非代理)" name="sms" v-loading="isLoading">
|