index.php 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  1. <?php
  2. /**
  3. * @link:http://www.goodmall.com/
  4. * @copyright: Copyright (c) 2020
  5. * 名片
  6. * Author: james
  7. * Date: 2020-07-10
  8. * Time: 15:48
  9. */
  10. use common\helpers\ComponentHelper;
  11. ComponentHelper::loadComponentView('com-district');
  12. ComponentHelper::loadComponentView('com-rich-text');
  13. ?>
  14. <div id="app" v-cloak>
  15. <el-card shadow="never" style="border:0;min-width: 1200px;" body-style="background-color: #f3f3f3;padding: 10px 0 0;">
  16. <div slot="header">
  17. <span>基础设置</span>
  18. </div>
  19. <div class="table-body">
  20. <el-form size="small" ref="form" label-width="160px" :model="form" :rules="rules">
  21. <el-tabs v-model="activeName" @tab-click="handleClick" type="card">
  22. <el-tab-pane label="基础设置" name="first">
  23. <el-form-item label="启用" prop="is_enable">
  24. <el-switch :active-value="1" :inactive-value="0" v-model="form.is_enable"></el-switch>
  25. <br/>
  26. <div class="tips-text" style="line-height: 24px;">
  27. 开启则会员购买可选择自提
  28. </div>
  29. </el-form-item>
  30. <el-form-item label="自提免运费" prop="is_enable">
  31. <el-switch :active-value="1" :inactive-value="0" v-model="form.is_force_free_shipping"></el-switch>
  32. <br/>
  33. <div class="tips-text" style="line-height: 24px;">
  34. 开启后用户上自提点自提货物则不需要支付运费
  35. </div>
  36. </el-form-item>
  37. <el-form-item label="定位有效范围" prop="position_range">
  38. <el-input style="width: 260px;" v-model="form.position_range" placeholder="请输入定位有效范围">
  39. <template #prepend>小于</template>
  40. <template #append>公里内</template>
  41. </el-input>
  42. <span style="color: #999">显示距离我步行,超出设置范围则不显示</span>
  43. <br/>
  44. <div class="tips-text" style="line-height: 24px;">
  45. 自提点根据定位来显示,超过1公里的自提点不显示
  46. </div>
  47. </el-form-item>
  48. <el-form-item label="可取货时间" prop="can_receive_day">
  49. <el-input style="width: 200px" v-model="form.can_receive_day" placeholder="请输入可取货时间">
  50. <template #append>天</template>
  51. </el-input>
  52. <div style="color: #999">如,用户下单后需到1天以后才可自提,因下单后平台需发货到自提点,自提点收到货后用户才能自提商品。</div>
  53. </el-form-item>
  54. <el-form-item label="自提时间段" prop="pick_up_time_range_type">
  55. <el-radio-group v-model="form.pick_up_time_range_type">
  56. <el-radio :label="0">全天</el-radio>
  57. <el-radio :label="1">自定义</el-radio>
  58. </el-radio-group>
  59. <br/>
  60. <div class="tips-text" style="line-height: 24px;">
  61. 自提点开门时间,哪个时间段可去自提点提货
  62. </div>
  63. <div v-if="form.pick_up_time_range_type == 1">
  64. <el-form-item label="" prop="pick_up_time_range_custom">
  65. <el-checkbox-group v-model="form.pick_up_time_range_custom">
  66. <el-checkbox :label="0">周日</el-checkbox>
  67. <el-checkbox :label="1">周一</el-checkbox>
  68. <el-checkbox :label="2">周二</el-checkbox>
  69. <el-checkbox :label="3">周三</el-checkbox>
  70. <el-checkbox :label="4">周四</el-checkbox>
  71. <el-checkbox :label="5">周五</el-checkbox>
  72. <el-checkbox :label="6">周六</el-checkbox>
  73. </el-checkbox-group>
  74. </el-form-item>
  75. <el-form-item label="" prop="pick_up_time_range_custom_at">
  76. <el-time-picker
  77. value-format="yyyy-MM-dd HH:mm"
  78. is-range
  79. v-model="form.pick_up_time_range_custom_at"
  80. range-separator="至"
  81. start-placeholder="开始时间"
  82. end-placeholder="结束时间"
  83. :picker-options="{format: 'HH:mm'}"
  84. placeholder="选择时间范围">
  85. </el-time-picker>
  86. </el-form-item>
  87. </div>
  88. </el-form-item>
  89. <el-form-item label="团长招募图" prop="apply_pic">
  90. <com-attachment v-if="!form.apply_pic" :multiple="false" :max="1" type="images" @selected="applyPic">
  91. <div class="card-upload">
  92. <i class="el-icon-plus"></i>
  93. </div>
  94. </com-attachment>
  95. <div class="card-coverimg" v-else>
  96. <el-image style="width: 80px; height: 80px" :src="form.apply_pic"></el-image>
  97. <el-button @click="delPic()" class="icon-close" type="primary" size="mini" icon="el-icon-close" circle></el-button>
  98. </div>
  99. <p class="tips-text">作用于社区团长招聘页面展示</p>
  100. </el-form-item>
  101. <el-form-item label="启用核销" prop="is_enable_write_off">
  102. <el-switch :active-value="1" :inactive-value="0" v-model="form.is_enable_write_off"></el-switch>
  103. <br/>
  104. <div class="tips-text" style="line-height: 24px;">
  105. 若开启核销,则自提订单变为核销码核销,店主聚合页有扫码核销按钮;送货上门订单变为只有用户端的订单有确认收货按钮
  106. </div>
  107. </el-form-item>
  108. <el-form-item label="是否平台配货" prop="is_platform_distribution">
  109. <el-switch :active-value="1" :inactive-value="0" v-model="form.is_platform_distribution"></el-switch>
  110. <br/>
  111. <div class="tips-text" style="line-height: 24px;">
  112. 开启后用户下单成功需平台点击发货才会生成核销码
  113. </div>
  114. </el-form-item>
  115. <h3>团长奖励设置</h3>
  116. <el-form-item label="是否启用自提奖励">
  117. <el-switch :active-value="1" :inactive-value="0" v-model="form.is_enable_reward"></el-switch>
  118. <br/>
  119. <div class="tips-text" style="line-height: 24px;">
  120. 设置自提点奖励,开启后团长(自提点管理员)有自提订单就可以获得自提奖励
  121. </div>
  122. </el-form-item>
  123. <el-form-item label="结算方式" prop="settlement_type">
  124. <el-radio-group v-model="form.settlement_type">
  125. <el-radio :label="1">订单支付后</el-radio>
  126. <el-radio :label="7">订单取货后</el-radio>
  127. </el-radio-group>
  128. <br/>
  129. <div class="tips-text" style="line-height: 24px;">
  130. 设置自提奖励佣金的结算方式
  131. </div>
  132. </el-form-item>
  133. <el-form-item label="计算方式" prop="calculate_type">
  134. <el-radio-group v-model="form.calculate_type">
  135. <el-radio :label="0">实际支付金额</el-radio>
  136. <el-radio :label="1">商品售价</el-radio>
  137. <el-radio :label="2">商品利润</el-radio>
  138. </el-radio-group>
  139. <br/>
  140. <div class="tips-text" style="line-height: 24px;">
  141. 如团长奖励设置为百分比这按这里的计算方式进行计算
  142. </div>
  143. </el-form-item>
  144. <el-form-item label="结算方式" prop="head_commission_type">
  145. <el-radio-group v-model="form.head_commission_type">
  146. <el-radio :label="0">固定金额</el-radio>
  147. <el-radio :label="1">百分比</el-radio>
  148. </el-radio-group>
  149. <br/>
  150. <div class="tips-text" style="line-height: 24px;">
  151. 自提奖励设置
  152. </div>
  153. <el-form-item label="" prop="commission">
  154. <el-input style="width: 200px" v-model="form.commission">
  155. <template #append>
  156. {{form.head_commission_type == 0 ? '元' : '%'}}
  157. </template>
  158. </el-input>
  159. </el-form-item>
  160. </el-form-item>
  161. <el-form-item label="包含地区">
  162. <el-button @click="onChooseArea" size="small" type="primary" style="padding: 9px 15px !important;">+新增规则</el-button>
  163. <div class="tips-text" style="line-height: 24px;">
  164. 可自提地区,这里的设置是针对所有商品,商品可进行单个商品独立设置
  165. </div>
  166. </el-form-item>
  167. <h3>入驻协议</h3>
  168. <el-form-item label="入驻协议标题" prop="protocol_title">
  169. <el-input style="width: 200px" v-model="form.protocol_title" placeholder="请输入入驻协议标题"></el-input>
  170. </el-form-item>
  171. <el-form-item label="入驻协议内容" prop="protocol_content">
  172. <com-rich-text style="width: 750px" v-model="form.protocol_content"></com-rich-text>
  173. </el-form-item>
  174. </el-tab-pane>
  175. <el-tab-pane label="短信配置" name="sms">
  176. <el-table size="mini" border :data="events" style="width: 300px">
  177. <el-table-column prop="title" label="短信模板名称" align="center"></el-table-column>
  178. <el-table-column label="操作" width="100" align="center">
  179. <template slot-scope="scope">
  180. <el-button @click="onSetSmsConfig(scope.row)"><i class="el-icon-edit-outline"></i></el-button>
  181. </template>
  182. </el-table-column>
  183. </el-table>
  184. </el-tab-pane>
  185. </el-tabs>
  186. <el-form-item style="margin-top: 20px">
  187. <el-button size="small" type="primary" style="padding: 9px 15px !important;" @click="onSubmit">保存配置</el-button>
  188. </el-form-item>
  189. </el-form>
  190. </div>
  191. <!-- 这个是复制用的容器,已隐藏 -->
  192. <textarea id="inputs" style="opacity: 0;width: 0;height: 0;">这是幕后黑手</textarea>
  193. <el-dialog
  194. title="地区选择"
  195. :visible.sync="districtDialogShow"
  196. width="30%">
  197. <div>
  198. <com-district @selected="selectDistrict" :level="3"
  199. :edit="area"></com-district>
  200. </div>
  201. <span slot="footer" class="dialog-footer">
  202. <el-button @click="districtDialogShow = false">取 消</el-button>
  203. <el-button type="primary" @click="districtDialogShow = false">确 定</el-button>
  204. </span>
  205. </el-dialog>
  206. <el-dialog
  207. title="短信模板设置"
  208. :visible.sync="smsDialogShow"
  209. width="30%">
  210. <el-form size="small" ref="smsForm" label-width="160px" :model="smsForm">
  211. <el-form-item label="模板CODE" prop="id" :rules="[{required: true, message: '模板CODE不能为空'}]">
  212. <el-input v-model="smsForm.id" placeholder="请输入模板CODE"></el-input>
  213. </el-form-item>
  214. <el-form-item v-if="smsCurrent.type == 'buyer_1'" label="基于用户选择时间发送" prop="send_day">
  215. <el-input v-model="smsForm.send_day" placeholder="请输入基于用户选择时间发送">
  216. <template #append>天</template>
  217. </el-input>
  218. <div style="color: red; line-height: 16px; margin-top: 5px;">如果输入0那么当前通知将会直接触发,如果输入3那么当前通知将会延期3天后触发</div>
  219. </el-form-item>
  220. <el-form-item label="模板内容" prop="content" :rules="[{required: true, message: '模板内容不能为空'}]">
  221. <el-input type="textarea" rows="5" v-model="smsForm.content" placeholder="请输入模板内容" @input="onInputContent"></el-input>
  222. </el-form-item>
  223. <el-table v-if="smsForm.vars.length > 0" size="mini" :data="smsForm.vars" border>
  224. <el-table-column prop="name" label="变量名" align="center"></el-table-column>
  225. <el-table-column label="替换内容" align="center">
  226. <template slot-scope="scope">
  227. <el-select size="mini" v-model="scope.row.key" placeholder="请选择需要替换的内容">
  228. <el-option v-for="(item, key) in smsKeys" :key="key" :label="item" :value="key"></el-option>
  229. </el-select>
  230. </template>
  231. </el-table-column>
  232. </el-table>
  233. </el-form>
  234. <span slot="footer" class="dialog-footer">
  235. <el-button @click="onSmsDialogHide">取 消</el-button>
  236. <el-button type="primary" @click="onSubmitSmsConfig">确 定</el-button>
  237. </span>
  238. </el-dialog>
  239. </el-card>
  240. </div>
  241. <script>
  242. const validateNumber = (rule, value, callback) => {
  243. if (!(/^[+]{0,1}(\d+)$|^[+]{0,1}(\d+\.\d+)$/).test(value)) {
  244. callback(new Error('请输入数字值'))
  245. } else {
  246. callback()
  247. }
  248. };
  249. const app = new Vue({
  250. el: '#app',
  251. data: {
  252. loading: false,
  253. activeName: 'first',
  254. districts: [],
  255. districtDialogShow: false,
  256. form: {
  257. is_enable: 1,
  258. settlement_type: 1,
  259. calculate_type: 0,
  260. head_commission_type: 0,
  261. commission: '',
  262. pick_up_time_range_custom: [],
  263. pick_up_time_range_custom_at: [
  264. new Date(), new Date()
  265. ],
  266. pick_up_time_range_type: 0,
  267. can_receive_day: 1,
  268. position_range: 1,
  269. area: [],
  270. not_area: [], // 存储区域中未选但是需要存储的区域ID
  271. all_area: [], // 存储区域中未选但是需要存储的区域ID
  272. apply_pic: '',
  273. protocol_title: '',
  274. protocol_content: '',
  275. is_enable_reward: 0,
  276. sms: {},
  277. is_enable_write_off: 0,
  278. is_platform_distribution: 0,
  279. is_force_free_shipping: 0,
  280. is_select_area: 0,
  281. },
  282. events: [
  283. {
  284. title: '提醒送货上门订单收货通知',
  285. type: 'buyer_1',
  286. tips: ''
  287. },
  288. {
  289. title: '用户下单通知',
  290. type: 'seller_1',
  291. tips: ''
  292. }
  293. ],
  294. smsForm: {
  295. id: '',
  296. content: '',
  297. key: '',
  298. name: '',
  299. vars: [],
  300. send_day: 0
  301. },
  302. area: [],
  303. rules: {
  304. position_range: [
  305. { required: true, message: '定位有效范围不能为空' },
  306. { validator: validateNumber, trigger: 'blur' },
  307. ],
  308. can_receive_day: [
  309. { required: true, message: '可取货时间不能为空' },
  310. { validator: validateNumber, trigger: 'blur' },
  311. ],
  312. commission: [
  313. { required: true, message: '佣金不能为空' },
  314. { validator: validateNumber, trigger: 'blur' },
  315. ],
  316. apply_pic: [
  317. { required: true, message: '招募图片不能为空' },
  318. ],
  319. pick_up_time_range_custom: [
  320. { type: 'array', required: true, message: '自定义时间段至少选择一项', trigger: 'change' }
  321. ],
  322. pick_up_time_range_custom_at: [
  323. { type: 'array', required: true, message: '自定义时间段不能为空', trigger: 'change' }
  324. ]
  325. },
  326. smsDialogShow: false,
  327. smsCurrentKey: null,
  328. smsCurrent: {
  329. title: '用户下单通知',
  330. type: 'seller_1',
  331. tips: ''
  332. },
  333. smsKeys: []
  334. },
  335. mounted() {
  336. // 获取列表首页数据
  337. this.getData()
  338. this.getSmsKeys()
  339. },
  340. methods: {
  341. getSmsKeys() {
  342. request({
  343. method: 'get',
  344. params: {
  345. r: 'community/default/sms-keys',
  346. },
  347. }).then(e => {
  348. if (e.data.code === 0) {
  349. this.smsKeys = e.data.data
  350. } else {
  351. this.$message.error(e.data.msg);
  352. }
  353. }).catch(e => {
  354. });
  355. },
  356. handleClick(tab, event) {
  357. },
  358. handleSelectionChange(val) {
  359. let self = this;
  360. self.choose_list = [];
  361. val.forEach(function (item) {
  362. self.choose_list.push(item.id);
  363. })
  364. },
  365. applyPic(e) { // 选择图片
  366. this.$set(this.form, 'apply_pic', e[0].url)
  367. },
  368. delPic() {
  369. this.form.apply_pic = ''
  370. },
  371. getData() {
  372. this.loading = true
  373. request({
  374. method: 'get',
  375. params: {
  376. r: 'community/default/index',
  377. },
  378. }).then(e => {
  379. this.loading = false;
  380. if (e.data.code === 0) {
  381. try {
  382. if (e.data.data.pick_up_time_range_custom_at && e.data.data.pick_up_time_range_custom_at.length === 0) {
  383. e.data.data.pick_up_time_range_custom_at = [
  384. new Date(), new Date()
  385. ]
  386. } else {
  387. if (e.data.data.pick_up_time_range_custom_at) {
  388. e.data.data.pick_up_time_range_custom_at = [
  389. new Date(e.data.data.pick_up_time_range_custom_at[0]), new Date(e.data.data.pick_up_time_range_custom_at[1])
  390. ]
  391. }
  392. }
  393. if (e.data.data.area.length > 0) {
  394. let ids = []
  395. for (let i = 0; i < e.data.data.area.length; i++) {
  396. ids.push({
  397. id: e.data.data.area[i]
  398. })
  399. }
  400. this.area = ids
  401. }
  402. this.all_area = e.data.data.all_area;
  403. if (e.data.data.sms && e.data.data.sms instanceof Array) {
  404. e.data.data.sms = {}
  405. }
  406. this.form = Object.assign(this.form, e.data.data)
  407. } catch (e) {
  408. console.error(e)
  409. }
  410. } else {
  411. this.$message.error(e.data.msg);
  412. }
  413. }).catch(e => {
  414. this.loading = false;
  415. });
  416. },
  417. onChooseArea() {
  418. this.districtDialogShow = true
  419. },
  420. selectDistrict(e, u, list) {
  421. list.forEach(rootNode => {
  422. this.getIndeterminateIds(rootNode, e);
  423. })
  424. this.area = e
  425. this.is_select_area = 1;
  426. },
  427. getIndeterminateIds(node, result) {
  428. // 判断当前id是否已在result中在则不执行
  429. if (result.some(item => item.id === node.id)) {
  430. return;
  431. }
  432. if (node.isIndeterminate === true) {
  433. this.form.not_area.push(node.id)
  434. result.push({
  435. id: node.id,
  436. name: node.name
  437. });
  438. }
  439. if (node.children && node.children.length > 0) {
  440. node.children.forEach((child) => {
  441. this.getIndeterminateIds(child, result);
  442. });
  443. }
  444. },
  445. onSubmit() {
  446. this.$refs['form'].validate((valid) => {
  447. if (valid) {
  448. this.loading = true
  449. this.form.area = [];
  450. if (this.area.length > 0) {
  451. for (let i = 0; i < this.area.length; i++) {
  452. this.form.area.push(this.area[i].id)
  453. }
  454. if(this.is_select_area != 1 && this.all_area){
  455. for (let i = 0; i < this.all_area.length; i++) {
  456. this.form.area.push(this.all_area[i])
  457. }
  458. this.form.not_area = this.all_area;
  459. }
  460. }
  461. request({
  462. method: 'post',
  463. params: {
  464. r: 'community/default/index',
  465. },
  466. data: {
  467. body: JSON.stringify(this.form)
  468. }
  469. }).then(e => {
  470. this.loading = false;
  471. if (e.data.code === 0) {
  472. this.$message.success(e.data.msg);
  473. } else {
  474. this.$message.error(e.data.msg);
  475. }
  476. }).catch(e => {
  477. this.loading = false;
  478. });
  479. } else {
  480. console.log(valid)
  481. }
  482. })
  483. },
  484. onSubmitSmsConfig() {
  485. this.$refs['smsForm'].validate((valid) => {
  486. if (valid) {
  487. this.form.sms[this.smsCurrentKey] = this.smsForm
  488. this.onSmsDialogHide()
  489. }
  490. })
  491. },
  492. onSetSmsConfig(item) {
  493. this.smsCurrentKey = item.type
  494. this.smsCurrent = item
  495. this.smsForm = Object.assign(this.smsForm, this.form.sms !== undefined && this.form.sms[this.smsCurrentKey] !== undefined ?
  496. this.form.sms[this.smsCurrentKey] : {})
  497. this.smsDialogShow = true
  498. },
  499. onInputContent(val) {
  500. let p = /(\$\{[0-9A-Za-z_]+\})/g
  501. let ms = val.match(p)
  502. if (ms && ms.length > 0) {
  503. let vars = []
  504. for (let msKey in ms) {
  505. vars.push({
  506. name: ms[msKey],
  507. key: ''
  508. })
  509. }
  510. this.$set(this.smsForm, 'vars', vars)
  511. }
  512. },
  513. onSmsDialogHide() {
  514. this.smsCurrentKey = null
  515. this.smsCurrent = {
  516. title: '用户下单通知',
  517. type: 'seller_1',
  518. tips: ''
  519. }
  520. this.smsForm = {
  521. id: '',
  522. content: '',
  523. key: '',
  524. name: '',
  525. vars: [],
  526. send_day: 0
  527. }
  528. this.smsDialogShow = false
  529. }
  530. }
  531. });
  532. </script>
  533. <style>
  534. .el-tabs__header {
  535. font-size: 16px;
  536. }
  537. .table-body {
  538. padding: 20px;
  539. background-color: #fff;
  540. }
  541. .table-body .el-button {
  542. padding: 0 !important;
  543. border: 0;
  544. margin: 0 5px;
  545. }
  546. .input-item {
  547. width: 250px;
  548. margin: 0 0 20px;
  549. display: inline-block;
  550. }
  551. .input-item .el-input__inner {
  552. border-right: 0;
  553. }
  554. .input-item .el-input__inner:hover {
  555. border: 1px solid #dcdfe6;
  556. border-right: 0;
  557. outline: 0;
  558. }
  559. .input-item .el-input__inner:focus {
  560. border: 1px solid #dcdfe6;
  561. border-right: 0;
  562. outline: 0;
  563. }
  564. .input-item .el-input-group__append {
  565. background-color: #fff;
  566. border-left: 0;
  567. width: 10%;
  568. padding: 0;
  569. }
  570. .input-item .el-input-group__append .el-button {
  571. padding: 0;
  572. }
  573. .input-item .el-input-group__append .el-button {
  574. margin: 0;
  575. }
  576. .batch {
  577. margin: 0 0 20px;
  578. display: inline-block;
  579. }
  580. .batch .el-button {
  581. padding: 9px 15px !important;
  582. }
  583. .item-box{
  584. margin-right: 20px;
  585. }
  586. .item-box .label{
  587. margin-right: 8px;
  588. }
  589. .item-box .symbol{
  590. margin: 0 6px;
  591. }
  592. .form-nickname{
  593. width: 180px;
  594. white-space:nowrap;
  595. overflow:hidden;
  596. text-overflow:ellipsis;
  597. }
  598. .index-video-url{
  599. width: 300px;
  600. }
  601. .index-video-url video{
  602. width: 100%;
  603. }
  604. .index-related-info{
  605. width: 500px;
  606. }
  607. .video-top{
  608. width: 100%;
  609. display: flex;
  610. align-items: flex-start;
  611. box-sizing: border-box;
  612. padding: 20px;
  613. /* opacity: .5; */
  614. background-color: #FFFFFF;
  615. }
  616. .video-top .top-right{
  617. line-height: 26px;
  618. }
  619. .video-top .top-right .top-title{
  620. font-size: 18px;
  621. white-space:nowrap;
  622. overflow:hidden;
  623. text-overflow:ellipsis;
  624. width: 360px;
  625. }
  626. .video-top .top-right .wrapper{
  627. display: flex;
  628. /* align-items: flex-start; */
  629. }
  630. .video-top .top-right .wrapper .to-copy{
  631. /* color: #03C5FF; */
  632. margin-left: 20px;
  633. }
  634. .video-top .top-right .detail-price{
  635. color: #BC0100;
  636. font-size: 18px;
  637. font-family: Microsoft YaHei;
  638. font-weight: bold;
  639. }
  640. /* .atooltip {
  641. background: #FFFFFF !important;
  642. border: none !important;
  643. } */
  644. .el-table th>.cell{
  645. color: #333;
  646. font-weight: bold;
  647. font-size: 14px;
  648. }
  649. .el-table__footer-wrapper, .el-table__header-wrapper{
  650. /*border-bottom: 1.4px solid #D6D6D6;*/
  651. }
  652. .price_col{
  653. color: #FF5D05;
  654. }
  655. </style>